Click here to Skip to main content
15,890,123 members
Home / Discussions / C#
   

C#

 
GeneralRe: RSA File Encryption Pin
Burt Harris21-Jun-03 12:23
Burt Harris21-Jun-03 12:23 
General"out keyword" in COM interop Pin
slnarasimhan20-Jun-03 21:56
slnarasimhan20-Jun-03 21:56 
GeneralRe: "out keyword" in COM interop Pin
Burt Harris21-Jun-03 12:14
Burt Harris21-Jun-03 12:14 
GeneralRe: "out keyword" in COM interop Pin
slnarasimhan22-Jun-03 18:03
slnarasimhan22-Jun-03 18:03 
Generalmatrix algebra Pin
Anonymous20-Jun-03 14:17
Anonymous20-Jun-03 14:17 
GeneralRe: matrix algebra Pin
Jim Stewart20-Jun-03 15:36
Jim Stewart20-Jun-03 15:36 
GeneralControls question Pin
Mike Osbahr20-Jun-03 12:44
Mike Osbahr20-Jun-03 12:44 
GeneralRe: Controls question Pin
A.Wegierski22-Jun-03 22:15
A.Wegierski22-Jun-03 22:15 
GeneralVs.Net Add-in Pin
Tomas Petricek20-Jun-03 12:40
Tomas Petricek20-Jun-03 12:40 
GeneralRe: Vs.Net Add-in Pin
Tomas Petricek20-Jun-03 13:29
Tomas Petricek20-Jun-03 13:29 
Generalimagelist Pin
jphuphilly20-Jun-03 12:01
jphuphilly20-Jun-03 12:01 
QuestionCreating .resources files? Pin
monrobot1320-Jun-03 11:57
monrobot1320-Jun-03 11:57 
AnswerRe: Creating .resources files? Pin
James T. Johnson20-Jun-03 13:58
James T. Johnson20-Jun-03 13:58 
GeneralRe: Creating .resources files? Pin
monrobot1320-Jun-03 18:01
monrobot1320-Jun-03 18:01 
GeneralRe: Creating .resources files? Pin
James T. Johnson20-Jun-03 18:22
James T. Johnson20-Jun-03 18:22 
GeneralRe: Creating .resources files? Pin
monrobot1321-Jun-03 7:02
monrobot1321-Jun-03 7:02 
GeneralRe: Creating .resources files? Pin
monrobot133-Jul-03 11:12
monrobot133-Jul-03 11:12 
GeneralDataGrid CheckBox Pin
vladmihai20-Jun-03 10:56
vladmihai20-Jun-03 10:56 
GeneralRe: DataGrid CheckBox Pin
vladmihai20-Jun-03 10:59
vladmihai20-Jun-03 10:59 
GeneralRe: DataGrid CheckBox Pin
Dimitris Iliopoulos20-Jun-03 11:31
Dimitris Iliopoulos20-Jun-03 11:31 
if you have an oledbdataadapter to update the dataset is nothing you can do to do what you have said. if you want to do the update manually you can say

foreach(System.data.datarow a in mainset.table["tablename"].rows)
{
if (a["columnname"]==true) update.....
}

but i don't see why you want to do it that way if you allready have a dataadapter that works, if it is for the speed you can optimize the code i wrote that way. Since you want only the changes anyway you can do this:

foreach(System.data.datarow a in mainset.table["tablename"].Getchanges().rows)
{
if (a["columnname"]==true) update.....
}

tricky code!! isn't it? Poke tongue | ;-P


From Greece:
Dimitris Iliopoulos
dimilio@yahoo.com
GeneralRe: DataGrid CheckBox Pin
vladmihai20-Jun-03 11:58
vladmihai20-Jun-03 11:58 
Generalreal problem with scrollbars and user control Pin
Allen Anderson20-Jun-03 10:25
Allen Anderson20-Jun-03 10:25 
GeneralRe: real problem with scrollbars and user control Pin
J. Dunlap20-Jun-03 10:31
J. Dunlap20-Jun-03 10:31 
GeneralRe: real problem with scrollbars and user control Pin
Allen Anderson20-Jun-03 10:34
Allen Anderson20-Jun-03 10:34 
Generaldatagrid Pin
jphuphilly20-Jun-03 10:23
jphuphilly20-Jun-03 10:23 

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.