Prev: transmit data using a particular data connection
Next: Can Someone please help me with my Computer stuff? 15320
From: Anthony Wieser on 23 Jan 2010 10:49 I'm using .NET with C# and visual studio 2005 targeting wm 6 Professional My form is set to maximized, and I've added an inputPanel control to the form. I successfully receive EnabledChanged notifications, however, when I try to perform this: this.Size = new Size(inputPanel.VisibleDesktop.Width, inputPanel.VisibleDesktop.Height) the size does not change. I can only assume that somehow the framework is ignoring the change. Any idea how to get this to work? -- Anthony Wieser Wieser Software Ltd
From: tony on 27 Jan 2010 00:49 I always use one Panel for all other control's container, and while the inputpanel showing, I changed the size of the panel. Don't set the docking attribution of the panel. "Anthony Wieser" <newsgroups-sansspam(a)wieser-software.com> Wrote:%23BYL%23PEnKHA.5692(a)TK2MSFTNGP04.phx.gbl... > I'm using .NET with C# and visual studio 2005 targeting wm 6 Professional > > My form is set to maximized, and I've added an inputPanel control to the > form. > I successfully receive EnabledChanged notifications, however, when I try > to perform this: > this.Size = new Size(inputPanel.VisibleDesktop.Width, > inputPanel.VisibleDesktop.Height) > > the size does not change. > > I can only assume that somehow the framework is ignoring the change. > > Any idea how to get this to work? > > > -- > Anthony Wieser > Wieser Software Ltd
From: Anthony Wieser on 27 Jan 2010 02:51
Thanks, That looks like it will work. Anthony Wieser Wieser Software Ltd "tony" <zmc(a)263.net> wrote in message news:eLXKCSxnKHA.4436(a)TK2MSFTNGP02.phx.gbl... >I always use one Panel for all other control's container, and while the >inputpanel showing, I changed the size of the panel. > > Don't set the docking attribution of the panel. > > "Anthony Wieser" <newsgroups-sansspam(a)wieser-software.com> > Wrote:%23BYL%23PEnKHA.5692(a)TK2MSFTNGP04.phx.gbl... >> I'm using .NET with C# and visual studio 2005 targeting wm 6 Professional >> >> My form is set to maximized, and I've added an inputPanel control to the >> form. >> I successfully receive EnabledChanged notifications, however, when I try >> to perform this: >> this.Size = new Size(inputPanel.VisibleDesktop.Width, >> inputPanel.VisibleDesktop.Height) >> >> the size does not change. >> >> I can only assume that somehow the framework is ignoring the change. >> >> Any idea how to get this to work? >> >> >> -- >> Anthony Wieser >> Wieser Software Ltd > > |