Hi all,
Actually, i have developed a tool.Some controls like text box,etc., Textbox insert down/bottom of form which is not seems if small monitor. Whether is it possible or any other way, to scroll the form in vb 6.0.
Thanks,
Sakthi.P
Printable View
Hi all,
Actually, i have developed a tool.Some controls like text box,etc., Textbox insert down/bottom of form which is not seems if small monitor. Whether is it possible or any other way, to scroll the form in vb 6.0.
Thanks,
Sakthi.P
[i]Moved From The CodeBank (which is for sharing code rather than posting questions :) )]/i]
'Insert an MDI Form and Form1
'Change Form1.BorderSyle = 0, Form1.MDIChild = True at design Time
'Insert Controls Text1, Text2 on Form1
'In this example:
'Text1 = Last Down/Bottom Side Control on Form1
'Text2 = Last Right Side Control on Form1
'The scrollbar will appear on MDI form automatically, whenever necessaryCode:Private Sub Form_Load() 'Form1.Load()
Me.Move 0, 0, Text2.Left + Text2.Width + 120, Text1.Top + Text1.Height + 120
End Sub