Click here to Skip to main content
15,885,366 members
Home / Discussions / C#
   

C#

 
Questionhelp me in creating a table in javascript Pin
umaheshchandra20-Apr-06 0:10
umaheshchandra20-Apr-06 0:10 
AnswerRe: help me in creating a table in javascript Pin
Nick Parker20-Apr-06 3:26
protectorNick Parker20-Apr-06 3:26 
QuestionImporting specific Excel columns Pin
Fendefa20-Apr-06 0:01
Fendefa20-Apr-06 0:01 
AnswerRe: Importing specific Excel columns Pin
Ricardo Casquete20-Apr-06 0:52
Ricardo Casquete20-Apr-06 0:52 
QuestionHard question may be.))) Pin
papa198019-Apr-06 23:59
papa198019-Apr-06 23:59 
QuestionPage Caching Pin
Brendan Vogt19-Apr-06 23:59
Brendan Vogt19-Apr-06 23:59 
Questiondelete operation in datagrid Pin
rajaaa19-Apr-06 23:21
rajaaa19-Apr-06 23:21 
AnswerRe: delete operation in datagrid Pin
Mamphekgo20-Apr-06 3:19
Mamphekgo20-Apr-06 3:19 
hi rajaaa.please try this code is working perfect on my system.

try
{
DialogResult dr=MessageBox.Show("Are you sure you want to delete this row ? ", "Confirm deleting", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
if (dr ==DialogResult.Yes)
{
DataTable myTable =new DataTable("Transactions");
myTable=this.dataSet11.Tables["Transactions"];
myTable.Rows[dataGrid1.CurrentRowIndex].Delete();
sqlDataAdapter1.Update(myTable);
}
}
catch(Exception ex)
{
MessageBox.Show(ex.ToString());
}

}

jacob bahula
QuestionUsing an Object as a Parameter Pin
__makaveli__19-Apr-06 22:56
__makaveli__19-Apr-06 22:56 
AnswerRe: Using an Object as a Parameter Pin
Le centriste20-Apr-06 7:08
Le centriste20-Apr-06 7:08 
GeneralRe: Using an Object as a Parameter Pin
__makaveli__20-Apr-06 21:50
__makaveli__20-Apr-06 21:50 
Questionhow to implements the WEBTV Pin
ranandbe19-Apr-06 21:29
ranandbe19-Apr-06 21:29 
AnswerRe: how to implements the WEBTV Pin
LongRange.Shooter20-Apr-06 3:43
LongRange.Shooter20-Apr-06 3:43 
AnswerRe: Want to Record Messenger Conversation Pin
LongRange.Shooter20-Apr-06 3:44
LongRange.Shooter20-Apr-06 3:44 
QuestionHow to get process ID by instance ID? Pin
Old Gun19-Apr-06 21:00
Old Gun19-Apr-06 21:00 
QuestionSocket Pin
Shajeel19-Apr-06 20:20
Shajeel19-Apr-06 20:20 
AnswerRe: Socket Pin
Joshua Nussbaum20-Apr-06 14:13
Joshua Nussbaum20-Apr-06 14:13 
Questiona small doubt about dataconversion Pin
jith - iii19-Apr-06 19:46
jith - iii19-Apr-06 19:46 
AnswerRe: a small doubt about dataconversion Pin
Robert Rohde19-Apr-06 22:22
Robert Rohde19-Apr-06 22:22 
QuestionReset record number of a crystal report at the page break Pin
q2sampath19-Apr-06 18:28
q2sampath19-Apr-06 18:28 
AnswerRe: Reset record number of a crystal report at the page break Pin
Sk8tzz19-Apr-06 19:03
Sk8tzz19-Apr-06 19:03 
QuestionRe: Reset record number of a crystal report at the page break Pin
q2sampath20-Apr-06 1:15
q2sampath20-Apr-06 1:15 
Questionstupid question Pin
Tyrus18219-Apr-06 16:04
Tyrus18219-Apr-06 16:04 
AnswerRe: stupid question Pin
Luis Alonso Ramos19-Apr-06 17:09
Luis Alonso Ramos19-Apr-06 17:09 
Questiona Question regarding Image class and Graphics class Pin
Green Fuze19-Apr-06 13:28
Green Fuze19-Apr-06 13:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.