|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Starting a process, controling the windowI would like to be able to start a process, but then maintain some control
over the window it creates. (Size, position, always on top, etc.) Can't seem to locate documentation on this one. Can anyone point me somewhere? Thanks. (The ultimate goal would be the ability to make an external program behave as if it was an MDI child in my program.) -- --Zorpie Zor,
See if this helps... Dim frmNew as New MyForm MyForm.TopMost = True MyForm.Size = New System.Drawing.Size(<width>, <height>) MyForm.Location = New System.Drawing.Point(<x>, <y>) MyForm.MDIParent = Me MyForm.Show() Thanks, but I'm trying to control an external process' window, not a form
that is native to my program. -- Show quoteHide quote--Zorpie "jvb" wrote: > Zor, > > See if this helps... > > Dim frmNew as New MyForm > > MyForm.TopMost = True > MyForm.Size = New System.Drawing.Size(<width>, <height>) > MyForm.Location = New System.Drawing.Point(<x>, <y>) > > MyForm.MDIParent = Me > > MyForm.Show() > >
Automatic type casting?
Crash in VB.NET 2005 Windows Shell Integration: how? Visual Basic 2005 CreateFile Read mail from exchange 2003 Problems with FileAccess and PcitoreBox Automated Refactoring w/ CodeDom and VBCodeProvider... Outlook Add-In: msoControlEdit: Textbox loses text when losing focus File is busy VB.NET - How do I set and keep data in the clipboard? |
|||||||||||||||||||||||