Click here to Skip to main content
15,921,548 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralDocking Pin
PaleyX3-May-04 9:59
PaleyX3-May-04 9:59 
Generalaccess Pin
Anonymous3-May-04 9:12
Anonymous3-May-04 9:12 
GeneralRe: access Pin
Dave Kreskowiak3-May-04 9:39
mveDave Kreskowiak3-May-04 9:39 
GeneralRe: access Pin
trg50303-May-04 18:55
trg50303-May-04 18:55 
GeneralRe: access Pin
manos_p3-May-04 22:19
manos_p3-May-04 22:19 
General3D Plotting in Visual Basic Pin
Luiz Carlos Junior3-May-04 7:41
Luiz Carlos Junior3-May-04 7:41 
GeneralSetting a form's location and size Pin
SerialHobbyist3-May-04 7:21
SerialHobbyist3-May-04 7:21 
GeneralRe: Setting a form's location and size Pin
Dave Kreskowiak3-May-04 9:36
mveDave Kreskowiak3-May-04 9:36 
I'll leave the part about saving and retrieving the values up to you since there are so many methods of saving these values somewhere...

You can set the Size, Location and StartPosition properties of the form before you call the form's Show or ShowDialog method:
    Dim newForm As New Form2
 
    newForm.Size = New Size(100, 200)
    newForm.StartPosition = FormStartPosition.Manual
    newForm.Location = New Point(50, 50)
 
    newForm.Show()


RageInTheMachine9532
GeneralRe: Setting a form's location and size Pin
SerialHobbyist4-May-04 3:08
SerialHobbyist4-May-04 3:08 
Questionhow to bind function results to a datagrid Pin
NADIA20003-May-04 0:33
NADIA20003-May-04 0:33 
AnswerRe: how to bind function results to a datagrid Pin
manos_p3-May-04 2:00
manos_p3-May-04 2:00 
GeneralRe: how to bind function results to a datagrid Pin
NADIA20003-May-04 18:52
NADIA20003-May-04 18:52 
GeneralRe: how to bind function results to a datagrid Pin
manos_p3-May-04 22:06
manos_p3-May-04 22:06 
QuestionTreeview, existing node? Pin
Andreas L3-May-04 0:10
Andreas L3-May-04 0:10 
AnswerRe: Treeview, existing node? Pin
Dave Kreskowiak3-May-04 2:28
mveDave Kreskowiak3-May-04 2:28 
AnswerRe: Treeview, existing node? Pin
Dave Kreskowiak3-May-04 2:30
mveDave Kreskowiak3-May-04 2:30 
GeneralThanks! Pin
Andreas L3-May-04 2:50
Andreas L3-May-04 2:50 
GeneralPresenting Data using Flexgrid in VB.NET Pin
dpcodeproj2-May-04 23:53
dpcodeproj2-May-04 23:53 
Questionhow to write C++ code in VB7 Pin
Polywogs2-May-04 21:08
Polywogs2-May-04 21:08 
AnswerRe: how to write C++ code in VB7 Pin
Maxwell Chen2-May-04 21:21
Maxwell Chen2-May-04 21:21 
AnswerRe: how to write C++ code in VB7 Pin
Dave Kreskowiak3-May-04 2:19
mveDave Kreskowiak3-May-04 2:19 
GeneralRe: how to write C++ code in VB7 Pin
Polywogs8-May-04 21:20
Polywogs8-May-04 21:20 
GeneralCode to help me make Millionaire type game Pin
Anonymous2-May-04 20:07
Anonymous2-May-04 20:07 
GeneralRe: Code to help me make Millionaire type game Pin
vertigo_one2-May-04 20:22
vertigo_one2-May-04 20:22 
GeneralDatagrid Control Pin
Pugman8122-May-04 11:27
Pugman8122-May-04 11:27 

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.