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 strongm 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. harryjr

    Macro Substitution

    How do I use macro substitution in the COPY FILE command. I want to copy a TEMPLATE.XLS file to one named the CURRENT DATE. lcflnm = DTOC(DATE())+".XLS" COPY FILE template.xls TO &lcflnm (does not work) COPY FILE template.xls TO (lcflnm) (does not work) Can anyone resolve this? Thanks, Harry
  2. harryjr

    Documenting a VFP6/7/9 Application

    Mike and Tamar, I'll take your advice and create a stand-a-lone DOC. Harry
  3. harryjr

    Documenting a VFP6/7/9 Application

    Mike, My reason for the DOCUMENTATION is not for me. I'm a very old programmer who will most likely pass this Application to another very shortly. I just wanted to make it easier for him to initially be able to follow the sequence of the process until he becomes familiar with it. Thanks to...
  4. harryjr

    Documenting a VFP6/7/9 Application

    Griff, What I was hoping to produce is a TREE DIAGRAM that shows ONLY procedures (functions) that are called from a higher level procedure. I have a very large application that I want to document for future reference by adding text to the heading of each individual procedure identifying the...
  5. harryjr

    Documenting a VFP6/7/9 Application

    mm0000, Thanks for the response but that application does not produce a TREE of the procedures. Mike Lewis, I had already tried that WIZARD but is doesn't produce what I am looking for. Thank you for your response. Harry
  6. harryjr

    Documenting a VFP6/7/9 Application

    Does anyone know of an existing Application that will document a VFP6/7/9 Application providing a "Program Calling" chart (ie, starting at MAIN program list all the programs called and where each is called from)? Thanks, Harry
  7. harryjr

    Appending Memo Notes

    When APPENDING MEMO from <file> you must use the file's name and extension. harryj
  8. harryjr

    SYSMENU FUNCTIONALITY IN DEFINED MENU

    zog1 Perhaps you misuderstood my question. I want to DEFINE a MENU (ie, I select the MENU NAMES and corresponding ACTIONS) yet have the SYSMENU Functionality. Is that possible? If so, how? Thanks for response, harryjr
  9. harryjr

    SYSMENU FUNCTIONALITY IN DEFINED MENU

    How do I achieve the FUNCTIONALITY of the SYSMENU in a DEFINED MENU. I'm defining the MENU because I want to be able to set FONT Attributes. Specifically - (1) Having the MENU displayed while in the Command Window - accessible by depressing the ALT Key (2) Returning to the Command Window...
  10. harryjr

    Font Size in MENUs

    Is there any way to change the DEFAULT Font size of MENUs created with the MENU WIZARD? Harry
  11. harryjr

    &quot;ESCAPE&quot; LASER PRINTER LIBRARY

    Anyone out there still using (or used) Pinnacle Publishing's ESCAPE Laser Printer Library? I need to find out if there are any NEW *.fnt files for the newer HP LaserJets. Pinnacle says the product line was sold to OGG SOFTWARE but I can't find them on the net. TIA Harry
  12. harryjr

    PAGE UP/PAGE DOWN HANGS EXE

    Have converted a FPW 2.6a Application to VFP (i.e., compiled not rewrote). Application contains multi screens - each with multi gets controlled by a READ CYCLE MODAL. In VFP 5.0, Applications HANGS UP when attempting to CYCLE thru the Screens using PAGE UP/PAGE DOWN keys. MSKB acknowledges...
  13. harryjr

    User Wants To Stay On A Full Text Box Until They Press The Tab Key?

    drozenkranz, Modify code submitted by JIMSTARR as follows: IF LASTKEY()!=9 WAIT WINDOW &quot; You must use <TAB> Key to Exit this field &quot; RETURN 0 ENDIF Harry
  14. harryjr

    build .exe

    EKC BUILD EXE is NOT available in runtime. Harry
  15. harryjr

    User Wants To Stay On A Full Text Box Until They Press The Tab Key?

    drozenkranz, Check for LASTKEY()=9 in VALID of your TEXTBOX. Harry
  16. harryjr

    SEARCH AND ADD IN COMBO BOX

    Chris, Would like to try your class combo. Email address below. Thanks for the response. Harry hriley9@bellsouth.net
  17. harryjr

    SEARCH AND ADD IN COMBO BOX

    Is there any way to use a COMBO BOX that will (1) permit use of an ARRAY* for SOURCE (2) incremental search as each CHARACTER is input (3) show &quot;hit&quot; (hi-lite found item in drop down list) (4) if entered item not in ARRAY - ADD item to ARRAY * The DATA for the LIST is in a...
  18. harryjr

    Report Hangs System

    casajarm, Basically - I need more info. Does the EXE &quot;hang up&quot; just as the Report is to be printed? Do you have an error trap routine in the App? What does it report? Is the REPORT included in the Project? If yes, have you tried NOT INCLUDING it? harryjr
  19. harryjr

    Not Found at End of Search

    David, In a Foxpro program I search for a character string in a large Memo field by stuffing the KEYBOARD buffer with &quot;Ctrl+F&quot; (KEYBOARD &quot;{Ctrl+F}&quot;), then stuff the cstring to find (KEYBOARD &quot;cstring&quot;), then move the cursor to the &quot;FIND&quot; Button (KEYBOARD...
  20. harryjr

    Not Found at End of Search

    jonscott, Thanks for the info. For now I've created a work around using the AT() Function. I would still like to know if it is possible to somehow EVALUATE (within a program) the return &quot;Not Found&quot; for a Ctrl-F search. Harryjr

Part and Inventory Search

Back
Top