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 Chriss 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. GriffMG

    Sorting an array

    ASORT(Texto,,3)
  2. 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
  3. 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
  4. GriffMG

    LEDGER PAGE NO.

    really
  5. 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...
  6. 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
  7. 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 =...
  8. 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.
  9. 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.
  10. GriffMG

    Simple VFP App to reimplement in Android... anyone got any advice...

    If anyone is interested, the language, well environment, is Kotlin... looks like an ok thing, has strings and bools and all that. Gone initially for a google course, the text is good but the videos are H O R R I B L E, too much yeah haaa! for me. The text is ok, but there are things that should...
  11. GriffMG

    Set a TAG for a field programmaticaly

    It's probably not related, but your example has the table opened read only?
  12. GriffMG

    Newbie Report Designer Question: Changing Report Label content based on Checkbox Value in table

    I use both methods, depending on the difference in length between the two labels, when they are both small, and similar in size, it can be harder to 'debug' later because one will be over the other - if one is much longer it is easy to spot
  13. GriffMG

    Simple VFP App to reimplement in Android... anyone got any advice...

    @trial03 The app is in VFP just now, not trying to run that on Android, was thinking it's simplicity would make a good target for rewriting in something for Android. A little math, a little timer and some text - wrapped around a case statement. @Mike Pretty sure I can handle the coding, what...
  14. GriffMG

    Newbie Report Designer Question: Changing Report Label content based on Checkbox Value in table

    Don't use a label, use a text control and bind it to =iif(table.chkbox,"Yeah","Nawh")
  15. GriffMG

    Simple VFP App to reimplement in Android... anyone got any advice...

    I don't develop much new stuff these days, but I have thrown together a simple app to help myself exercise my hand after a recent procedure. One form, two buttons and a few labels... thinking it would be a really good first app for Android. I think I need some kind of on-line course in Android...
  16. GriffMG

    VFP Issue with date selection 1/1/25 returns 1/1/1925

    Set CENTURY may also be significant
  17. GriffMG

    Failure to pass data to form

    could you be having a SET CENTURY thing... is this only happened after the new year?
  18. GriffMG

    Running Visual Foxpro on local Windows 10 machines, what if any adjustments are needed if I upgrade to Windows 11?

    NAS may have issues... if it uses SMB1 run code in a bat file as admin... dism /online /get-featureinfo /featurename:smb1protocol | find "Status : Disabled" && ( echo Enabling SMB1Protocol DISM /Online /Enable-Feature /All /FeatureName:SMB1Protocol ) || (echo SMB1 Currently Enabled) dism...
  19. GriffMG

    Need to build web service, pronto :)

    So you know, each rdp client needs a unique place to store temp files etc. This isn't a consideration for a normal pc client.

Part and Inventory Search

Back
Top