Click here to Skip to main content
16,011,711 members
Home / Discussions / C#
   

C#

 
QuestionMultiple startup Pin
KBou23-Jun-08 0:07
KBou23-Jun-08 0:07 
AnswerRe: Multiple startup Pin
Pete O'Hanlon23-Jun-08 0:09
mvePete O'Hanlon23-Jun-08 0:09 
AnswerRe: Multiple startup Pin
leppie23-Jun-08 0:11
leppie23-Jun-08 0:11 
GeneralRe: Multiple startup Pin
Luc Pattyn23-Jun-08 0:39
sitebuilderLuc Pattyn23-Jun-08 0:39 
GeneralRe: Multiple startup Pin
leppie23-Jun-08 0:50
leppie23-Jun-08 0:50 
QuestionCheck Target Form in Live???? Pin
ASysSolvers22-Jun-08 23:49
ASysSolvers22-Jun-08 23:49 
AnswerRe: Check Target Form in Live???? Pin
Christian Graus22-Jun-08 23:59
protectorChristian Graus22-Jun-08 23:59 
AnswerRe: Check Target Form in Live???? Pin
DaveyM6923-Jun-08 0:00
professionalDaveyM6923-Jun-08 0:00 
In the code in the first form that displays the second form, after declaring the second form's instance but before calling show() subscribe to the second form's Shown event. Then, in the handler, hide the first form.
Form2 f2 = new Form2();
f2.Shown += new EventHandler(f2_Shown);
f2.Show();
void f2_Shown(object sender, EventArgs e)
{
    Hide();
}


Dave

Questionhello..... Pin
ginji2022-Jun-08 23:45
ginji2022-Jun-08 23:45 
AnswerRe: hello..... Pin
Christian Graus22-Jun-08 23:58
protectorChristian Graus22-Jun-08 23:58 
GeneralRe: hello..... Pin
ginji2023-Jun-08 0:04
ginji2023-Jun-08 0:04 
GeneralRe: hello..... Pin
Christian Graus23-Jun-08 0:06
protectorChristian Graus23-Jun-08 0:06 
GeneralExplain your problem so others can understand it Pin
leppie23-Jun-08 0:07
leppie23-Jun-08 0:07 
GeneralRe: Explain your problem so others can understand it Pin
ginji2023-Jun-08 0:16
ginji2023-Jun-08 0:16 
QuestionProblem with Shockwave Flash Object on Win2K Pin
Paresh Solanki22-Jun-08 23:43
Paresh Solanki22-Jun-08 23:43 
AnswerRe: Problem with Shockwave Flash Object on Win2K Pin
leppie23-Jun-08 0:09
leppie23-Jun-08 0:09 
GeneralRe: Problem with Shockwave Flash Object on Win2K Pin
Paresh Solanki23-Jun-08 0:13
Paresh Solanki23-Jun-08 0:13 
GeneralRe: Problem with Shockwave Flash Object on Win2K Pin
leppie23-Jun-08 0:35
leppie23-Jun-08 0:35 
GeneralRe: Problem with Shockwave Flash Object on Win2K Pin
Paresh Solanki24-Jun-08 0:43
Paresh Solanki24-Jun-08 0:43 
QuestionDataGridView event arguments Pin
eyalbi00722-Jun-08 22:19
eyalbi00722-Jun-08 22:19 
AnswerRe: DataGridView event arguments Pin
rah_sin22-Jun-08 22:26
professionalrah_sin22-Jun-08 22:26 
AnswerRe: DataGridView event arguments Pin
Ashfield22-Jun-08 22:36
Ashfield22-Jun-08 22:36 
AnswerRe: DataGridView event arguments Pin
John Ad22-Jun-08 22:44
John Ad22-Jun-08 22:44 
QuestionEventLogPermission Pin
mrcooll22-Jun-08 22:14
mrcooll22-Jun-08 22:14 
AnswerRe: EventLogPermission Pin
DaveyM6922-Jun-08 23:52
professionalDaveyM6922-Jun-08 23:52 

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.