Search found 2353 matches

by robert
Tue May 28, 2024 9:50 am
Forum: Product
Topic: Windows on ARM and X#
Replies: 3
Views: 357

Re: Windows on ARM and X#

Wolfgang, I know of one customer that is running a Mac on Arm and is running Visual Studio for Arm on that machine. We have added ARM support for the X# intellisense in Visual Studio (a special version of the SQLite driver). Part of our VS integration (the code model and the editors for VO forms, se...
by robert
Fri May 24, 2024 4:14 pm
Forum: Welcome
Topic: XSI
Replies: 5
Views: 696

Re: XSI

Just like you can pass the dialect from the command line, then you can also add these references from the command line:

Code: Select all

xsi -dialect:FoxPro -r:XSharp.Core.dll -r:XSharp.RT.DLL -r:XSharp.VFP.DLL
This assumes you have added these DLLs to the GAC.


Robert
by robert
Fri May 24, 2024 4:12 pm
Forum: Deutsches Forum
Topic: Verwenden polnischer Zeichen in einer Dbf-Datei mit DBServer
Replies: 20
Views: 1030

Re: Verwenden polnischer Zeichen in einer Dbf-Datei mit DBServer

Guys, The Windows codepage 1250 has most eastern european characters and umlaut characters: https://en.wikipedia.org/wiki/Windows-1250 If your DBF has the codepage byte 0xc8 then you should have no problem saving these characters. I am not sure how you are checking if this succeeded, but if you're u...
by robert
Fri May 24, 2024 2:59 pm
Forum: Welcome
Topic: XSI
Replies: 5
Views: 696

Re: XSI

X# interactive is not really meant to work as a FoxPro command prompt, if that's what you're looking for.
It is the X# equivalent of C# interactive, and mostly works in the Core dialect.
What are you trying to achieve?

Robert
by robert
Thu May 23, 2024 10:54 am
Forum: Product
Topic: VS 2017 Debugger from c# Solution "The X# runtime is NOT loaded"
Replies: 13
Views: 814

Re: VS 2017 Debugger from c# Solution "The X# runtime is NOT loaded"

Dick, Maybe some extra clarification: The "AnyCPU" in the top toolbar is the name of the current platform for the solution as a whole. The "Debug" and "Release" are called Configurations. Inside a project file you will see sections like the following: <PropertyGroup Con...
by robert
Thu May 23, 2024 9:45 am
Forum: Deutsches Forum
Topic: Verwenden polnischer Zeichen in einer Dbf-Datei mit DBServer
Replies: 20
Views: 1030

Re: Verwenden polnischer Zeichen in einer Dbf-Datei mit DBServer

Peter, DBF files can contain only characters from the codepage that is in the DBF header. That codepage is at (zero based) byte 29 in the DBF header. You can find the meaning of the values in the following file: https://github.com/X-Sharp/XSharpPublic/blob/main/src/Runtime/XSharp.Rdd/Enums.prg If th...
by robert
Thu May 23, 2024 5:39 am
Forum: Product
Topic: VS 2017 Debugger from c# Solution "The X# runtime is NOT loaded"
Replies: 13
Views: 814

Re: VS 2017 Debugger from c# Solution "The X# runtime is NOT loaded"

Dick,

Platform Target is the determining factor.

Robert
by robert
Wed May 22, 2024 6:29 pm
Forum: Product
Topic: VS 2017 Debugger from c# Solution "The X# runtime is NOT loaded"
Replies: 13
Views: 814

Re: VS 2017 Debugger from c# Solution "The X# runtime is NOT loaded"

Dick, There are various possible scenarios which, need different solutions: .Net Framework: - AnyCPU and X#: VS2017, VS2019, VS2022 (internal form editor) - 32 bits and x#: VS2017 and VS2019 - 64 bits and X#: VS2022 (internal form editor) - AnyCPU and C#: VS2017, VS2019, VS2022 (internal form editor...
by robert
Tue May 21, 2024 10:33 am
Forum: Product
Topic: VS 2017 Debugger from c# Solution "The X# runtime is NOT loaded"
Replies: 13
Views: 814

Re: VS 2017 Debugger from c# Solution "The X# runtime is NOT loaded"

Mike,

Some winforms apps cannot be designed with VS2022, but there should not be a problem running the app in the debugger.

Robert
by robert
Tue May 21, 2024 10:00 am
Forum: Product
Topic: VS 2017 Debugger from c# Solution "The X# runtime is NOT loaded"
Replies: 13
Views: 814

Re: VS 2017 Debugger from c# Solution "The X# runtime is NOT loaded"

Mike,
We recommend that you use VS2022 for this scenario.
We made some significant improvements to the X# debugger that only work with VS 2022 and not in VS 2017.

Robert