Click here to Skip to main content
15,887,135 members
Home / Discussions / C#
   

C#

 
AnswerRe: Change Monitor Resolution Pin
Eric Dahlvang1-May-06 3:37
Eric Dahlvang1-May-06 3:37 
QuestionControls and data-binding Pin
code_wiz30-Apr-06 23:10
code_wiz30-Apr-06 23:10 
Questioncall event from editbox Pin
il-gigi30-Apr-06 22:45
il-gigi30-Apr-06 22:45 
AnswerRe: call event from editbox Pin
CWIZO1-May-06 0:07
CWIZO1-May-06 0:07 
Questionproblems with panals Pin
Rmokkenstorm30-Apr-06 21:41
Rmokkenstorm30-Apr-06 21:41 
AnswerRe: problems with panals Pin
Robert Rohde30-Apr-06 21:50
Robert Rohde30-Apr-06 21:50 
GeneralRe: problems with panals Pin
Rmokkenstorm30-Apr-06 21:53
Rmokkenstorm30-Apr-06 21:53 
GeneralRe: problems with panals Pin
Robert Rohde30-Apr-06 22:06
Robert Rohde30-Apr-06 22:06 
In the getter of Form1 right before adding it to the Panel:
internal Form1 From1
{
   get
   {
      if (this.from1 == null)
      {
         this.from1 = new Form1();

         this.from1.TopLevel = false; //HERE!!!!
         this.panel1.Controls.Add(this.from1);
         this.from1.Dock = DockStyle.Fill;
      }

      return this.from1;
   }
}

GeneralRe: problems with panals Pin
Rmokkenstorm30-Apr-06 22:21
Rmokkenstorm30-Apr-06 22:21 
GeneralRe: problems with panals Pin
Robert Rohde30-Apr-06 22:25
Robert Rohde30-Apr-06 22:25 
GeneralRe: problems with panals Pin
Rmokkenstorm30-Apr-06 22:37
Rmokkenstorm30-Apr-06 22:37 
GeneralRe: problems with panals Pin
Robert Rohde1-May-06 2:48
Robert Rohde1-May-06 2:48 
Questionwindows application Pin
virz30-Apr-06 20:02
virz30-Apr-06 20:02 
AnswerRe: windows application Pin
_mubashir30-Apr-06 20:55
_mubashir30-Apr-06 20:55 
GeneralRe: windows application Pin
Colin Angus Mackay30-Apr-06 21:02
Colin Angus Mackay30-Apr-06 21:02 
GeneralRe: windows application Pin
_mubashir30-Apr-06 23:57
_mubashir30-Apr-06 23:57 
AnswerRe: windows application Pin
Colin Angus Mackay30-Apr-06 21:02
Colin Angus Mackay30-Apr-06 21:02 
QuestionNeed help....! Pin
samjlk30-Apr-06 19:53
samjlk30-Apr-06 19:53 
AnswerRe: Need help....! Pin
Robert Rohde30-Apr-06 21:52
Robert Rohde30-Apr-06 21:52 
GeneralRe: Need help....! Pin
samjlk30-Apr-06 22:32
samjlk30-Apr-06 22:32 
QuestionTwo Questions About Web UI Automation Pin
WaleedH30-Apr-06 19:31
WaleedH30-Apr-06 19:31 
QuestionProblem with Designer Serialization Pin
kamran6553630-Apr-06 16:57
kamran6553630-Apr-06 16:57 
AnswerRe: Problem with Designer Serialization Pin
Robert Rohde30-Apr-06 21:59
Robert Rohde30-Apr-06 21:59 
GeneralRe: Problem with Designer Serialization Pin
kamran655361-May-06 2:59
kamran655361-May-06 2:59 
GeneralRe: Problem with Designer Serialization Pin
Robert Rohde1-May-06 3:32
Robert Rohde1-May-06 3:32 

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.