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

C#

 
AnswerRe: Excel Tables Pin
EricGoodchild30-Dec-08 15:07
EricGoodchild30-Dec-08 15:07 
QuestionObject reference not set to an instance of an object? Pin
dec8230-Dec-08 1:53
dec8230-Dec-08 1:53 
AnswerRe: Object reference not set to an instance of an object? [modified] Pin
Xmen Real 30-Dec-08 1:59
professional Xmen Real 30-Dec-08 1:59 
GeneralRe: Object reference not set to an instance of an object? Pin
dec8230-Dec-08 2:11
dec8230-Dec-08 2:11 
GeneralRe: Object reference not set to an instance of an object? Pin
Xmen Real 30-Dec-08 2:20
professional Xmen Real 30-Dec-08 2:20 
GeneralRe: Object reference not set to an instance of an object? Pin
dec8230-Dec-08 2:36
dec8230-Dec-08 2:36 
GeneralRe: Object reference not set to an instance of an object? Pin
Xmen Real 30-Dec-08 2:40
professional Xmen Real 30-Dec-08 2:40 
AnswerRe: Object reference not set to an instance of an object? Pin
Member 428013630-Dec-08 2:03
Member 428013630-Dec-08 2:03 
When you do
Command[] Querr = new Command[200];

you have allocated the array but not each array element

before you do Querr[i].Number = i you need to do:
Querr[i] = new Command();
AnswerRe: Object reference not set to an instance of an object? Pin
Brij30-Dec-08 2:04
mentorBrij30-Dec-08 2:04 
AnswerRe: Object reference not set to an instance of an object? Pin
Member 428013630-Dec-08 2:09
Member 428013630-Dec-08 2:09 
Questionhow can i import another projects/language .exe file into my project to run in C# Pin
D V kirankumar30-Dec-08 1:48
D V kirankumar30-Dec-08 1:48 
AnswerRe: how can i import another projects/language .exe file into my project to run in C# Pin
Christian Graus30-Dec-08 4:26
protectorChristian Graus30-Dec-08 4:26 
GeneralRe: how can i import another projects/language .exe file into my project to run in C# Pin
D V kirankumar30-Dec-08 23:00
D V kirankumar30-Dec-08 23:00 
QuestionSubclassing Help Pin
JimWWhite30-Dec-08 1:22
JimWWhite30-Dec-08 1:22 
AnswerRe: Subclassing Help Pin
Brij30-Dec-08 2:14
mentorBrij30-Dec-08 2:14 
GeneralRe: Subclassing Help Pin
JimWWhite31-Dec-08 1:24
JimWWhite31-Dec-08 1:24 
QuestionThread marshalling problem Pin
Member 428013630-Dec-08 0:47
Member 428013630-Dec-08 0:47 
AnswerRe: Thread marshalling problem Pin
Natza Mitzi30-Dec-08 4:33
Natza Mitzi30-Dec-08 4:33 
GeneralRe: Thread marshalling problem Pin
Member 428013630-Dec-08 5:14
Member 428013630-Dec-08 5:14 
QuestionResource file issue Pin
George_George30-Dec-08 0:24
George_George30-Dec-08 0:24 
AnswerRe: Resource file issue Pin
Natza Mitzi30-Dec-08 5:02
Natza Mitzi30-Dec-08 5:02 
GeneralRe: Resource file issue Pin
George_George30-Dec-08 18:09
George_George30-Dec-08 18:09 
QuestionPrint Reports Pin
zeeShan anSari30-Dec-08 0:09
zeeShan anSari30-Dec-08 0:09 
AnswerRe: Print Reports Pin
Paddy Boyd30-Dec-08 0:44
Paddy Boyd30-Dec-08 0:44 
GeneralRe: Print Reports Pin
zeeShan anSari30-Dec-08 0:54
zeeShan anSari30-Dec-08 0:54 

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.