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 Chris Miller 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. Paulm52

    Invalid subscript reference (config problem?)

    Yes, that does it! An index as simple as "i" apparently conflicts with internal Visual FoxPro variables. If you are right and "i" conflicts with a work area, that feature must be a holdover from older versions of FoxPro. Thanks so much. I won't use single-character variables again in FoxPro!
  2. Paulm52

    Invalid subscript reference (config problem?)

    No, the array name isn't significant. I've renamed the array a number of ways. And I reduced the program to this sample that fails on one machine. I've restarted VFP and rebooted my machine as well. If I get desperate I'll re-install VFP. But I really don't want to go through that effort...
  3. Paulm52

    Invalid subscript reference (config problem?)

    I'm having VFP problems with code using arrays. On one machine, the following code runs successfully: DIMENSION array[20] FOR x = 1 TO 5 array[x] = RAND() ENDFOR clear ?? array[1] ?? array[2] ?? array[3] ?? array[4] ?? array[5] ? FOR i = 1 TO ALEN(array) ?? array[i] && sometime...

Part and Inventory Search

Back
Top