Tagged Questions
The colordialog tag has no wiki summary.
6
votes
1answer
105 views
Changing font in CHOOSECOLOR dialog
I'm using the Windows common controls CHOOSECOLOR dialog, but on Win 7 it sticks out like a sore thumb as it still uses the 'old' Tahoma font.
Is there a fairly easy way of getting it to use Segoe ...
3
votes
1answer
108 views
How do I get the values of the Basic Colors used in the ColorDialog?
I can get the custom colours used in the ColorDialog (vb.net) by using myColorDialog.CustomColors, which will return me an array of colours as integer values.
Is it possible to get the 48 Basic ...
2
votes
3answers
219 views
C# - using ColorDialog across forms
I have a windows form application. On the main form a user will enter a number of item, etc and then click a button which will open a new form (either a small form or a large form depending on a ...
2
votes
2answers
103 views
how can I use a color dialog to only apply color to the selected text in C#
I want to make my color dialog to only apply colors to the selected text how can I do this? thanks.
2
votes
3answers
255 views
Highlighter Pen in c#
I want to make it so my pen can be a highlighter, so basically changing its opacity, but i don't know how to do this. I currently use a colordialog to allow the use to choose desired colour but this ...
2
votes
3answers
846 views
How do I change the title of ColorDialog?
I'm spinning up a ColorDialog component in WinForms to let the user select a particular custom control's chart's background color and foreground color. Both configuration options are on the same page ...
1
vote
1answer
27 views
Refreshing the richtextbox and clearing if of the back color so it displays a new white page
I have a rtbDoc(simple word app)that you can change the back color using the colorDialog,
it does not change the color back to white if you load a new doc, so the color you picked stays the same, how ...
1
vote
1answer
113 views
Why doesn't this work (wxpython/color dialog)
class iFrame(wx.Frame):
def __init__(blah blah blah):
wx.Frame.__init.__(blah blah blah)
self.panel = wx.Panel(self, -1)
self.panel.SetBackgroundColour((I put a ...
0
votes
2answers
144 views
How do I specify what colors can be picked in a C# ColorDialog?
In Visual C#.NET:
I want to be able to make a color dialog, and have it so that the user can only select a few colors (specifically the ones available for command prompt/batch files). How is this ...
0
votes
2answers
302 views
How can I assign ColorDialog.Color to another form in C#?
I am trying to assign the color value returned from ColorDialog on one form to another form.
Form 1 consists of 2 buttons: 'Place Order' (creates a new form with bunch of controls) and 'Select Color' ...
0
votes
2answers
458 views
Freeware Colordialog Control for .Net
anybody know any .Net freeware control for color selection (color dialog) that supports RGB, HSL and CMYK color models.
I'm looking for something like this.
Thanks.
0
votes
2answers
357 views
How do I set the next available custom color in the ColorDialog?
I'm currently coding in VB.net.
A user places the cursor in a table cell and clicks on "Table > Background Color" to edit the current background colour.
Currently I have been able to detect the ...