Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 3 of 3

Thread: input question

  1. #1
    inferno Guest

    input question

    i am a begginer and i am wondering how to make this work:

    when you run the quiz a input panel displayes "enter your name"
    how to make the entered name (shown of course) stay on one place so you can't change it anymore

  2. #2
    Join Date
    Oct 2003
    Location
    West Monroe, LA
    Posts
    294
    After the name has been entered disable the inputbox.
    Input.SetEnabled("Input1",false);

    or

    Once the name has been entered when the inputbox gets focus use:
    Page.SetFocus("Button1");

    good luck

  3. #3
    Join Date
    Feb 2004
    Location
    Cowfields of Germany
    Posts
    617
    i did something similar to that but i used an input dialog and then called the results to a label.

    like this...

    strName = Dialog.Input("Vehicle Maintenance Test Module", "Please Enter your Name", "Your Name Here!!!", MB_ICONQUESTION);

    and then this...

    Label.SetText("user_label", strName);

    i did the same for the test name.

    hope this helps

    chris

Similar Threads

  1. Input object loses focus after Internet
    By dthompson16 in forum AutoPlay Media Studio 5.0
    Replies: 6
    Last Post: 08-26-2004, 07:55 AM
  2. Input object graying out
    By dthompson16 in forum AutoPlay Media Studio 5.0
    Replies: 7
    Last Post: 07-28-2004, 07:28 PM
  3. Lorne’s two great input validation scripts
    By csd214 in forum AutoPlay Media Studio 5.0
    Replies: 2
    Last Post: 06-09-2004, 09:13 AM
  4. Function: Test Whether An Input Object Is Empty
    By Lorne in forum AutoPlay Media Studio 5.0 Examples
    Replies: 0
    Last Post: 06-08-2004, 02:18 PM
  5. multiline input table apocalypse
    By dulux1309 in forum AutoPlay Media Studio 5.0
    Replies: 1
    Last Post: 04-09-2004, 05:28 AM

Posting Permissions

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