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 derfloh 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: *

  • Users: tomk3
  • Order by date
  1. tomk3

    Combobox not populated with array

    Sorry to jump in, I think there is oform.saveas(cFilename) to save a form in code to modify it later
  2. tomk3

    cloud storage privacy concerns

    Hi, in Germany we have strict dataprotection rules, for example data should be on german (or at least EU) servers if they contain personal data (hard to be sure that not) we found IONOS and their hidrive to fulfil that, in addition with internal encryption and VPN of course. For backup...
  3. tomk3

    Netjson V1.03

    Many pictures without explanation :-( What is the advantage to https://github.com/VFPX/nfJson or https://github.com/Irwin1985/JSONFox ?
  4. tomk3

    NetBarCodeV1.06 Zxing

    what is the advantage compared to famous https://github.com/VFPX/FoxBarcode (with FoxBarcodeQR) or https://github.com/atlopes/zintbarcode ?
  5. tomk3

    Searching ACTIVE-X for video capture with time-Shift

    Hello Chris, thanks for your answer, taking chunks is an option. Its a security solution and we must supply existing cams (USB / IP) and we have to have access to the video to show and react on it in our programs (take snapshots with defined names,...) Timeshift should be "buffering" , so make...
  6. tomk3

    Searching ACTIVE-X for video capture with time-Shift

    Hello to all, i am looking for an active-x / dll if possible to be used in vfp without ".Net connector" which can capture video from USB and IP-cams and can do timeshift rewind and playback while continue capture, no audio necessary) It seems to be that the viscom products do not have...
  7. tomk3

    Variables: NULL vs RELEASE

    I remember a long, long time ago in a vfp version far, far away we had trouble with createobject("Excel.application"), ... when trying to release oexcel without setting it to .null. first. So we do this always
  8. tomk3

    Visual foxpro matrix framework

    I agree. Since Dbase and clipper we have a set of librarys (later classes, too) , strict internal rules for naming,... and some selfwritten generators. Together with cut&paste :-), addons from vfpx and others (like chilkat, viscom,..) we never had a need for a framework.
  9. tomk3

    Visual foxpro matrix framework

    Hello, here is some information on it. Not sure whther you can get it anymore http://dfpug.de/konf/konf_1995/app/SessionE-PROM.htm another one is visualextend, maby its still avalable via DFPUG http://www.visualextend.com/
  10. tomk3

    "Printer not ready", but client is not trying to print

    You may have a look on try catch endtry for file checking you may use ntest = Fcreate(cfile) - if ntest=-1 (error) , check help / hackers guide on lowlevel functions
  11. tomk3

    foxpro for dos filename size

    some of our clipper 5.3 apps are still in use. some of our clipper5.3 apps are still in use, even with Client/server (rdd) Sometimes I think software should begin to smell if too old (because maintenance is now a nightmare)
  12. tomk3

    FoxCharts help needed

    Hello, there is an addon called jrn foxchart tools. It allows you to visually change appearance and shows code for that (or just changes) https://github.com/VFPX/FoxCharts/blob/master/JRN_FoxCharts_Tools/README.md
  13. tomk3

    Valid event fires when clicked outside of test box

    Hello, I use a function is_abbr() and put : if is_abbr() return .t. endif on top in .valid Local oob oob=Sys(1270) If Lastkey()==27 Return .T. Endif If Vartype(oob)="O" If Lastkey()==27 .Or. (Type("oob.cancel")=="L" .And. oob.Cancel==.T.) Return .T. Endif Endif Return .F. Lastkey()...
  14. tomk3

    Please help send an email to me.

    If there are countrys missing you may use a vpn with hosts in the country you want to test and a local free provider.
  15. tomk3

    Printer Icon on Print Preview looping

    Are you using external preview like foxypreviewer or native print dialog ? When report is run , do you insert records in report events and maybe in the wrong cursor ?
  16. tomk3

    MySql to VFP cursor

    If it does not work with another driver : there may be a problem if "references" is a varchar(max) (in MS-SQL, not sure if its called different in Mysql) type . AFAIK VFP decides which type to use on first record. The following is for MS SQL you may adapt it and try in mysql : If its big...
  17. tomk3

    Report printed status

    Hello, I do not know an answer, too. Sys(2040) seems not always work as expected. We have 2 buttons in our software : "Preview " = Preview report without invoice number or with a watermark "Print and save" = With invoicenumber and printout or generate PDF and save data You may also try...
  18. tomk3

    .dbf files mysteriously gone missing (or being deleted)

    You may search for "impersonation" , AFAIK it makes it possible that only your app can access the files But I guess , too that an AV-Tools and maybe quarantine is the problem. There are tools to watch a filesystem (filemon from sysinternals and others), but they can produce big logs. There is...
  19. tomk3

    Opening and reading from a binary file larger than 2GB

    Just an idea : maybe generating an comparing hash is faster (external DLL, sampling )?
  20. tomk3

    Opening and reading from a binary file larger than 2GB

    Nice to see you wOOdy. Tom

Part and Inventory Search

Back
Top