Search results

  1. J

    Masking Passwords

    Lee, The blank is good enough. Thank you so much!
  2. J

    Masking Passwords

    I sorry Lee, I forgot to mention that I am in the character dev. Is there something similar available for this environment.
  3. J

    Masking Passwords

    Hi All, I am writing a program that contains the ability to ftp. I am prompting the user for his username and password with a SET for now. However I would like the password to be masked with an * or some other character. Can anyone tell me if there is a way to do this? Thank you.
  4. J

    Another question about Export/Put

    I am writing to a text file delimited by a "|". I have used the export command export delimiter "|" field 1 field 2 ... However this does put quotes around some of the data because of standard form. I went ahead and used a put statement but unfortunately this becomes anoying when...
  5. J

    Using Export to Display Blank

    Thanks for the quick reply Casper.
  6. J

    EXPORT fuction to Display a Blank

    Relatively new to Progress programming. The code I am working with is as follows: DEFINE VAR var1 AS Integer FORMAT "ZZZ" INIT 0 NO-UNDO. OUTPUT TO var1.txt. EXPORT var1 The user would like to the integer to disply as a blank. When I use the display function, it works fine, however when...
  7. J

    Using Export to Display Blank

    Hello, Relatively new to Progress development. Here is a simple example of what I am dealing with. DEFINE VAR var1 AS Integer FORMAT "ZZZ" INIT 0 NO-UNDO. OUTPUT TO var1.txt. EXPORT var1 The user wants the integer to diplay as a blank. When I use DISPLAY, it works fine, but as...
Back
Top