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. JasonZ10

    Changes to class not showing up in .exe, but working when I DO *.prg

    I appreciate all the suggestions, but no luck unfortunately. Is there anywhere else classes are cached perhaps? Or are compiled classes grabbed from somewhere outside of the project folder when the .exe is built? Any other ideas to try would be very much appreciated! I'm assuming as an...
  2. JasonZ10

    Changes to class not showing up in .exe, but working when I DO *.prg

    Hi there, I made some changes to an old class library on a piece of software that I work on, but I cannot get the changes to take effect in the compiled .exe. The changes do however show up when I run the program via 'DO main.prg' Does anyone have any idea why this might be happening? The...
  3. JasonZ10

    Index on (variable)?

    Great, thank you! I appreciate the explanation
  4. JasonZ10

    Index on (variable)?

    Hi, I'm making a quick function to find and replace occurrences of data within tables (procedure findreplace(table, field, find, replace)) to simplify some scripts I'm working on, but I can't figure out a way to index on the passed in field. I figured "index on (variable) to index" would work...
  5. JasonZ10

    Using COUNT inside SCAN?

    Great, thank you very much mm0000 and Mike Lewis, these are exactly the types of solution I was looking for. mjcmkrsr, I appreciate your help! The code you shared is a very resourceful way to solve my issue. I'll definitely be using it/something similar on my larger datasets, and implementing...
  6. JasonZ10

    Using COUNT inside SCAN?

    Hi, I'm trying to modify duplicate entries in a Visual Foxpro standalone DBF Table, and the simplest/most efficient way I could conceive is not working. Here is the code: select tablename scan tempid = userid COUNT TO tjz FOR tempid $ tablename if tjz > 1 replace userid with...

Part and Inventory Search

Back
Top