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!

Recent content by jlcca

  1. jlcca

    CobolScript and shm1.cbl

    Thanks Matt. The updates you sent me worked. Regards, Joe
  2. jlcca

    CobolScript and shm1.cbl

    I am running... E:\CobolScript>e:\utils\cobolscript.exe CobolScript Professional Edition - release 4.0 MS Windows Copyright (c) 1996-2025 Matt Dean Windows Pro x64 Windows 10 [Version 10.0.19045.5131] I am not able to successfully execute the shm1.cbl program...
  3. jlcca

    Date/Time Conversion

    This is using VBScript, which can easily be translated to VB6 arrDateTime = Split("2023-07-06T14:34:21-04:00","T") WScript.Echo arrDateTime(0) WScript.Echo arrDateTime(1) arrTime = Split(arrDateTime(1),"-") WScript.Echo arrTime(0) WScript.Echo FormatDateTime(arrTime(0), vbShortTime)...
  4. jlcca

    Re-Writing The Visual-Foxpro Language From Scratch

    For your reference; VFP Advanced Version 10 - http://www.baiyujia.com/vfpadvanced/f_vfpa_about.asp X Sharp - https://en.wikipedia.org/wiki/XSharp Harbour - https://en.wikipedia.org/wiki/Harbour_(programming_language) Joe
  5. jlcca

    How to compile 32 bit dll

    I am able to use 64-bit COM dlls from 32-bit, and 32-bit COM dlls from 64-bit. I use a DLLSurrogate to accomplish this. Ref: https://jpsoft.com/forums/threads/using-a-32-bit-in-process-com-server-dll-from-64-bit-tcc.9646/]Using a 32-bit In-Process COM Server DLL from 64-bit TCC[/url] Joe
  6. jlcca

    looking for latest info on SMB3 and VFP9

    The missing link for OP; http://kb.datafile.co.uk/article/smb2-smb3-and-opportunistic-locking-2132.html]SMB2, SMB3 and Opportunisitc Locking[/url] Joe
  7. jlcca

    COBFD was a very usefull program. Perhaps we can create one ourself in GNU COBOL? 😁

    The author of the COBFD program is offering the PowerBASIC source code of COBFD to anyone who wants to upsize it to 32-bits. https://forum.powerbasic.com/forum/user-to-user-discussions/programming/813074-32-bit-update-for-cobfd-bas?p=813076#post813076 He can be contacted via email (as noted in...
  8. jlcca

    32 bit app to 64 bit?

    When JPSoftware removed the 32-bit version of Take Command Console, I could no longer use the 32-bit versions of In-Process COM DLLs that I had developed. The workaround was to create a DLL surrogate, which allows me to use 32-bit versions of In-Process COM DLLs from 64-bit Take Command...
  9. jlcca

    Date anomaly....

    This is not a solution to your problem, but consider using the RunAsDate utility, instead of changing the date on your laptop. From the website: "RunAsDate is a small utility that allows you to run a program in the date and time that you specify. This utility doesn't change the current system...
  10. jlcca

    Program running from Debugger or EXE?

    Hey Olaf, _vfp.startmode seems the better method. Thanks! Joe
  11. jlcca

    Program running from Debugger or EXE?

    I am developing a console application using VFP9. At present, I do ext = JUSTEXT(Sys(16)) ...to determine the file extension of the complete application path. When I am in the debugger, this returns FXP, thus (partial code) If ext = "FXP" then ? theRecord Else .WriteLine( theRecord )...
  12. jlcca

    Looking for Patch Update 9.0.0.7423

    Awesome! Many thanks. Joe
  13. jlcca

    Looking for Patch Update 9.0.0.7423

    I would like to update my Visual FoxPro 9 SP2 09.00.0000.5815 to 9.0.0.7423 Reference: https://support.microsoft.com/en-us/help/968409/fix-the-group-header-of-a-data-grouping-is-not-printed-at-the-top-of-a 9.0.0.7423 is a cumulative update. Note that the link in the KB article no longer...
  14. jlcca

    How to Recreate Clipper Index on Win 10

    If you have the Clipper 5.2 source code, you can re-compile it using 64-bit Harbour, available from https://github.com/vszakats/harbour-core Joe
  15. jlcca

    Foxpro2.6 (Keeping it functioning) "UPDATED"

    On my Windows 10 64-bit system, I have used; vDosPlus http://vdosplus.org/ vDos http://vdos.proboards.com/ dbDos https://dbdos.com/ You could also install DOS into a Virtual Machine. Although no longer actively developed, I use vDosPlus to run my dBASE 5/Clipper 5.3/FoxPro DOS Applications...

Part and Inventory Search

Back
Top