Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Re: button

    "Rob" <rob@thisisnotarealaddress.com> wrote in message
    news:4e3801c3415d$d8825550$a401280a@phx.gbl...
    > I just started a new job and am diving back into Access
    > after a long break. When I would use Access (2000) at my
    > last job and was creating a form, a wizard would pop up
    > whenever I placed a button asking what I wanted the button
    > to be tied to. Now the wizard doesnt pop up and I cant
    > seem to find a way to turn it on. The ASSistant tells me
    > the form has to be linked to a table or query, but I never
    > had to before. I linked it to a dummy table to ee if it
    > worked and it still didnt pop up. Does anyone know how to
    > turn it on?
    The second button down on the designer toolbar should be the toggle to
    turn the control wizards on and off. Just "depress" it and you should
    get the wizards back.


    Rick Brandt Guest

  2. Similar Questions and Discussions

    1. Dynamically adding Dropdown, Text Box, Add Button and Remove Button
      Hi Everyone, I am facing a poblem in creating a row which contains following scenario in ASP.NET |DROP_DOWN_LIST | |TEXT_BOX| ...
    2. Opening a new window with a link button button column on a datagrid
      Hi all, I have a datagrid with a button column set as a link button. When clicked I want it to open a new window in which to display the results...
    3. HELP:Swapping spirtes for a button & Randomly activating a button [ newbie ]
      Hi - I have two questions - hope the cross posting is acceptable. 1. I have made some buttons using the mouseenter and leave behaviours that...
    4. How to select a button in a matrix of push button (Cocoa) ?
      The radion button was created with Interface Builder. How to make a default (selected) button in this matrix ?
    5. JavaScript Access to Button in form tags (webcontrol or html button)
      Hello, I have a button called LoadBtn, which exists in <form name="Form1" runat=server></form> tags. I then have javascript loaded outside of...
  3. #2

    Default button

    hi all,

    if i want to do a loop and auto create button.
    in asp.net then button can use array or setting index?

    ex:
    <%
    for(int i = 0; i <= 10 ; i ++)
    {
    %>
    <asp:Button id="btshutdown<%=i%>" runat="server" Text="Shutdown"
    Enabled="False"><asp:Button>
    <%
    }
    %>

    then have error...how can i do?


    yysiow Guest

  4. #3

    Default Button

    Hello,
    I am new to Director, and I was wondering if there is a way to keep a
    button checked or down until the user presses another button. I am used
    to working with Authorware, and I know there is a "Checked" state, but I
    am unfamiliar with Director's capabilities.

    I appreciate any help!

    Thanks,
    Lisa

    Lisa Brownlee Guest

  5. #4

    Default Re: Button

    The only 'built in' button toggle support is for the simple tool window
    check, radio and oval buttons, you can read and set te hilite of these
    members.

    For bitmap based buttons Lingo Behavior will have to be used to control
    the action, there's probably afactory one in the library window, look
    for radio button actions.


    Here's a little sample bahavior you could assign to a group to get radio
    button action. ( untestd, typed in on the fly)

    This scheme expects 2 versions of a bitmap button

    "basename Normal" and "basename Hilted" change the basename part pf the
    member names to whatever you want as long as the second word of the name
    os not changed.


    --- the behavior

    on mouseUp me
    baseName = sprite(me.spriteNum).member.name.word[1]
    sprite(me.spriteNum).member = baseName && " Hilted"
    sendAllSprites #groupUnHilite, me.spriteNum
    end

    -- all other sprites with a groupUnHilite will unhilite
    -- when any is clicked
    on groupUnHilite me, clickedSprite
    if me.spriteNum <> clickedSprite then -- not sent by me
    baseName = sprite(me.spriteNum).member.name.word[1]
    sprite(me.spriteNum).member = baseName && "Normal"
    end

    -- to maintain multiple groups one could create a second version of this
    behavior, just changing the 2 references to 'groupUnHilite' to
    'groupUnHilite2'
    JB Guest

  6. #5

    Default button

    als je op een button klik zou ik graag hebbne dat deze beweegt maar hoe doe
    ik dat?


    Patricia Peeters Guest

  7. #6

    Default Re: Button

    You have two options:
    Try to use an Iframe that is populated when the button is clicked.
    Resubmit the page and be refreshed with the data that you select from the
    table.

    ..bil


    "Berry B" <dagerik@stud.ntnu.no> wrote in message
    news:4020632b$1@news.broadpark.no...
    > Hi!
    > Is it possible to make a button that executes a php script? I need a
    button
    > that prints out all the entris from a table, and I would very much like it
    > to print it on the same page as the button is located. Any ideas?
    >
    > Tnx!
    >
    >

    Hi Ho Guest

  8. #7

    Default Button

    Hi!
    Is it possible to make a button that executes a php script? I need a button
    that prints out all the entris from a table, and I would very much like it
    to print it on the same page as the button is located. Any ideas?

    Tnx!


    Berry B Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139