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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by kimsue

  1. kimsue

    Visual Foxpro and PDF forms containing data

    Thanks, I WAS able to get to the thread and I did sign the petition. However, I don't know if I want to continue with my new Visual Foxpro application after reading the scoop on Visual Foxpro. I guess I was a little slow in getting the information. It's been a while since I've been on any...
  2. kimsue

    Visual Foxpro and PDF forms containing data

    I couldn't get to that thread and have been unable to figure out why. However, I WAS able to get to the Visual Foxpro Zone and read about the end of Visual Foxpro. Now, I have a NEW question. WHAT DO WE DO WITH ALL OUR VISUAL FOXPRO APPLICATIONS? I am NOT PLEASED:( I have spent years...
  3. kimsue

    Visual Foxpro and PDF forms containing data

    Hi there, I am working on an application that would be a lot better if I had the ability to capture data from pdf forms. I am currently looking at Adobe Acrobat 8 Professional. It looks as if this program allows exporting of data. Does Visual Foxpro (or any add-on programs) offer this...
  4. kimsue

    Oddball question - Windows Installer started unexpectedly

    This is an odd question. If anyone has any suggestions (I'm not expecting the exact solution), please let me know. I have many applications that are currently running in Visual Foxpro 9.0. These applications were updated from Visual Foxpro 7.0 (and previously Windows 2.6 etc etc for 22...
  5. kimsue

    Is there a function that converts numeric value to words?

    Thanks, Scott. It seems like a logical function that would enhance Visual Foxpro:)
  6. kimsue

    Is there a function that converts numeric value to words?

    I have never had the need to print words for numbers, but I need to print checks now. I want to print One thousand four hundred fifty two and 22/100 or something similar for a numeric value of 1452.22 Is there a Foxpro function that does this? I can't seem to find one. Thanks for any help.
  7. kimsue

    question on INLIST with MEMO field - Foxpro 9.0

    Thanks, Mike. You are correct. I just signed on to post the solution. I was using the old code. It has been updated in Foxpro 9.0. LOCAL i PUBLIC aWizFList DIMENSION aWizFList[1] =AFIELDS(aWizFList) FOR m.i = FCOUNT() TO 1 STEP -1 IF INLIST(aWizFList[m.i,2],"G","M","U") &&Memo field...
  8. kimsue

    question on INLIST with MEMO field - Foxpro 9.0

    Thanks, Scott. I have never used the debugger; however, I know the error occurs on the 7th line of the above code and only occurs when there is a memo field. I get the same error when I try to run the FIND (this is in the FOXPRO 7.0 WIZBTNS library-not my code) on any form that is using a file...
  9. kimsue

    question on INLIST with MEMO field - Foxpro 9.0

    The following method successfully eliminated MEMO fields from the SEARCH LIST in Visual Foxpro 7.0. In Visual 9.0, I get the error "Operator/Operand Type Mismatch" on the line beginning with.... IF INLIST..... (line 7) when a memo field is in the file. Anybody have any idea WHY? Thanks...
  10. kimsue

    error when running _reportoutput In foxpro 9.0

    fyi... In case anyone else has this problem... This is caused by a Foxpro bug ..... Remove SET FIXED ON from code and the error disappears. **~=================<CASE SUMMARY>==================~** PROBLEM: Error "At least one required index tag is missing from the configuration table."...
  11. kimsue

    error when running _reportoutput In foxpro 9.0

    I had an extra line (above) that isn't in the code. This is the code and the error is on the 2nd line ...do (_report... CODE.... loListener = .NULL. do (_reportoutput) with 5, loListener loListener.TargetFileName = forcepath('Paymastv.html', '&cfi') lOListener.QuietMode = .T. wait...
  12. kimsue

    error when running _reportoutput In foxpro 9.0

    Hello there, I am attempting to convert my Visual Forpro 7.0 applications to Visual Foxpro 9.0 so I can take advantage of the new reporting features. Apparently, I don't have a good understanding of how these new functions work yet. I am getting the following error: At least one required...
  13. kimsue

    question on order of output table when no order is chosen

    FROM rm3det ; LEFT JOIN rm3head ON rm3det.recnum == rm3head.recnum; where That worked. Thank you!
  14. kimsue

    question on order of output table when no order is chosen

    Thanks for your help. I'll use the variable names for speed and the LEFT JOIN that Borislav suggested. In this particular case, I want NO ORDER (order of entry). I output to a table instead of cursor because more things happen to the file after the selection. I had very similar code in the...
  15. kimsue

    question on order of output table when no order is chosen

    Hello there, I have 2 files (rm3head and rm3det) both ordered by recnum. There is a relationship set into rm3head (recnum field ties multiple detail records to one header record). Can anyone tell me why the output file in the select statement below would not be in the order of the records in...

Part and Inventory Search

Back
Top