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 bkrike 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: *

  • Users: CJMK
  • Content: Threads
  • Order by date
  1. CJMK

    import of .cls crashes vfp9

    import from .xls crashed vfp Tried appending from .csv, but yields extra rows by cutting off before end of record though why it should do this after a close paren is beyond me.
  2. CJMK

    Cannot get focus on listbox

    Created simple listbox with rowsource and controlsource,one column. It populates from the table of 395 records, but cannot receive focus. Tabbing just skips it. Only three objects on form, others are command buttons included in the class. Combobox with same controlsource (record ID, a 5 digit...
  3. CJMK

    Color whole field in a report regardless of length of text in field

    Making badges for a conference (US Go Congress) I want the person's name on the top with a color background extending all the way across the badge. Ideally with the name centered, but that's hard in a proportional font (Using ariel) If the reporter sees spaces, it stops printing the color. I can...
  4. CJMK

    for endfor numeric increment turns to character after 9

    Here is the code PARAMETERS fn,numflds CREATE TABLE (fn) (A c(15)) i = 1 FOR i = 2 TO iif(numflds > 26,25,numflds) thisfld = CHR(i + 65) && B etc. ALTER table (fn) ADD column(thisfld) C(15) ENDFOR IF numflds > 26 FOR i = 27 TO numflds thisfld = CHR(65 + INT(i/65) + char(64 + i)...
  5. CJMK

    select {open filename] works fine native, but gives 107 operator operand mismatch in .exe

    Had similar issue on opening table, getting index error, and got around that by reindexing at first open. Now a very short time later, in init, I select it, and it gives me the 107. I am compiling with innosetup. It also is not finding another table and forcing me to locate it (right where it...
  6. CJMK

    index error occurs only in executable

    Program works fine in VFP9, but causes 114 error (Index does not match the table. Delete the index file and re-create the index.) when compiled into .exe by innosetup. If that had worked, of course I wouldn't be here. Deleted cdx and rebuilt. zapped table and appended from backup didn't work...
  7. CJMK

    sql statement throws 1707 (cdx not found) error but cdx is present and OK

    Note: very simple system to provide convenient management information from a single table obtained by combining data from three tables using sql. I have: Made sure the cdx is indeed present and functional Built project, exe, and used inno setup to compile install Works fine on my win 10 computer...
  8. CJMK

    array reference treated as program call -- but only in exe version

    Code below The procedure is in a proc library, and has run fine for 15 years or more. It gets a filedate and time from an ADIR array from which it creates timestamps of various sorts. The opperant code is m.timestamp = DTOC(downloaded(1,3)) + downloaded(1,4) Running the exe directly, or doing...
  9. CJMK

    Status bar blank

    Suddenly, the status bar (in main vfp IDE shows nothing! Restart is no help. Menu items show as I mouse over them, but record # and name of table not showing. Have tried resetting message, notify, set status and set status bar to no avail.

Part and Inventory Search

Back
Top