Click here to Skip to main content
15,888,521 members
Home / Discussions / C#
   

C#

 
GeneralRe: mark rows as deleted or updated befor loading them in a dataset Pin
hadad14-Apr-10 21:56
hadad14-Apr-10 21:56 
GeneralRe: mark rows as deleted or updated befor loading them in a dataset Pin
Not Active14-Apr-10 22:11
mentorNot Active14-Apr-10 22:11 
GeneralRe: mark rows as deleted or updated befor loading them in a dataset Pin
hadad14-Apr-10 22:43
hadad14-Apr-10 22:43 
GeneralRe: mark rows as deleted or updated befor loading them in a dataset Pin
Not Active15-Apr-10 1:51
mentorNot Active15-Apr-10 1:51 
QuestionSortedList Pin
Morgs Morgan14-Apr-10 5:31
Morgs Morgan14-Apr-10 5:31 
AnswerRe: SortedList Pin
DaveyM6914-Apr-10 5:37
professionalDaveyM6914-Apr-10 5:37 
GeneralRe: SortedList Pin
Morgs Morgan14-Apr-10 6:01
Morgs Morgan14-Apr-10 6:01 
AnswerRe: SortedList Pin
OriginalGriff14-Apr-10 5:40
mveOriginalGriff14-Apr-10 5:40 
Use the Count property:
SortedList<int, string> sl = new SortedList<int, string>();
sl.Add(4, "four");
sl.Add(3, "three");
MessageBox.Show(sl.Count.ToString());
Gives "2".
SortedList<int, string> sl = new SortedList<int, string>();
//sl.Add(4, "four");
//sl.Add(3, "three");
MessageBox.Show(sl.Count.ToString());
Gives "0".
You should never use standby on an elephant. It always crashes when you lift the ears. - Mark Wallace

C/C++ (I dont see a huge difference between them, and the 'benefits' of C++ are questionable, who needs inheritance when you have copy and paste) - fat_boy

AnswerRe: SortedList Pin
Alan N14-Apr-10 5:42
Alan N14-Apr-10 5:42 
AnswerRe: SortedList Pin
PIEBALDconsult14-Apr-10 5:44
mvePIEBALDconsult14-Apr-10 5:44 
AnswerRe: SortedList Pin
hadad14-Apr-10 5:52
hadad14-Apr-10 5:52 
QuestionCsharp .Net image processing error Pin
djsproject14-Apr-10 5:24
djsproject14-Apr-10 5:24 
AnswerRe: Csharp .Net image processing error Pin
OriginalGriff14-Apr-10 5:35
mveOriginalGriff14-Apr-10 5:35 
GeneralRe: Csharp .Net image processing error Pin
djsproject14-Apr-10 6:08
djsproject14-Apr-10 6:08 
GeneralRe: Csharp .Net image processing error Pin
OriginalGriff14-Apr-10 6:14
mveOriginalGriff14-Apr-10 6:14 
GeneralRe: Csharp .Net image processing error Pin
Luc Pattyn14-Apr-10 6:37
sitebuilderLuc Pattyn14-Apr-10 6:37 
GeneralRe: Csharp .Net image processing error Pin
OriginalGriff14-Apr-10 8:12
mveOriginalGriff14-Apr-10 8:12 
QuestionProgramatically Connect to SQL Server instance After the VPN Connection is Established [modified] Pin
Vimalsoft(Pty) Ltd14-Apr-10 4:17
professionalVimalsoft(Pty) Ltd14-Apr-10 4:17 
AnswerRe: Programatically Connect to SQL Server instance After the VPN Connection is Established Pin
Eddy Vluggen14-Apr-10 5:08
professionalEddy Vluggen14-Apr-10 5:08 
GeneralRe: Programatically Connect to SQL Server instance After the VPN Connection is Established Pin
Vimalsoft(Pty) Ltd14-Apr-10 21:43
professionalVimalsoft(Pty) Ltd14-Apr-10 21:43 
GeneralRe: Programatically Connect to SQL Server instance After the VPN Connection is Established Pin
Eddy Vluggen14-Apr-10 22:48
professionalEddy Vluggen14-Apr-10 22:48 
GeneralRe: Programatically Connect to SQL Server instance After the VPN Connection is Established Pin
Vimalsoft(Pty) Ltd15-Apr-10 21:51
professionalVimalsoft(Pty) Ltd15-Apr-10 21:51 
GeneralRe: Programatically Connect to SQL Server instance After the VPN Connection is Established Pin
Eddy Vluggen16-Apr-10 2:34
professionalEddy Vluggen16-Apr-10 2:34 
GeneralRe: Programatically Connect to SQL Server instance After the VPN Connection is Established Pin
Vimalsoft(Pty) Ltd18-Apr-10 20:52
professionalVimalsoft(Pty) Ltd18-Apr-10 20:52 
QuestionConnect to my database csharp smart device Pin
Tunisien8614-Apr-10 2:41
Tunisien8614-Apr-10 2:41 

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.