Click here to Skip to main content
15,891,745 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Solve plz..... Pin
Member 38798818-Mar-07 18:17
Member 38798818-Mar-07 18:17 
GeneralRe: Solve plz..... Pin
Dave Kreskowiak9-Mar-07 5:11
mveDave Kreskowiak9-Mar-07 5:11 
Questioneditor urgent Pin
balakpn8-Mar-07 17:37
balakpn8-Mar-07 17:37 
QuestionChanging color of SSTab Pin
ArchaBhandare8-Mar-07 17:28
ArchaBhandare8-Mar-07 17:28 
AnswerRe: Changing color of SSTab Pin
Johan Hakkesteegt8-Mar-07 22:04
Johan Hakkesteegt8-Mar-07 22:04 
Questionhow to put a form in a form < need help!! Pin
neodeaths8-Mar-07 14:25
neodeaths8-Mar-07 14:25 
AnswerRe: how to put a form in a form < need help!! Pin
Guffa8-Mar-07 15:36
Guffa8-Mar-07 15:36 
GeneralRe: how to put a form in a form < need help!! Pin
manni_n9-Mar-07 0:52
manni_n9-Mar-07 0:52 
as u might be knowing now that this is MDI(Multipple document interface).
u can make this in the way given below..
first of all make a parent form by selecting iscontainer property as true..
nw add tree view or pic box, whichever you want...
make a click event in parent form and add a new form2.
and under the click event write this coding...

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim NewMDIChild As New Form2()
'Set the Parent Form of the Child window.
NewMDIChild.MdiParent = Me
'Display the new form.
NewMDIChild.Show()
end sub()

and change the window sate of both form1 and form 2 as maximum if u want..
thats it..
form2 is MDI child now,
if u have any doubt regarding MDI post yr problem..
bye
bye...

GeneralRe: how to put a form in a form < need help!! Pin
Guffa9-Mar-07 3:45
Guffa9-Mar-07 3:45 
AnswerRe: how to put a form in a form < need help!! Pin
Dave Kreskowiak9-Mar-07 5:09
mveDave Kreskowiak9-Mar-07 5:09 
QuestionCorrelated Treeview/Option group Scrolling Pin
TCHamilton8-Mar-07 12:06
TCHamilton8-Mar-07 12:06 
QuestionSetting security permissions for new folders Pin
aro19818-Mar-07 8:41
aro19818-Mar-07 8:41 
AnswerRe: Setting security permissions for new folders Pin
kubben8-Mar-07 9:06
kubben8-Mar-07 9:06 
Questionemail text to pager # over the smtp server Pin
jgreen298-Mar-07 6:19
jgreen298-Mar-07 6:19 
AnswerRe: email text to pager # over the smtp server Pin
Vasudevan Deepak Kumar9-Mar-07 7:15
Vasudevan Deepak Kumar9-Mar-07 7:15 
QuestionLaunch MS Access with Code Pin
New_Coder8-Mar-07 5:54
New_Coder8-Mar-07 5:54 
QuestionEmbedding dll in HTML [modified] Pin
wintergrave8-Mar-07 4:45
wintergrave8-Mar-07 4:45 
QuestionHow can I solve this problem [modified] Pin
Adekolurejo8-Mar-07 4:03
Adekolurejo8-Mar-07 4:03 
AnswerRe: How can I solve this problem Pin
Dave Kreskowiak8-Mar-07 4:30
mveDave Kreskowiak8-Mar-07 4:30 
Questionpbm in richtext box Pin
balakpn8-Mar-07 2:38
balakpn8-Mar-07 2:38 
AnswerRe: pbm in richtext box Pin
Dave Kreskowiak8-Mar-07 4:28
mveDave Kreskowiak8-Mar-07 4:28 
GeneralRe: pbm in richtext box Pin
balakpn8-Mar-07 17:19
balakpn8-Mar-07 17:19 
GeneralRe: pbm in richtext box Pin
Dave Kreskowiak9-Mar-07 4:54
mveDave Kreskowiak9-Mar-07 4:54 
Questionconnection not getting closed Pin
balakpn7-Mar-07 23:38
balakpn7-Mar-07 23:38 
AnswerRe: connection not getting closed Pin
Colin Angus Mackay8-Mar-07 0:02
Colin Angus Mackay8-Mar-07 0:02 

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.