Click here to Skip to main content
15,911,360 members
Home / Discussions / C#
   

C#

 
AnswerRe: DataViewManager Pin
Nader Elshehabi28-Aug-06 7:34
Nader Elshehabi28-Aug-06 7:34 
QuestionShow Form from (non-GUI) Thread Pin
LiamD28-Aug-06 5:44
LiamD28-Aug-06 5:44 
AnswerRe: Show Form from (non-GUI) Thread Pin
Nader Elshehabi28-Aug-06 7:10
Nader Elshehabi28-Aug-06 7:10 
GeneralRe: Show Form from (non-GUI) Thread Pin
LiamD28-Aug-06 8:59
LiamD28-Aug-06 8:59 
GeneralRe: Show Form from (non-GUI) Thread Pin
Nader Elshehabi28-Aug-06 9:51
Nader Elshehabi28-Aug-06 9:51 
Questionstring variable Pin
TAREQ F ABUZUHRI28-Aug-06 5:25
TAREQ F ABUZUHRI28-Aug-06 5:25 
AnswerRe: string variable Pin
Andrei Ungureanu28-Aug-06 5:30
Andrei Ungureanu28-Aug-06 5:30 
AnswerRe: string variable Pin
Judah Gabriel Himango28-Aug-06 5:31
sponsorJudah Gabriel Himango28-Aug-06 5:31 
TAREQ F ABUZUHRI wrote:
string itm1,itm2,itm3,itm4,itm5,itm6,itm7,itm8,itm9,itm10,itm11,itm12,itm13;

i want to make method as

save(int ID,string Value)
{
itm+ID=Value;
//itm1=value;
}



That won't work, Tareq. And it's bad design too, don't do that. Instead, use a string[]:

string[] items = new string[13];

...

save(int ID, string Value)
{
   items[ID] = Value;
}


Tech, life, family, faith: Give me a visit.
I'm currently blogging about: Dumbest. Movie. Title. Evaaar.
The apostle Paul, modernly speaking: Epistles of Paul

Judah Himango



*edit* oops, karkster beat me to it.

AnswerRe: string variable Pin
Nader Elshehabi28-Aug-06 5:35
Nader Elshehabi28-Aug-06 5:35 
AnswerRe: string variable Pin
Martin#28-Aug-06 7:25
Martin#28-Aug-06 7:25 
AnswerRe: string variable [modified] Pin
eggsovereasy28-Aug-06 8:40
eggsovereasy28-Aug-06 8:40 
QuestionHow do I initialize the checkbox column? Pin
printscreen1234528-Aug-06 5:18
printscreen1234528-Aug-06 5:18 
AnswerRe: How do I initialize the checkbox column? Pin
Nader Elshehabi28-Aug-06 5:51
Nader Elshehabi28-Aug-06 5:51 
GeneralRe: How do I initialize the checkbox column? Pin
printscreen1234528-Aug-06 15:03
printscreen1234528-Aug-06 15:03 
GeneralRe: How do I initialize the checkbox column? Pin
Nader Elshehabi28-Aug-06 19:24
Nader Elshehabi28-Aug-06 19:24 
GeneralRe: How do I initialize the checkbox column? Pin
printscreen1234529-Aug-06 1:38
printscreen1234529-Aug-06 1:38 
AnswerRe: How do I initialize the checkbox column? Pin
Nader Elshehabi29-Aug-06 2:32
Nader Elshehabi29-Aug-06 2:32 
GeneralRe: How do I initialize the checkbox column? Pin
printscreen1234529-Aug-06 2:41
printscreen1234529-Aug-06 2:41 
GeneralRe: How do I initialize the checkbox column? Pin
Nader Elshehabi29-Aug-06 5:16
Nader Elshehabi29-Aug-06 5:16 
GeneralRe: How do I initialize the checkbox column? [modified] Pin
printscreen1234529-Aug-06 14:55
printscreen1234529-Aug-06 14:55 
AnswerRe: How do I initialize the checkbox column? Pin
Nader Elshehabi30-Aug-06 7:56
Nader Elshehabi30-Aug-06 7:56 
QuestionVB6.0 DLL code works in C# form but not when used in .net DLL Pin
killazzz28-Aug-06 4:34
killazzz28-Aug-06 4:34 
AnswerRe: VB6.0 DLL code works in C# form but not when used in .net DLL Pin
Not Active28-Aug-06 5:05
mentorNot Active28-Aug-06 5:05 
GeneralRe: VB6.0 DLL code works in C# form but not when used in .net DLL Pin
killazzz28-Aug-06 7:51
killazzz28-Aug-06 7:51 
GeneralRe: VB6.0 DLL code works in C# form but not when used in .net DLL Pin
killazzz29-Aug-06 3:32
killazzz29-Aug-06 3:32 

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.