Click here to Skip to main content
15,913,773 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Outlook 2003 Listview Pin
MickRose5-Jan-07 5:26
MickRose5-Jan-07 5:26 
GeneralRe: Outlook 2003 Listview Pin
MatrixCoder5-Jan-07 7:04
MatrixCoder5-Jan-07 7:04 
QuestionNULL Nothing DBNull - when where why??? Pin
Marcus J. Smith4-Jan-07 4:58
professionalMarcus J. Smith4-Jan-07 4:58 
AnswerRe: NULL Nothing DBNull - when where why??? Pin
nlarson114-Jan-07 5:09
nlarson114-Jan-07 5:09 
AnswerRe: NULL Nothing DBNull - when where why??? Pin
Colin Angus Mackay4-Jan-07 5:15
Colin Angus Mackay4-Jan-07 5:15 
AnswerRe: NULL Nothing DBNull - when where why??? Pin
Guffa4-Jan-07 7:23
Guffa4-Jan-07 7:23 
QuestionMinimize a Child Form in a Parent MDI Pin
Jason Holland4-Jan-07 4:51
Jason Holland4-Jan-07 4:51 
AnswerRe: Minimize a Child Form in a Parent MDI Pin
Dave Kreskowiak4-Jan-07 8:00
mveDave Kreskowiak4-Jan-07 8:00 
MDI Child forms are rendered inside another control on the Parent form. This control is called the MDIClient. Search the Controls collection of the MDI Parent form and you can get a reference to the Client control. Once you have the reference you can manipulate the control just like any other control you drop on a form, even move and resize it so it leave you room on the left side of the MDI Parent form for your TreeView control.
For Each c As Control In Me.Controls
    If TypeOf c Is MDIClient Then
        Dim mdic As MdiClient = DirectCast(c, MdiClient)
        mdic.Dock = DockStyle.None
        mdic.Anchor = AnchorStyle.None
        mdic.Location = New Point(20, 20)
        mdic.Size = New Size(200, 200)
        Exit For
    End If
Next



Dave Kreskowiak
Microsoft MVP - Visual Basic


QuestionMAC Address Pin
Aji V Nair4-Jan-07 4:50
Aji V Nair4-Jan-07 4:50 
AnswerRe: MAC Address Pin
Dave Kreskowiak4-Jan-07 7:20
mveDave Kreskowiak4-Jan-07 7:20 
QuestionTraversing through a dataset when the mouse is press and held. Pin
nickib584-Jan-07 4:40
nickib584-Jan-07 4:40 
AnswerRe: Traversing through a dataset when the mouse is press and held. Pin
nlarson114-Jan-07 4:59
nlarson114-Jan-07 4:59 
Question.Net icon quality Pin
MatthysDT4-Jan-07 3:08
MatthysDT4-Jan-07 3:08 
AnswerRe: .Net icon quality Pin
MatrixCoder4-Jan-07 3:38
MatrixCoder4-Jan-07 3:38 
QuestionMDI skinning question Pin
Enriad4-Jan-07 2:41
Enriad4-Jan-07 2:41 
AnswerRe: MDI skinning question Pin
Martin.Smith4-Jan-07 4:13
Martin.Smith4-Jan-07 4:13 
GeneralRe: MDI skinning question Pin
Enriad6-Jan-07 23:21
Enriad6-Jan-07 23:21 
QuestionHow to send XML from one system to anther Pin
vivek_cs4-Jan-07 2:13
vivek_cs4-Jan-07 2:13 
Questionenumerate all sql server 2000 instances on LAN in VB.net Pin
Hasan Jaffal4-Jan-07 1:08
Hasan Jaffal4-Jan-07 1:08 
AnswerRe: enumerate all sql server 2000 instances on LAN in VB.net Pin
Hasan Jaffal4-Jan-07 22:08
Hasan Jaffal4-Jan-07 22:08 
AnswerRe: enumerate all sql server 2000 instances on LAN in VB.net Pin
S Douglas7-Jan-07 1:57
professionalS Douglas7-Jan-07 1:57 
QuestionCheck Box event ? [modified] Pin
harvey1074-Jan-07 1:06
harvey1074-Jan-07 1:06 
AnswerRe: Check Box event ? Pin
MatrixCoder4-Jan-07 3:47
MatrixCoder4-Jan-07 3:47 
GeneralRe: Check Box event ? Pin
harvey1078-Jan-07 6:30
harvey1078-Jan-07 6:30 
Questionms access query implementation problem in vb.net Pin
amaneet4-Jan-07 1:04
amaneet4-Jan-07 1:04 

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.