|
-
Feb 3rd, 2008, 10:42 AM
#1
Thread Starter
New Member
Color picker pallete
Hi All,
Is there any built in control or 3rd party control for color picking. Something like a pallete in windows, forms, properties where we choose color from a pallete .
Thanks.
-
Feb 3rd, 2008, 11:12 AM
#2
Re: Color picker pallete
The Common Dialog Control has a colour picker (.ShowColor)
-
Feb 3rd, 2008, 05:41 PM
#3
Re: Color picker pallete
Try this control:
from http://vbnet.mvps.org/index.html?cod...rcustomize.htm
You can place the dialog in the center of the screen instead of the top left cornor
Waiting for a full featured smart phone with out marrying a provider
Go Android
Go raiders 
-
Feb 4th, 2008, 05:58 AM
#4
Re: Color picker pallete
In addition to those, there are a lot of other ones:
http://pscode.com/vb/scripts/BrowseC...1=Quick+Search
Common Dialog Control usually works good enough though.
-
Feb 4th, 2008, 06:15 AM
#5
Thread Starter
New Member
Re: Color picker pallete
Thanks to all of you for replies.
I tried common dialog control and on form load set its property (.showcolor)
but i didnt see any color pallete displayed on run time. Have i missed something ?
-
Feb 4th, 2008, 07:26 AM
#6
Re: Color picker pallete
It's a method not a property
Code:
With CommonDialog1
.ShowColor 'Opens a colour dialog
Debug.Print .Color
End With
-
Feb 4th, 2008, 07:28 AM
#7
Re: Color picker pallete
And if you use this to change the color of something on your screen please bare in mind that the next time your program runs whatever you changed will revert to its original color unless the color change you made is saved externally, and then read back in and applied when your program runs.
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
|