addint a word to input box data

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • zaknbou
    Forum Member
    • Nov 2005
    • 63

    addint a word to input box data

    I figure it out how i can i capture the input box and write it to .txt file on my desktop as below but if i want to add another word to the text for example
    1 apple juice , 1 is entered by the user and apple juice will automatically be added to the file



    --read the Text from Input Object
    SInputText = Input.GetText("Input1") ??apple juice ??;
    SInputText2 = Input.GetText("Input2");


    --Write it to a textfile
    TextFile.WriteFromString(_DesktopFolder.."\\MyFile .txt", SInputText .. "\r\n", true);
    TextFile.WriteFromString(_DesktopFolder.."\\MyFile .txt", SInputText2 .. "\r\n", true);
    Attached Files
  • mwreyf1
    Indigo Rose Customer
    • Aug 2004
    • 417

    #2
    Why did you start a new thread for the same issue/problem?

    It can be very confusing for anyone when trying to help if your going to keep opening a new thread every time you have another question about the same problem.

    You should keep using the original thread you first opened if it is for the same application issue/problem.

    As to your question...

    To fire that off you could put your code into a button named something like "Update Order" that the user could click before clicking the "Send"
    Last edited by mwreyf1; 02-27-2009, 03:08 PM.

    Comment

    • zaknbou
      Forum Member
      • Nov 2005
      • 63

      #3
      aha ok sorry but the confusing issue ...
      dear sir i didn't get you could you please be more specific

      Comment

      Working...
      X