CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jun 2001
    Posts
    11

    Form Window positions

    I have 2 forms which load up in the beggining, only problem it that they overlap. Is tere a way to specify the windows' starting position?
    thanks


  2. #2
    Join Date
    Apr 2000
    Posts
    737

    Re: Form Window positions

    there is a property called StartupPosition, or alternatively use the Move method in the form load event to move the form to the position that u want.

    HTH

    cksiow
    http://vblib.virtualave.net - share our codes


  3. #3
    Join Date
    May 2001
    Location
    Russia
    Posts
    200

    Re: Form Window positions

    Correct answer, but you also can use .Left and .Top properties of the form.

    Andy Tower

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured