//Just change the borderstyle as i did below. I used this as if the picture boxes were buttons.
private void PictureBoxMouse Over(object sender, EventArgs e)
{
unselectBox(thi s.displayPanel) ;
try
{
PictureBox picBox = (PictureBox)(se nder);
picBox.BorderSt yle = BorderStyle.Fix ed3D;...
Search Result
Collapse
9 results in 0.0036 seconds.
Keywords
Members
Tags
-
How to Highlight Picture Box c#
-
james lancefiel started a topic How do we get this confirm box to reset the radio buttons when cancel is pressed?in JavascriptHow do we get this confirm box to reset the radio buttons when cancel is pressed?
Code:<html> <head> <title>Exam entry</title> <script language="javascript" type="text/javascript"> function validateForm() { var result = true; var msg=""; if (document.ExamEntry.name.value=="") { msg+="You must enter your name. \n"; document.ExamEntry.name.focus(); document.getElementById('name').style.color="red";
-
Kelly Warden started a topic How to create a button to open up records in a datasheet by double clicking?in AccessHow to create a button to open up records in a datasheet by double clicking?
I have a rather complex form with a listbox. I would like to be able to highlight a record and view in dataform. Unless there is a way to make the listbox look like the datasheet. The way it comes back now is all together. I would need a scroll bar.
Any suggestions? -
Expression Help
I have a query set up with a list of records with check box fields, Text boxes and one text field with numbers.
I used this expression to get the sum total of [Text box with numbers] per total records by counting [Text Box A]
=Sum([Text Box with numbers])/Count([Text Box A])
80/21=3.81
Now I want the total of [Text box with numbers] per records with [Check Box A] checked.... -
how do i make text wrap in a text box, not textarea
Is it just a simple css or is it more complicated with javascript, etc. I want to limit a description input to 500 characters. <input type="text"> makes it easy with maxlength="500" but the text doesn't wrap. I'd rather write a function for limiting a textarea to 500 chars than a function for adding line breaks in a text box. SO, is there an EASY attribute to wrap text inside a text box? -
transparent text within a coloured box
Hey guys, not sure if this is possible with css, but I have a photographic background for a website, and would like to create text that is completely transparent so that the background shows through each letter.
The letters will be contained within a white box. I don't think this is possible (I've tried a couple different ways I can think of) but can anyone let me know definitively?
Cheers,
James -
strange behavior in Windows COMBOBOX
I have a COMBOBOX of style CBS_DROPDOWN .. i.e. the edit area is supposed to be editable. [And indeed it is editable by interactive typing into it]
What I've noticed is that I can control the text shown in the edit area when I first create the COMBOBOX with SetWindowText (hwnd, "Hello There").
However, after the user has selected an item from the drop down list, I can no longer do SetWindowText() to control... -
Combo box affects values in another combo box
If I have two combo boxes (Combo1 & Combo2) and when a certain value in Combo1 is selected, the values in Combo2 that correspond with that value will show, and the rest will be hidden.
For example, if I wanted the values "1" and "2" in Combo1, and then "a", "b", "c", "x", "y", "z" in Combo2. When "1" is selected, "a", "b"... -
Combo Box to List all Future Dates
How Do,
Is there any way to get a drop down menu to show all dates into the future, without entering them into a table beforehand?
I really don't want to use the calendar control, but I need to be able to enter any date in the future.
Cheers,
NDayave