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 Wanet Telecoms Ltd 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 paul060769

  1. paul060769

    Data Corruption on table in Visual Fox Pro 6.0

    I've run into this problem before because I think we have some bad cabling in our network or sometimes data gets corrupted when it is compressed and uncompressed. Anyway, I have this program that takes the bad characters [CHR(0)] out. Here is the code: *** This program goes through every...
  2. paul060769

    Grid Header Caption

    There is a problem with these solutions. Note: I don't have VFP7. When I scroll to the right or left, the label moves with the column. But, if the label ever goes out of sight, it does not appear when I scroll back over the column. Any ideas? Paul
  3. paul060769

    Descending index on a view

    Thanks guys. Great answers. FYI - INDEX ON exp1 TO <file> DESCENDING ERROR!!! This is a view. Can't seem to create any .cdx for it. But, you guys did help us figure out the answer. INDEX ON exp1 TO <file> SET ORDER TO 1 ASCENDING or SET ORDER TO 1 DESCENDING Thanks for the help... Paul
  4. paul060769

    Lost Focus event only under certain circumstances

    1. Create a property for the form called DoMyCode or something like that. 2. Put the code that you want executed when the user leaves the first textbox into a procedure or method called MyCode. 3. In the lostfocus event of the first textbox put this code: Thisform.DoMyCode = .T. 4. Place this...
  5. paul060769

    Descending index on a view

    I have a grid that displays a local view. I want to be able to index the records of the view based upon a field (lastname) in ascending OR descending order. I can't use the ASCENDING or DESCENDING clause in the INDEX ON... command. Thanks... Paul

Part and Inventory Search

Back
Top