Click here to Skip to main content
15,901,035 members
Home / Discussions / C#
   

C#

 
GeneralRe: Print with landscap Pin
cocoonwls12-May-08 15:19
cocoonwls12-May-08 15:19 
QuestionPassing Variable to Parent form Pin
benjamin yap11-May-08 23:14
benjamin yap11-May-08 23:14 
AnswerRe: Passing Variable to Parent form Pin
Christian Graus11-May-08 23:17
protectorChristian Graus11-May-08 23:17 
GeneralRe: Passing Variable to Parent form Pin
benjamin yap11-May-08 23:33
benjamin yap11-May-08 23:33 
GeneralRe: Passing Variable to Parent form Pin
Christian Graus11-May-08 23:54
protectorChristian Graus11-May-08 23:54 
GeneralRe: Passing Variable to Parent form Pin
benjamin yap12-May-08 0:02
benjamin yap12-May-08 0:02 
GeneralRe: Passing Variable to Parent form Pin
Christian Graus12-May-08 0:04
protectorChristian Graus12-May-08 0:04 
GeneralRe: Passing Variable to Parent form Pin
benjamin yap12-May-08 0:10
benjamin yap12-May-08 0:10 
Oh, so inside my FrmMain_Load(), i tried set my childLogin to ShowDialog

i get this error
"Form that is not a top-level form cannot be displayed as a modal dialog box. Remove the form from any parent form before calling showDialog."


private void FrmMain_Load(object sender, EventArgs e)
{
this.toolStripStaff.Visible = false;
this.toolStripCatalogue.Visible = false;
this.toolStripProduct.Visible = false;
this.toolStripOrder.Visible = false;
this.toolStripInventory.Visible = false;

FrmLogin childLogin = new FrmLogin();
childLogin.MdiParent = this;
childLogin.ShowDialog();
stripLblLoginAs.Text = "Login As :";
}
GeneralRe: Passing Variable to Parent form Pin
natsuyaki12-May-08 0:13
natsuyaki12-May-08 0:13 
GeneralRe: Passing Variable to Parent form Pin
Christian Graus12-May-08 0:14
protectorChristian Graus12-May-08 0:14 
GeneralRe: Passing Variable to Parent form Pin
Christian Graus12-May-08 0:13
protectorChristian Graus12-May-08 0:13 
GeneralRe: Passing Variable to Parent form Pin
benjamin yap12-May-08 0:25
benjamin yap12-May-08 0:25 
GeneralRe: Passing Variable to Parent form Pin
Christian Graus12-May-08 0:44
protectorChristian Graus12-May-08 0:44 
GeneralRe: Passing Variable to Parent form Pin
natsuyaki12-May-08 0:51
natsuyaki12-May-08 0:51 
GeneralRe: Passing Variable to Parent form Pin
benjamin yap12-May-08 1:57
benjamin yap12-May-08 1:57 
GeneralRe: Passing Variable to Parent form Pin
natsuyaki12-May-08 2:09
natsuyaki12-May-08 2:09 
GeneralRe: Passing Variable to Parent form Pin
benjamin yap12-May-08 3:02
benjamin yap12-May-08 3:02 
GeneralRe: Passing Variable to Parent form [modified] Pin
natsuyaki12-May-08 3:54
natsuyaki12-May-08 3:54 
AnswerRe: Passing Variable to Parent form Pin
natsuyaki11-May-08 23:18
natsuyaki11-May-08 23:18 
GeneralRe: Passing Variable to Parent form Pin
Christian Graus11-May-08 23:20
protectorChristian Graus11-May-08 23:20 
GeneralRe: Passing Variable to Parent form Pin
natsuyaki11-May-08 23:27
natsuyaki11-May-08 23:27 
GeneralRe: Passing Variable to Parent form Pin
Christian Graus11-May-08 23:46
protectorChristian Graus11-May-08 23:46 
GeneralRe: Passing Variable to Parent form Pin
Colin Angus Mackay12-May-08 0:27
Colin Angus Mackay12-May-08 0:27 
GeneralRe: Passing Variable to Parent form Pin
natsuyaki11-May-08 23:35
natsuyaki11-May-08 23:35 
GeneralRe: Passing Variable to Parent form Pin
benjamin yap11-May-08 23:41
benjamin yap11-May-08 23:41 

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.