Search Result

Collapse
9 results in 0.0060 seconds.
Keywords
Members
Tags
buttons
  •  

  • Djiber
    started a topic Buttons visibility

    Buttons visibility

    I have app in which I would like to use buttons as an Drop Down menu.

    Code:
    private void button16_Click(object sender, EventArgs e)
            {
                    button1.Visible = true;
                    button2.Visible = true;
                    button3.Visible = true;
                    button4.Visible = true;
                    button5.Visible = true;
                    button6.Visible = true;
    ...
    See more | Go to post

  • dorito
    started a topic CMFCButton and CButton behave differently
    in C

    CMFCButton and CButton behave differently

    I changed my CButtons to CMFCButtons and the behavior is different when they are BS_OWNERDRAW:

    void CPlayerPane::On DrawItem(int nIDCtl, LPDRAWITEMSTRUC T lpDrawItemStruc t)
    {
    CDC *pDC = CDC::FromHandle (lpDrawItemStru ct->hDC);
    int s = (lpDrawItemStru ct->itemState & ODS_SELECTED);


    With CButtons, OnDrawItem() gets called only once with (s != 0), indicating that the user has clicked on...
    See more | Go to post

  • How to create more buttons when one button is clicked?

    Windows Forms Applications - Visual Studio C# 2011

    Hello

    First of all, I am really new to C#.

    The initial form will have 1 button named "Add" and 1 text box.

    I would like to create a program that does the following: when the button "Add" is clicked, if there is any text written in the text box, a button will be created, under the "Add" one with the name that appears...
    See more | Go to post

  • Anil Kumars
    started a topic How to make a button unclickable?

    How to make a button unclickable?

    Hi,

    I have a few buttons in a webpage. I want to dynamically disable the ability to click on one button. So the button is clickable only if a certain condition is met. Condition is the value of a variable like date or time. Can any one tell me how to do this with javascript?

    Thanks in Advance
    See more | Go to post

  • How 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";
    ...
    See more | Go to post
    Last edited by acoder; Feb 17 '11, 10:22 AM. Reason: Please use [code] tags when posting code

  • I need to know how to create the 2 exercises in this webpage. I attached the address.

    http://www.eclecticeng lish.com/grammar/PresentSimpleTo Be1A.html
    See more | Go to post

  • xxpinkyxx
    started a topic Javascript, Buttons HELP?

    Javascript, Buttons HELP?

    I have created a form asking some basic questions eg
    Name
    Address
    Length
    Type
    after the user has enetred there details they need to click on a button, this button needs to access the details that have been entered and provide an output of the user's preferences.
    I have completed the form but am having trouble getting the button to work and provided user preferences, any help would be really gratefull?...
    See more | Go to post

  • brian210
    started a topic Using multiple buttons with PHP
    in PHP

    Using multiple buttons with PHP

    I am currently trying to make a four question quiz. Each question is on a new page. There will be a previous button and a next button to take the user to the previous and next question respectively. There will also be a save button to save the current answer selected for the questions so far. Finally, I will have a submit button that will submit all the answers of the quiz and give back a score. I have to use these buttons, and I have to have my...
    See more | Go to post
    Last edited by Dormilich; Oct 13 '09, 07:46 PM. Reason: Please use [code] tags when posting code

  • poisonvm
    started a topic Form Action

    Form Action

    Hi i have the following code;

    Code:
    <br>FanIn:
    <form action = "faninon.php " method ="post"> <input type = "submit" value="ON"/> </form>
    <form action = "faninoff.php " method ="post"> <input type = "submit" value="OFF"/> </form>
    </br>
    this display the buttons one above the other, how...
    See more | Go to post
Working...