Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. HarryB

    Including and displaying JPG files

    FoxGolfer, I would set up an "Image" folder in the application's directory tree, and place the JPG file in that image folder when the photo was added, and give the JPG file a name that corresponds to the unique key that is associated with that photo, (IE employee ID, Part No, etc.). When the...
  2. HarryB

    SELECT COUNT(*)

    You can use: SELECT COUNT(*) FROM cursorname INTO ARRAY laCnt You'll get the number of active, (not deleted), records in the array.
  3. HarryB

    What is the preferred way to define variables?

    I have defined a class, (global object "goGV"), for my global variables with some standard ones defined in the class. In my main program, I create the object and add properties to the object for the public variables I need. HTH, Harry
  4. HarryB

    is the file open ?????

    hawkieboy, Try this: ++++++++++++ * IsFileOpen.prg LPARAMETERS tcFileName #DEFINE TRUE .T. #DEFINE FALSE .F. #DEFINE MB_ICONSTOP 16 && Critical message #DEFINE F_READWRITE_UNBUFF 12 #DEFINE F_OPEN_FAILURE -1 LOCAL llRtnVal as Boolean...
  5. HarryB

    windows user name?

    Try "? SYS(0)"
  6. HarryB

    Convert RPG data

    Packed decimal fields contain two digits per byte, (except for the last which has a "zone" character and the last digit). The zoned decimal fields are all digits except for the last byte. If the amount is credit, the last byte will contain the last digit as well as a "zone&quot...
  7. HarryB

    Convert RPG data

    I have converted many files from the IBM midrange S/34, S/36, and AS400, (RPG files). If there are no "packed-decimal" fields, or "signed-numeric" fields; it can be as simple as copying the EBCDIC file to an ASCII file, then importing into a .DBF file. If there are...
  8. HarryB

    PUBLIC, PRIVATE & LOCAL

    Instead of using a variable, why not create an object in your root program, then add properties to it when/as needed, and refer to them as MyObject.Variable1, etc.? The object would remain until released or the program ends. Harry
  9. HarryB

    installshield express - create a "RUN FROM CD" version

    I had this same requirement last year, and ended up using VFP 6.0 to get it done.
  10. HarryB

    Picture clause for password

    Is there a way to display an asterisk (*) instead of the keyed character in a password field? TIA, Harry
  11. HarryB

    Clipper 5.2E app in W2K

    I'm getting ready to install a Clipper 5.2E application on a Windows 2000 machine. It has been running for years on a W/98 machine. I am new to W2K and am not sure how to set up the DOS environment for the app. Any suggestions? Thanks in advance, Harry

Part and Inventory Search

Back
Top