Click here to Skip to main content
15,914,074 members
Home / Discussions / C#
   

C#

 
GeneralWindows Forms Question Pin
1nsp1r3d4-Jul-05 6:00
1nsp1r3d4-Jul-05 6:00 
GeneralRe: Windows Forms Question Pin
User 66584-Jul-05 6:27
User 66584-Jul-05 6:27 
GeneralRe: Windows Forms Question Pin
1nsp1r3d4-Jul-05 6:46
1nsp1r3d4-Jul-05 6:46 
GeneralRe: Windows Forms Question Pin
User 66584-Jul-05 6:59
User 66584-Jul-05 6:59 
GeneralRe: Windows Forms Question Pin
heavenamour4-Jul-05 19:56
heavenamour4-Jul-05 19:56 
GeneralRe: Windows Forms Question Pin
Anonymous5-Jul-05 0:08
Anonymous5-Jul-05 0:08 
Questionhow to store sender object in an array ? Pin
fracalifa4-Jul-05 5:00
fracalifa4-Jul-05 5:00 
AnswerRe: how to store sender object in an array ? Pin
Guffa4-Jul-05 5:32
Guffa4-Jul-05 5:32 
You have declared arr to be an object rather than an array of objects. That will make arr reference to the array rather than being the array. To use the array you would have to cast arr as being a reference to an array of objects:

((object[])arr)[i] = sender;

Instead, declare arr as an array:

object[] arr = new object[100];

Have you assigned a value to the variable i?

---
b { font-weight: normal; }

AnswerRe: how to store sender object in an array ? Pin
S. Senthil Kumar4-Jul-05 5:32
S. Senthil Kumar4-Jul-05 5:32 
GeneralEventhandling in Outlook (Calendar) Pin
kloakenratte4-Jul-05 4:57
kloakenratte4-Jul-05 4:57 
GeneralDialog post-initialisation Pin
IJay4-Jul-05 4:55
IJay4-Jul-05 4:55 
GeneralRe: Dialog post-initialisation Pin
mav.northwind4-Jul-05 8:17
mav.northwind4-Jul-05 8:17 
GeneralRe: Dialog post-initialisation Pin
IJay4-Jul-05 22:17
IJay4-Jul-05 22:17 
GeneralMysterious regex problems!! Pin
Hauxon4-Jul-05 4:14
Hauxon4-Jul-05 4:14 
GeneralRe: Mysterious regex problems!! Pin
leppie4-Jul-05 4:43
leppie4-Jul-05 4:43 
GeneralRe: Mysterious regex problems!! Pin
Guffa4-Jul-05 5:22
Guffa4-Jul-05 5:22 
GeneralSOLVED!! Pin
Hauxon4-Jul-05 7:15
Hauxon4-Jul-05 7:15 
GeneralSOLVED!! Pin
Daniel Turini4-Jul-05 12:10
Daniel Turini4-Jul-05 12:10 
GeneralRe: SOLVED!! Pin
Hauxon6-Jul-05 2:13
Hauxon6-Jul-05 2:13 
QuestionWhy .net requires .dll file ? Pin
montu33774-Jul-05 4:11
montu33774-Jul-05 4:11 
AnswerRe: Why .net requires .dll file ? Pin
S. Senthil Kumar4-Jul-05 4:57
S. Senthil Kumar4-Jul-05 4:57 
QuestionHow to use MCI cut command in c#? Pin
Member 20843324-Jul-05 2:48
Member 20843324-Jul-05 2:48 
GeneralAccess Question Pin
Rassul Yunussov4-Jul-05 1:44
Rassul Yunussov4-Jul-05 1:44 
GeneralRe: Access Question Pin
WillemM4-Jul-05 2:47
WillemM4-Jul-05 2:47 
GeneralGetNextControl again .. Pin
kakarato4-Jul-05 1:09
kakarato4-Jul-05 1:09 

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.