J
Johnny Ruin
I ran the wizard to generate default Windows Forms Application. I
wanted to make it invisible, so I added the line "this->Visible =
false;" to the InitializeComponent function. I rebuilt it and dang ...
it wasn't invisible. What else should I try?
void InitializeComponent(void)
{
this->components = new System::ComponentModel::Container();
this->Size = System:rawing::Size(300,300);
this->Text = S"Form1";
this->Visible = false;
}
wanted to make it invisible, so I added the line "this->Visible =
false;" to the InitializeComponent function. I rebuilt it and dang ...
it wasn't invisible. What else should I try?
void InitializeComponent(void)
{
this->components = new System::ComponentModel::Container();
this->Size = System:rawing::Size(300,300);
this->Text = S"Form1";
this->Visible = false;
}