Click here to Skip to main content
15,898,222 members
Home / Discussions / C#
   

C#

 
GeneralStarting the application with windows startup Pin
Mohamed El Gohary1-Jun-05 8:44
Mohamed El Gohary1-Jun-05 8:44 
GeneralRe: Starting the application with windows startup Pin
JonasSyrstad1-Jun-05 9:23
JonasSyrstad1-Jun-05 9:23 
QuestionHow to bold the dates Pin
pakFari1-Jun-05 8:35
pakFari1-Jun-05 8:35 
AnswerRe: How to bold the dates Pin
Robert Rohde1-Jun-05 10:59
Robert Rohde1-Jun-05 10:59 
GeneralSchema and OdbcConnection Pin
PaleyX1-Jun-05 7:57
PaleyX1-Jun-05 7:57 
GeneralRe: Schema and OdbcConnection Pin
PaleyX1-Jun-05 11:56
PaleyX1-Jun-05 11:56 
GeneralBasic Question : Opening a new windows form and populating data from parent datagrid Pin
Anonymous1-Jun-05 7:43
Anonymous1-Jun-05 7:43 
GeneralRe: Basic Question : Opening a new windows form and populating data from parent datagrid Pin
nemopeti1-Jun-05 9:08
nemopeti1-Jun-05 9:08 
The method:

You must create the form you wnto to be a parent example: called it Form2.
Then you place the controls on it, wich you need, and declared it Public or create a get/set property for them
Last step, where you need to see the new window, place a code like this:
<br />
Form2 f2=new Form2();<br />
<br />
//then give the values to Form2 controlls<br />
//example:<br />
f2.textBox1.Text="This works!";<br />
.....<br />
//and when you finish call Show() or ShowDialog()<br />
f2.Show(); //or f2.ShowDialog();<br />
<br />

I think that's you need to do.
GeneralRe: Basic Question : Opening a new windows form and populating data from parent datagrid Pin
Susan Hernandez3-Jun-05 14:51
Susan Hernandez3-Jun-05 14:51 
GeneralEnding a Worker Thread Pin
goldoche1-Jun-05 6:03
goldoche1-Jun-05 6:03 
GeneralRe: Ending a Worker Thread Pin
S. Senthil Kumar1-Jun-05 7:14
S. Senthil Kumar1-Jun-05 7:14 
Generalpopulating a listview control in another from Pin
Hadi Riazi1-Jun-05 6:03
Hadi Riazi1-Jun-05 6:03 
GeneralEquivalenet Tell me equivalenet space function in C#.net Pin
ksanju10001-Jun-05 5:19
ksanju10001-Jun-05 5:19 
GeneralRe: Equivalenet Tell me equivalenet space function in C#.net Pin
S. Senthil Kumar1-Jun-05 7:20
S. Senthil Kumar1-Jun-05 7:20 
GeneralRe: Equivalenet Tell me equivalenet space function in C#.net Pin
Dave Doknjas1-Jun-05 14:23
Dave Doknjas1-Jun-05 14:23 
GeneralBubble Sort Pin
Da`Sooty1-Jun-05 4:41
Da`Sooty1-Jun-05 4:41 
GeneralRe: Bubble Sort Pin
Marc Clifton1-Jun-05 5:05
mvaMarc Clifton1-Jun-05 5:05 
GeneralRe: Bubble Sort Pin
DavidNohejl1-Jun-05 8:17
DavidNohejl1-Jun-05 8:17 
GeneralCreating a WebForm to interact with Word Pin
samoore1-Jun-05 4:23
samoore1-Jun-05 4:23 
GeneralRe: Creating a WebForm to interact with Word Pin
Rhys Gravell1-Jun-05 6:06
professionalRhys Gravell1-Jun-05 6:06 
GeneralRe: Creating a WebForm to interact with Word Pin
moose12316-Jun-05 6:29
moose12316-Jun-05 6:29 
GeneralCompiler Warning CS1595 Pin
Nigel Savidge1-Jun-05 4:17
Nigel Savidge1-Jun-05 4:17 
GeneralRe: Compiler Warning CS1595 Pin
Colin Angus Mackay1-Jun-05 4:20
Colin Angus Mackay1-Jun-05 4:20 
GeneralRe: Compiler Warning CS1595 Pin
Nigel Savidge1-Jun-05 4:26
Nigel Savidge1-Jun-05 4:26 
GeneralComboBox DataSource property Pin
JawsSaint1-Jun-05 4:09
JawsSaint1-Jun-05 4: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.