|
-
Nov 15th, 2001, 02:44 PM
#1
Thread Starter
Junior Member
Gui?
I've noticed that most VB Apps look about the same. Is there some type of control you could you to give your VB apps a unique look? The grey form/controls (considering that you have your 3D object set to default in your display control panel). I know you can change the color of your form, but still...most VB apps look that same...I'll stop the annoying questions at some point today, I promise
-
Nov 15th, 2001, 02:45 PM
#2
-= B u g S l a y e r =-
there are skin controls that can give u'r app a very special look
-
Nov 15th, 2001, 02:47 PM
#3
Thread Starter
Junior Member
Really?
Really? Could you send me a few links to where I could get more info?
-
Nov 15th, 2001, 02:49 PM
#4
Black Cat
Josh
Get these: Mozilla Opera OpenBSD
I have books for sale: "MCSD in a Nutshell" and "VB Distributed Exam Cram" - PM me for details. Will also trade for a decent ATX Pentium 2 MB/CPU/RAM combo.
-
Nov 15th, 2001, 02:54 PM
#5
Lively Member
try this!
This control costs a bit but is very good! You can make skins for it and distribute them like Winamp does!
http://www.softshape.com/activeskin/
Very good, download the demo!
-
Nov 15th, 2001, 02:56 PM
#6
-= B u g S l a y e r =-
-
Nov 15th, 2001, 02:57 PM
#7
You can write you own nifty little schemes for your forms. Put this in a Form_Paint event, and play with it a while.
VB Code:
Dim cCtrl As Variant
Dim FY As Long
Dim FScaleHeight As Long
Dim FScaleWidth As Long
ScaleMode = vbPixels
FScaleHeight = ScaleHeight + 500
FScaleWidth = ScaleWidth
DrawStyle = vbInvisible
FillStyle = vbFSSolid
For FY = 0 To FScaleHeight
FillColor = RGB(255 - (FY * 255) \ FScaleHeight, 200, 150)
Line (-1, FY - 1)-(FScaleWidth, FY + 1), , B
Next
-
Nov 15th, 2001, 02:59 PM
#8
Thread Starter
Junior Member
Wow!
Wow! Nice! Just what I was looking for, but that $99 you have to pay is a bit discouraging :-/
I've looking through vbAccelerator, but haven't found anything just yet.
I wonder if there is something that does what ActiveSkin does, but it's free? ...probably not, but I'll keep my fingers crossed
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
|