Click here to Skip to main content
15,899,679 members
Home / Discussions / C#
   

C#

 
QuestionInternal buffer(I/O) size of serialport Pin
Shivarudrayya H27-Nov-08 18:00
Shivarudrayya H27-Nov-08 18:00 
AnswerRe: Internal buffer(I/O) size of serialport Pin
Mbah Dhaim27-Nov-08 19:43
Mbah Dhaim27-Nov-08 19:43 
Questioncreating ssis package on the fly using C# Pin
l.laxmikant27-Nov-08 17:43
l.laxmikant27-Nov-08 17:43 
Question[HELP] Attempted to access an element as a type incompatible with the array Pin
dnlmarshall27-Nov-08 15:38
dnlmarshall27-Nov-08 15:38 
AnswerRe: [HELP] Attempted to access an element as a type incompatible with the array Pin
Christian Graus27-Nov-08 15:40
protectorChristian Graus27-Nov-08 15:40 
GeneralRe: [HELP] Attempted to access an element as a type incompatible with the array Pin
dnlmarshall27-Nov-08 15:46
dnlmarshall27-Nov-08 15:46 
GeneralRe: [HELP] Attempted to access an element as a type incompatible with the array Pin
Christian Graus27-Nov-08 15:55
protectorChristian Graus27-Nov-08 15:55 
GeneralRe: [HELP] Attempted to access an element as a type incompatible with the array Pin
dnlmarshall27-Nov-08 16:04
dnlmarshall27-Nov-08 16:04 
QuestionCAS problem Pin
_anil_27-Nov-08 14:18
_anil_27-Nov-08 14:18 
AnswerRe: CAS problem Pin
V.27-Nov-08 20:25
professionalV.27-Nov-08 20:25 
Questionhow to record sound from a mic Pin
BahaaHany27-Nov-08 11:39
BahaaHany27-Nov-08 11:39 
AnswerRe: how to record sound from a mic Pin
Shyam Bharath27-Nov-08 18:34
Shyam Bharath27-Nov-08 18:34 
GeneralRe: how to record sound from a mic Pin
BahaaHany27-Nov-08 20:57
BahaaHany27-Nov-08 20:57 
GeneralRe: how to record sound from a mic Pin
Shyam Bharath27-Nov-08 22:56
Shyam Bharath27-Nov-08 22:56 
AnswerRe: how to record sound from a mic Pin
Pedram Behroozi27-Nov-08 21:09
Pedram Behroozi27-Nov-08 21:09 
QuestionGeneral programming ideea, just so I go the right way Pin
sodevrom27-Nov-08 11:15
sodevrom27-Nov-08 11:15 
AnswerRe: General programming ideea, just so I go the right way Pin
User 665827-Nov-08 11:39
User 665827-Nov-08 11:39 
GeneralRe: General programming ideea, just so I go the right way Pin
sodevrom27-Nov-08 11:45
sodevrom27-Nov-08 11:45 
GeneralRe: General programming ideea, just so I go the right way Pin
User 665827-Nov-08 14:01
User 665827-Nov-08 14:01 
sodevrom wrote:

But anyways, if I add controls in a tab page, and if I delete the tab page, are the controls from the tab page auto deleted ?


Unless the controls contain no unmanaged resources there should be no problems, but I'm not entirely sure myself.

sodevrom wrote:


How can I store the 3 objects so I can access them with ease. As I sayed, I can access the tab pages very easy :
lTabs[0]
I can't do the save for the objects. I would want to make it like this :
lOBj[0]

I can't do that becouse object1, and 3 (or 2 and 3) are different, and I can't make a list to store objects from different classes, right ?


Do you want to store multiple objects per tab page or only one object per tab page?
If it's only one object per tab page, then you can put it into the Tag property of the tab page and access it like that: object obj = lTabs[index].Tag

If you want to store multiple objects per tab page, then you could also store a List<object> into the Tag property. Another solution would be to store this array in a Dictionary<TabPage, List<object>> and access the list ob objects via List<object> objects = dic[TabPage];

regards

modified 12-Sep-18 21:01pm.

QuestionC# WinForms DataBinding? Pin
wbjohnson27-Nov-08 10:25
wbjohnson27-Nov-08 10:25 
AnswerRe: C# WinForms DataBinding? Pin
nelsonpaixao30-Nov-08 4:44
nelsonpaixao30-Nov-08 4:44 
GeneralRe: C# WinForms DataBinding? Pin
wbjohnson30-Nov-08 5:33
wbjohnson30-Nov-08 5:33 
QuestionTransparency, or alternative, in non-client area. Pin
Chris Copeland27-Nov-08 10:05
mveChris Copeland27-Nov-08 10:05 
AnswerRe: Transparency, or alternative, in non-client area. Pin
leppie27-Nov-08 22:02
leppie27-Nov-08 22:02 
QuestionI do not undertand arraylist or list Pin
netJP12L27-Nov-08 8:24
netJP12L27-Nov-08 8:24 

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.