Click here to Skip to main content
15,893,337 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to Encrypt Data and Save to Registry ? Pin
matt cole31-Oct-06 19:07
matt cole31-Oct-06 19:07 
GeneralRe: How to Encrypt Data and Save to Registry ? Pin
Haseeb Mukhtar31-Oct-06 19:54
Haseeb Mukhtar31-Oct-06 19:54 
QuestionNew buttons styles... Pin
Lucas Eduardo31-Oct-06 9:49
Lucas Eduardo31-Oct-06 9:49 
AnswerRe: New buttons styles... Pin
Dan Neely31-Oct-06 9:56
Dan Neely31-Oct-06 9:56 
GeneralRe: New buttons styles... Pin
Guffa31-Oct-06 14:05
Guffa31-Oct-06 14:05 
GeneralRe: New buttons styles... Pin
Dan Neely1-Nov-06 2:15
Dan Neely1-Nov-06 2:15 
QuestionPassing Data to a Child Form Pin
Jason887231-Oct-06 7:40
Jason887231-Oct-06 7:40 
AnswerRe: Passing Data to a Child Form Pin
Cliff Stanford31-Oct-06 11:08
Cliff Stanford31-Oct-06 11:08 
You don't need to use ShowDialog(). Create the child form with something like this:
ChildForm child = new ChildForm();
child.owner = this;
child.Show();

From the help files:

When a form is owned by another form, it is minimized and closed with the owner form. For example, if Form2 is owned by form Form1, if Form1 is closed or minimized, Form2 is also closed or minimized. Owned forms are also never displayed behind their owner form.

Hope that helps.

Cliff.
GeneralRe: Passing Data to a Child Form Pin
Jason887231-Oct-06 11:53
Jason887231-Oct-06 11:53 
GeneralRe: Passing Data to a Child Form Pin
luckykhalid31-Oct-06 19:01
luckykhalid31-Oct-06 19:01 
GeneralRe: Passing Data to a Child Form Pin
Cliff Stanford1-Nov-06 3:39
Cliff Stanford1-Nov-06 3:39 
Questionupgraded to 2005 now msi Installer Package does not work...HELP Pin
koalalh31-Oct-06 6:35
koalalh31-Oct-06 6:35 
QuestionHelp Me Pin
minibansal31-Oct-06 5:38
minibansal31-Oct-06 5:38 
AnswerRe: Help Me Pin
Alaric_31-Oct-06 5:59
professionalAlaric_31-Oct-06 5:59 
GeneralRe: Help Me Pin
minibansal31-Oct-06 6:42
minibansal31-Oct-06 6:42 
AnswerRe: Help Me Pin
mav.northwind31-Oct-06 6:02
mav.northwind31-Oct-06 6:02 
GeneralRe: Help Me Pin
Alaric_31-Oct-06 6:07
professionalAlaric_31-Oct-06 6:07 
QuestionWeb Browser Pin
hoatien31-Oct-06 5:29
hoatien31-Oct-06 5:29 
AnswerRe: Web Browser Pin
led mike31-Oct-06 6:12
led mike31-Oct-06 6:12 
AnswerRe: Web Browser Pin
luckykhalid31-Oct-06 19:10
luckykhalid31-Oct-06 19:10 
Questionhow to make datagrid cell invisible? Pin
econnor31-Oct-06 4:49
econnor31-Oct-06 4:49 
AnswerRe: how to make datagrid cell invisible? Pin
sam#31-Oct-06 5:33
sam#31-Oct-06 5:33 
GeneralRe: how to make datagrid cell invisible? Pin
econnor31-Oct-06 5:37
econnor31-Oct-06 5:37 
QuestionWeird crashes Pin
Bekjong31-Oct-06 4:44
Bekjong31-Oct-06 4:44 
AnswerRe: Weird crashes Pin
Rob Graham31-Oct-06 5:28
Rob Graham31-Oct-06 5:28 

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.