|
-
Nov 1st, 2000, 05:16 PM
#1
Thread Starter
New Member
I've seen the MSN Explorer chat window form and I like it's look. How can I get that look? I would like my forms to look like this. Any replies?
-
Nov 1st, 2000, 05:19 PM
#2
Monday Morning Lunatic
What does it look like? Why not just make a form like it?
I refuse to tie my hands behind my back and hear somebody say "Bend Over, Boy, Because You Have It Coming To You".
-- Linus Torvalds
-
Nov 1st, 2000, 06:46 PM
#3
Thread Starter
New Member
Is there a form editor where I can change the look like for example, the minimize restore and exit buttons on the upper right?, those are considered icons? if so,how can they be changed,that's why I'm asking because I like that style the new MSN Explorer Instant Message chat window. Thanks
-
Nov 1st, 2000, 07:11 PM
#4
The picture isn't missing
one cool thing would be if the form was like a squigly line on the sides...
Remember, if someone's post was not helpful, you can always rate their post negatively  .
-
Nov 1st, 2000, 07:38 PM
#5
You can use Images or Pictureboxes in place of the buttons.
Code:
Private Sub picMaximize_Click()
WindowState = vbMaximized
End Sub
Private Sub picMinimize_Click()
WindowState = vbMinimized
End Sub
Private Sub picClose_Click()
Unload Me
End Sub
-
Nov 1st, 2000, 07:40 PM
#6
Actually, you can use this for your maximize code.
Code:
If WindowState = vbNormal Then
WindowState = vbMaximized
ElseIf WindowState = vbMaximized Then
WindowState = vbNormal
End If
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|