Skip to content
Home > Programming > Overlaping Pictureboxes

Overlaping Pictureboxes

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #190828
    Snoopy1968
    Member

    Quesiton? two overlapping pictureboxes
    Window(0)
    Window(1)
    Window 1 Overlaps Window 0
    how to i bring window to the top so it can be seen without making it visiible=false
    ??

    #190832
    Ghost
    Member

    First of all, don’t post two topics about the same thing. I’m sure I put something about it in the rules. If not, still don’t do it.

    About your question; assuming you’re using VB6, try the ZOrder function.

    'On Window(1):
    Window(0).ZOrder 0

    'If you wanted to bring Window(1) back to the front:
    Window(1).ZOrder 0
    #190831
    Departure
    Member

    Right cliock the picture box in VB6 IDE and select …. ummm either “Send to back” or “bring to front” 😆

    #190830
    Snoopy1968
    Member

    Thanks guys ill try that……. does viisual studio 2005 pro give any advantages over vb6 out of interest vb6 seems to work fine but wonder if there new funcitons

    #190829
    Ghost
    Member

    Oh, did you mean in dev mode or in play mode?

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.