answersLogoWhite

0

//in C#, this color setups color with black textbox.BackColor = Color.Black;

User Avatar

Wiki User

17y ago

What else can I help you with?

Related Questions

How do you change the background color on MySpace?

just put this in your about me section at the bottom. you can change the 000000 to any color code you want


How do you do the color code on club penguin?

press the colors to change them.


Is there an Action Replay code to change your Pikmin color in Pikmin 2?

No, there is not.


How do you find a wiring diagram for 1982 Mariner 40 EL outboard?

electrical connections from motor to remote controls color code


What is the hex color code for color less or a transparent color?

There is no hex color code for a transparent or colorless color because there is no such color as transparent. Transparent is whatever color the backdrop is. Thus, there is an almost indefinite number of colors that could be considered feasibly transparent... but are not transparent. In other words, there needs to be a "transparent" option to switch any electronic color code setting to transparent.


How to display the text box value in another form using VB.NET?

You can display a textbox value in another form using Vb.NET. Simply by inputing this line of code:'You can put this code anywhere under a Private Sub or Sub''I Will use an example of a textbox named "testabc" and "othertextacbcTestAbc.Text = frmMain.OtherTextAbc.Text'You can replace the "frmMain with the form you are trying to access.


How can the background color for a website be changed using html code?

To change the color, one simply adds a new color code between the and tags. Lists of color codes can be found online at sites like quackit.


Can someone make me an Action Replay Code that lets you change the color of your Pokemon?

No


What is the hex colour code for colour less or a transparent color?

There is no hex color code for that. It is generally handled by a separate setting, for example, in openGL, there is an additional variable along with the hex called the alpha value which controls transparency.


What is the code for inputting a username in a textbox in visual basic 2008 in a form so that it can accept someone to use that form?

You don't need any coding to do this. Instead you can make a label and a textbox and the user can automatically enter text into the box as long as read only is set to false.


What code would let you only use a textbox if something in it?

What exactly are you asking? Are you asking, how can I make a textbox enabled only if there is a word in it.. But how would you type a word in a disabled textbox? If TextBox1.Text.Contains("Hello") Then 'Type the word you want here Button1.Enabled = True 'what you want to happen if textbox1.text contains the word End If All the means is if the word hello is in textbox1 then you can click button1..


What programming2 do you use to change the color and the caption of a user interface objects Visual Basicnet?

Using an example: Place 2 buttons on the form. Clicking Button1's code will change the color and text of Button2. The following code will change Button2's text + color. Button2.Text = "Hello World!" Button2.Forecolor = Color.Blue Place the code under Button1's Click.