Results 1 to 6 of 6

Thread: Costomize Forms?

  1. #1

    Thread Starter
    Hyperactive Member mastermind94's Avatar
    Join Date
    Jun 2000
    Location
    Montréal, Canada
    Posts
    441

    Talking Skin?

    How can I apply a skin to a form like NeoPlanet or WinAmp?



    ------------
    Living with: VB5 Enterprise SP2
    ICQ:65287451

  2. #2
    Frenzied Member
    Join Date
    Aug 2000
    Posts
    1,539

    create your own

    create your own skins
    set the form borders to 0 and load the pic

  3. #3

    Thread Starter
    Hyperactive Member mastermind94's Avatar
    Join Date
    Jun 2000
    Location
    Montréal, Canada
    Posts
    441
    Yeah but, the minimize/maximize/close and the title bar, I can't do something with them!

  4. #4
    Frenzied Member
    Join Date
    Aug 2000
    Posts
    1,539

    create your own...

    you can create everything
    creat 2 little buttons
    in one put
    me.windowState = 1 (minimize)
    other
    put me.windowstate= 2 (maximize)
    me.windowState = 0 (normal)

    make little tiny images representing your minimize, maximize icons..


  5. #5
    Guest
    Use PictureBoxes or ImageBoxes for everything and load them according to a certian name.
    Code:
    picTitleBar = LoadPicture("TitleBar.bmp")
    For Min, Max and Close buttons, just add commands to each
    Code:
    Private Sub picMax_Click()
    
        Me.WindowState = 2
    
    End Sub

  6. #6
    Guest
    Take a look at this link which shows you how to make skins for your program.

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