Welcome, Guest
Username: Password: Remember me
Welcome to the XSharp forum!

Tell us and our members who you are, what you like and why you became a member of this site.
We welcome all new members and hope to see you around a lot!
  • Page:
  • 1

TOPIC:

My introduction, Neale 01 Nov 2021 03:11 #20190

  • ny
  • ny's Avatar
  • Topic Author


  • Posts: 6
  • My name is Neale (from Australia). In the late 70s I studied Pascal and Fortran at Uni. In the early 80s when IBM compatible PCs came out, I started programming in GW BASIC – probably a backward step that has resulted in me never being 100% comfortable with objects and classes but given I was programming for my own business the main thing was I got the job done.

    I started looking for something that supported databases a year or so after Clipper 87 came out and that’s what I settled on and used for the next 10 years. Then in 2001 I moved to VO and have been using it ever since (starting with version 2.0 and moving to 2.6 and then 2.8 ).

    Last month I finally got around to trying the VOXporter (2.8 ) and XIDE (1.28) for my main VO project. It took less than a week to get rid of numerous compiler errors. Some were syntax related like using i=1 in FOR loops when I should have been using i:=1. Others were related to really old DBF command usage like INDEX ON which only compiled once I changed to the functional equivalent DBCREATEINDEX (plus I found the need for DBSETORDERCONDITION for descending indexes).

    When it came to runtime errors there were a few main issues. First, I could not get DBAPP and DBAPPDELIM to work so I wrote my own code to replace these functions. Second, I could not get Norbert’s GetDocumentByGetOrPost to work which I mentioned in a VO forum thread – my solution, thanks to the forum, was to use Wolfgang’s winHTTP with Phil’s function call wrapper (not yet using .net alternatives because initially I want my code to still work with VO 2.8 ).

    I also had some problems using reserved words like DATE as field names in index expressions. In VO I could reference the field using a different name (using DbFieldInfo) and the index would still work when set up with the original DATE name – but X Sharp does not like this so I had to use workarounds to using DbFieldInfo like using Fieldget etc).

    Hopefully the above may be of use to other newcomers. The only other issue I have now is when I try to run an old module that uses the old VO data browser I get this message “Cannot load library: CATO3CNT.DLL” – is there something obvious I need to do to correct this?

    Regards, Neale

    Please Log in or Create an account to join the conversation.

    Last edit: by ny.

    My introduction, Neale 01 Nov 2021 08:31 #20191

    • Chris
    • Chris's Avatar


  • Posts: 3981
  • Hi Neale,

    Thanks for your information! About INDEX ON, you could had added a

    #include "dbcmd.xh"

    in the files where you use this and it should work without changes. Regarding DBApp() / DBAppDelim() I am not aware of any related issues, but maybe there's something we are not aware about. Regarding CATO3CNT.dll, fortunately the solution is very easy, just copy all the CAT*.* files from your VO bin folder to your .Net app's bin folder so that they will be found and loaded at runtime!

    .
    XSharp Development Team
    chris(at)xsharp.eu

    Please Log in or Create an account to join the conversation.

    Last edit: by Chris.

    My introduction, Neale 01 Nov 2021 08:50 #20192

    • ny
    • ny's Avatar
    • Topic Author


  • Posts: 6
  • Thanks for that Chris.

    I originally tried copying the CATO3CNT dll to the Bin folder but that didn't work. Tried copying all of them and it still didn't work but when I copied them to the actual folder I was running the program in it did work.

    I am currently running in C:\XIDE\Projects\Bin\Debug so I guess it is just a path issue.

    More generally what DLLs if any are required when it comes to redistributing the program? Am I right in thinking most DLLs are compiled into the exe?

    Regards, Neale

    Please Log in or Create an account to join the conversation.

    My introduction, Neale 01 Nov 2021 09:02 #20193

    • Chris
    • Chris's Avatar


  • Posts: 3981
  • Hi Neale,

    No, .Net dlls are never compiled inside the main .exe, unlike VO those are separate entities. For more info about redistributing dlls, this is taken from the\XSharp\Redist\redist.txt file:

    You are allowed to distribute the following XSharp DLLs with your projects:
    You are also allowed to distribute the PDB files that come with these DLLs.
    These PDB files may help in locating the line numbers where an error occurs.

    XSharp.Runtime
    ================
    XSharp.Core.dll
    XSharp.Data.dll
    XSharp.RT.DLL
    XSharp.RT.Debugger.DLL
    XSharp.RDD.DLL
    XSharp.VO.dll
    XSharp.XPP.DLL
    XSharp.VFP.DLL
    XSharp.MacroCompiler.dll
    XSharp.MacroCompiler.Full.dll
    XSharp.Scripting.dll
    XSharp.CodeAnalysis.dll


    VO Compatible SDK
    =================
    VOConsoleClasses.dll
    VORDDClasses.dll
    VOSQLClasses.dll
    VOGUIClasses.dll
    VOReportClasses.dll
    VOSystemClasses.dll
    VOWin32APILibrary.dll

    The following files are needed by VOGUIClasses.dll when you use the DataBrowser or Splitwindow
    CATO3CNT.DLL
    CATO3DAT.DLL
    CATO3MSK.DLL
    CATO3NBR.DLL
    CATO3SBR.DLL
    CATO3TBR.DLL
    CATO3TIM.DLL
    CATO3SPL.DLL
    MSVCRT.DLL

    The following file is needed for image support in VOGUIClasses.DLL
    CAPAINT.DLL


    XSharp Scripting
    ================
    Xsi.exe
    XSharp.Scripting.dll
    XSharp.CodeAnalysis.dll

    These scripting files can all be found in the <Program Files>\XSharp\Bin folder

    Support files
    =============
    Microsoft.DiaSymReader.Native.amd64.dll
    Microsoft.DiaSymReader.Native.x86.dll
    System.*.dll

    These support files can all be found in the <Program Files>\XSharp\Bin folder

    .
    XSharp Development Team
    chris(at)xsharp.eu

    Please Log in or Create an account to join the conversation.

    My introduction, Neale 01 Nov 2021 09:12 #20194

    • ny
    • ny's Avatar
    • Topic Author


  • Posts: 6
  • Thanks again Chris

    I used Inno Setup for installing VO apps, is it a good option and/or used by others for X Sharp?

    Regards, Neale

    Please Log in or Create an account to join the conversation.

    My introduction, Neale 01 Nov 2021 09:27 #20195

    • FFF
    • FFF's Avatar


  • Posts: 1419
  • Hi Neale,
    welcome!
    FTR, there ARE tools to pack all dlls into the exe, e.g. www.codeview.net/2020/06/12/pack-your-ne...postsharp-community/, ( i never needed them, as i code only for my own use ;)), but i use apps which come as single file for years.
    Regards
    Karl (X# 2.15.0.3; Xide 2.15; W8.1/64 German)

    Please Log in or Create an account to join the conversation.

    My introduction, Neale 01 Nov 2021 09:46 #20197

    • Chris
    • Chris's Avatar


  • Posts: 3981
  • Hi Neale,

    Well, unless you start installing dlls in the GAC (which generally you do not need to do for distribution), I wouldn't say that distributing a .Net program is any different to regular windows programs, so any installer you like and use for windows apps should work fine also for .Net apps. For XIDE itself, I have written a very simple custom program which simply copies the dlls and support config etc files to the appropriate folders...

    .
    XSharp Development Team
    chris(at)xsharp.eu

    Please Log in or Create an account to join the conversation.

    My introduction, Neale 01 Nov 2021 17:15 #20205

    • robert
    • robert's Avatar


  • Posts: 3599
  • Neale,

    ny wrote: Thanks again Chris
    I used Inno Setup for installing VO apps, is it a good option and/or used by others for X Sharp?
    Regards, Neale


    Inno Setup works fine. We use that to install X# too.

    Robert
    XSharp Development Team
    The Netherlands

    Please Log in or Create an account to join the conversation.

    • Page:
    • 1