Click here to Skip to main content
15,925,661 members
Home / Discussions / C#
   

C#

 
QuestionInfragistics ultraChart Pin
NewToAspDotNet3-Jun-08 3:39
NewToAspDotNet3-Jun-08 3:39 
AnswerRe: Infragistics ultraChart Pin
Colin Angus Mackay3-Jun-08 3:42
Colin Angus Mackay3-Jun-08 3:42 
AnswerRe: Infragistics ultraChart Pin
Nouman Bhatti3-Jun-08 20:02
Nouman Bhatti3-Jun-08 20:02 
QuestionIs there a way to implement UNION declaration in C# ? Pin
cyh_cyh3-Jun-08 3:33
cyh_cyh3-Jun-08 3:33 
QuestionRe: Is there a way to implement UNION declaration in C# ? Pin
CPallini3-Jun-08 3:40
mveCPallini3-Jun-08 3:40 
AnswerRe: Is there a way to implement UNION declaration in C# ? Pin
led mike3-Jun-08 5:06
led mike3-Jun-08 5:06 
AnswerRe: Is there a way to implement UNION declaration in C# ? Pin
cyh_cyh4-Jun-08 3:23
cyh_cyh4-Jun-08 3:23 
GeneralRe: Is there a way to implement UNION declaration in C# ? Pin
CPallini4-Jun-08 3:46
mveCPallini4-Jun-08 3:46 
AnswerRe: Is there a way to implement UNION declaration in C# ? Pin
Scott Dorman3-Jun-08 4:14
professionalScott Dorman3-Jun-08 4:14 
QuestionChange mouse pointer Pin
Radu_203-Jun-08 3:22
Radu_203-Jun-08 3:22 
AnswerRe: Change mouse pointer Pin
Vasudevan Deepak Kumar8-Jun-08 20:48
Vasudevan Deepak Kumar8-Jun-08 20:48 
QuestionHow to Change PaperSize,LandScape, ... in ReportViewer ? Pin
hdv2123-Jun-08 2:51
hdv2123-Jun-08 2:51 
Questionpass data from runtime created form to main form. Pin
redspiderke3-Jun-08 2:45
redspiderke3-Jun-08 2:45 
AnswerRe: pass data from runtime created form to main form. Pin
Colin Angus Mackay3-Jun-08 2:50
Colin Angus Mackay3-Jun-08 2:50 
GeneralRe: pass data from runtime created form to main form. Pin
redspiderke3-Jun-08 3:24
redspiderke3-Jun-08 3:24 
GeneralRe: pass data from runtime created form to main form. Pin
Colin Angus Mackay3-Jun-08 3:40
Colin Angus Mackay3-Jun-08 3:40 
GeneralRe: pass data from runtime created form to main form. Pin
redspiderke3-Jun-08 4:10
redspiderke3-Jun-08 4:10 
GeneralRe: pass data from runtime created form to main form. Pin
Colin Angus Mackay3-Jun-08 4:34
Colin Angus Mackay3-Jun-08 4:34 
redspiderke wrote:
The problem is that I want pass de data (textboxes) from the code generated form to the main form (frmMain).


They will be somewhere in the Controls collection? So long as you have uniquely identified them (use the Name property), you can use the Find method on the ControlCollection

For example:
myForm.Controls.Find("MyTextBox");

NOTE: The above line of code will return an array of Control objects because it is possible to have multiple controls with the same name.


QuestionHow to create a DLL library in C and then use it with C# Pin
islam.abdo3-Jun-08 2:42
islam.abdo3-Jun-08 2:42 
AnswerRe: How to create a DLL library in C and then use it with C# Pin
leppie3-Jun-08 3:21
leppie3-Jun-08 3:21 
AnswerRe: How to create a DLL library in C and then use it with C# Pin
mav.northwind3-Jun-08 3:38
mav.northwind3-Jun-08 3:38 
QuestionUsing a keyword as an enum identifier Pin
Duncan Edwards Jones3-Jun-08 2:41
professionalDuncan Edwards Jones3-Jun-08 2:41 
AnswerRe: Using a keyword as an enum identifier Pin
Colin Angus Mackay3-Jun-08 2:47
Colin Angus Mackay3-Jun-08 2:47 
GeneralRe: Using a keyword as an enum identifier Pin
Vikram A Punathambekar3-Jun-08 2:53
Vikram A Punathambekar3-Jun-08 2:53 
GeneralRe: Using a keyword as an enum identifier Pin
Duncan Edwards Jones3-Jun-08 3:03
professionalDuncan Edwards Jones3-Jun-08 3:03 

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.