Registered Components won't display in palette Programming Software Development by jsosnowski …components but cannot get them to appear in the tool palette. (BDS2006). The components are created in a package that…the JESComp category does not show up in the Tool Palette with the various components listed under the category. The … Unfortunately, the category is not created in the Tool palette and the buttons don't show up. They are … Dumb NetBeans IDE question: I've lost my palette! Programming Software Development by eggmatters In Design mode in NetBeans IDE, I had a palette with all of my AWT and Swing controls and some … am not seeing a menu option anywhere to add that palette back as an IDE pane. there's tools->…;palette, but that just brings up the set of controls for … Add color palette to form Programming Software Development by plusplus I'd like to add a color palette to my form, so that the user can choose a color. How can I add such a palette to my form(with all the colors vb offers)? Re: Registered Components won't display in palette Programming Software Development by jsosnowski I got a compnent added to the palette by installing it and then going to the install option … Re: Dumb NetBeans IDE question: I've lost my palette! Programming Software Development by Ezzaral Window > Palette Can't set the vga color palette entrees Programming Software Development by ThatGuy2244 … have tried to set the colors of the vga color palette here is my code: [CODE] mov ax, 0x13 int 0x10…] It does not set the entree number it always sets palette entree 0. Can anyone tell me why this is or… Create color palette from image Digital Media UI / UX Design by vizz I installed **Palette for Chrome** extension in **Google chrome Browser** but after few … not working. Is their any best website to create color palette from image? (anybody knows why this extension is not working… Re: Create color palette from image Digital Media UI / UX Design by LastMitch **@vizz** >Is their any best website to create color palette from image? Read this there are 5 websites regarding about color palette: http://readwrite.com/2008/08/01/five_amazing_color_palette_generators Re: Add color palette to form Programming Software Development by plusplus Two questions 1. I'd like to also add the system colors 2. How to move the palette to a certain place on the screen? Re: Is there a way to display more than 256 colors by extending the palette? Programming Software Development by nezachem … could display more than 256 colors with the VGA color palette[/B] You can not. It is a fundamental limitation of… on the screen[/B] The reason is that the VGA palette has 256 entries. To achieve true color you must go… i need help "Color palette" Programming Software Development by Vapter Ok how would i be able to set a color palette to some variables....i need it to change the color … Help to create Color palette in wxpython Programming Software Development by MSV22 … wxpython. For a project I need to create a color palette. Please check and tell me what I am doing wrong… how do I add new colors Excel palette in c# code So can use your own color Programming Software Development by capiono I want to assign a color to my excel column [CODE] currentRow.Interior.ColorIndex = 17; [/CODE] But I don't want to use one of the colors in the excel palette I do I add my own color. for instances: [CODE] currentRow.Interior.Color = Color.LightBlue; [/CODE] Thanks for the help Is there a way to display more than 256 colors by extending the palette? Programming Software Development by ThatGuy2244 … could display more than 256 colors with the VGA color palette. correct me if I'm wrong, but the reason that… Re: Color palette Community Center Meta DaniWeb by Dani Well that's how it's supposed to work. But there's a Firefox bug right now where, as you can see from the screenshot, the color palette loads at a very weird place (over the submit button) when he clicks. The same thing happens with smilies. Re: Color palette Community Center Meta DaniWeb by John A Here's what happens on the quick reply box. The first screenshot is what I see after I click it; the second is after I scroll down to the bottom of the page (clicking the color palette creates a whole pageful of whitespace). Re: Color palette Community Center Meta DaniWeb by MidiMagic … where, as you can see from the screenshot, the color palette loads at a very weird place (over the submit button… Re: Dumb NetBeans IDE question: I've lost my palette! Programming Software Development by eggmatters What have i been smoking? I probably looked at that icon 20 times yesterday. Thanks! Re: Add color palette to form Programming Software Development by QVeen72 Hi, Add this Control to ur ToolBox: "Microsoft Commom Dialog Control 6.0" to ur Project. Place the Control on the Form and rename it as "cdlg" and use this Code: [code] Private Sub Command1_Click() Dim mycol cdlg.ShowColor mycol = cdlg.Color Me.BackColor = mycol End Sub [/code] Regards Veena Re: Add color palette to form Programming Software Development by QVeen72 Hi, U cannot Control the position of CommonDialog control. But there is an alternative, Place the common Dialog on a New Form, and Move the Form to Desired position on Screen and Show the Form. Some thing like this : Add a Form And Rename it as frmColor: [code] Dim frmColor As New frmColor frmColor.Move 200,500 frmColor.cdlg.ShowColor [/… Re: Add color palette to form Programming Software Development by plusplus Thanks,works great Re: Create color palette from image Digital Media UI / UX Design by vizz > LastMitch Thanks Its helpful Re: i need help "Color palette" Programming Software Development by agrothe That would depend on the ShockwaveFlash1 object. You could use a loop from 1 to 13 to cut down on the code, but if the object doesn't allow setting multiple variables in one call, you really don't have any choice. Do you have an object reference? If so, post a link. Re: Help to create Color palette in wxpython Programming Software Development by MSV22 Thanks!! Re: Is there a way to display more than 256 colors by extending the palette? Programming Software Development by ThatGuy2244 [COLOR="Red"]>>[/COLOR] To achieve true color you must go beyond VGA modes. [COLOR="Red"]<<[/COLOR] So how would I go beyond VGA modes? Re: Is there a way to display more than 256 colors by extending the palette? Programming Software Development by ThatGuy2244 I just found out that the newer way to display graphics is through DVI or HDMI, but I can't find a tutorial on how to program the DVI. So if anyone knows a tutorial or can tell me how that would be helpful. Re: Is there a way to display more than 256 colors by extending the palette? Programming Software Development by rubberman A couple of (or a few) questions: 1. What video hardware (video board) are you using? 2. What kind of display? 3. How are you trying to program the display? Modern cards are 24-bit or 32-bit color capable. There is a standard api interface that most all modern cards support called VESA. If you aren't using a card more than, say 15 or 20 years old… Re: Is there a way to display more than 256 colors by extending the palette? Programming Software Development by ThatGuy2244 As for the display that I'm trying to program, I don't know since I am trying to get it to work in a virtual box. For VESA is that the only way to program for DVI? Re: Is there a way to display more than 256 colors by extending the palette? Programming Software Development by rubberman DVI is just an interface. You really don't need to concern yourself with that. It is the video card (physical or virtual) that you need to communicate with. For VirtualBox, using VESA API's in the client would be appropriate, or normal system graphic API's, such as Qt, OpenGL, DX10, etc. Re: Is there a way to display more than 256 colors by extending the palette? Programming Software Development by ThatGuy2244 The video card is virtual, but I'm doing this in DOS so OpenGL and DirectX aren't really an option, I'm trying to do this as close to hardware level as possible.