Results 1 to 4 of 4

Thread: [RESOLVED] image at bottom

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Sep 2006
    Location
    Greater Manchester, UK
    Posts
    476

    Resolved [RESOLVED] image at bottom

    how do i make an image box stay at the bottom of the form.

    i tried:
    image1.top = Min

    thanks in advance
    chris1990
    If your question is answered then mark your thread RESOLVED and give credit to whoever answered it.

    If you fail, try and try again, its the only way to success.

  2. #2
    PowerPoster Fazi's Avatar
    Join Date
    Aug 2005
    Location
    Underworld
    Posts
    2,525

    Re: image at bottom

    Code:
    Private Sub Form_Load()
    Me.Image1.Top = Me.ScaleHeight
    End Sub
    
    Private Sub Form_Resize()
    Me.Image1.Top = Me.ScaleHeight
    End Sub

  3. #3
    Frenzied Member
    Join Date
    Jun 2007
    Location
    India
    Posts
    1,158

    Re: image at bottom

    try

    Private Sub Form_Resize()
    Me.Image1.Top = Me.ScaleHeight - image1.height
    End Sub

  4. #4

    Thread Starter
    Hyperactive Member
    Join Date
    Sep 2006
    Location
    Greater Manchester, UK
    Posts
    476

    Re: image at bottom

    thanks
    If your question is answered then mark your thread RESOLVED and give credit to whoever answered it.

    If you fail, try and try again, its the only way to success.

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