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 Rhinorhino 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 GriffMG

  1. GriffMG

    Is there a FUNCTION or Property to Get the "Complete Address" of a Form Control

    have a look at parent object properties in the help - in the click of a command button on the same page frame messagebox(this.parent.name) should return Page1, and a recursive call to that until you reach the top of the tree would give you what you need
  2. GriffMG

    Any idea how to deal with blank spaces?

    I get examplex not what you are suggesting
  3. GriffMG

    Checkbox added to grid is invisible until clicked

    You might want to double check your sparse setting for the checkbox too
  4. GriffMG

    Persistent error in storing JPG in general field VFP 9.0: OLE error code 0x80040011: Not able to convert object.

    It probably elevates you and loses the drive mapping. unzip locally and run... but check it first - i'm not responsible for what you run in reg files
  5. GriffMG

    Persistent error in storing JPG in general field VFP 9.0: OLE error code 0x80040011: Not able to convert object.

    Windows 10/11 have a different paint program and need a couple of regedits to use general fields...
  6. GriffMG

    Persistent error in storing JPG in general field VFP 9.0: OLE error code 0x80040011: Not able to convert object.

    Are you able to access the files from a machine with an earlier OS ?
  7. GriffMG

    Sorting an array

    ASORT(Texto,,3)
  8. GriffMG

    Include non-foxpro EXE within Foxpro EXE

    You can include an executable within your vfp app and write it to disk - then run it. I do that all the time, but I am not sure you can run it from within vfp without writing it to disk, your os will not see it within the vfp exe
  9. GriffMG

    LEDGER PAGE NO.

    I can't be more specific with the code, without knowing your data structure etc. But you trigger the function on entry to each detail line
  10. GriffMG

    LEDGER PAGE NO.

    really
  11. GriffMG

    LEDGER PAGE NO.

    Do you mean that for each item on the ledger report you want to write back the page number it appears on into the original data? if so, you are looking to run something like this for each detail in the report - in the run on entry property on the detail band function LedgerPageUpdate select...
  12. GriffMG

    Opening and reading from a binary file larger than 2GB

    I think you have two choices, either find a way to split the files using a utility (64 bit presumably) or use VFPa for this particular effort. For splitting take a look here https://stackoverflow.com/questions/31786287/how-to-split-large-text-file-in-windows
  13. GriffMG

    Generate a qr code on a report.

    m.LOFBC = CREATEOBJECT("FoxBarcodeQR") m.BARCODEIMAGE = "" && the code you want in the QR image m.BARCODESIZE = 2 m.BARCODEFILE =...
  14. GriffMG

    PDF to text converter for batch folder processing

    This will be a bit negative. Sorry in advance. Suppliers will give you a full time job keeping up with changes to their system. Forgive me, do not waste your time.
  15. GriffMG

    64 bit replacement needed for Dynazip

    Thus far, I have been using BandiZip, about 18 months ago I did a lot of testing various zip programs with VFPa and that was the fastest. Times change.

Part and Inventory Search

Back
Top