Search found 94 matches

by VR
Thu Aug 24, 2023 7:30 am
Forum: Welcome
Topic: X# Newbie
Replies: 4
Views: 12156

X# Newbie

Here's a GitHub Repo with some x# Examples, that show how to use dotnet classes.

​​​​​​​https://github.com/InfomindsAg/XSharpExamples
by VR
Mon Aug 07, 2023 5:03 pm
Forum: Chit-Chat
Topic: .NET Open source report engine and designers... what are XSHARP developers usin
Replies: 4
Views: 4708

.NET Open source report engine and designers... what are XSHARP developers usin

Hi,

there is FastReport, which has a payed and an open source offering. https://opensource.fast-report.com/

Volkmar
by VR
Wed May 03, 2023 7:55 am
Forum: Examples
Topic: ChatGPT integration examples?
Replies: 33
Views: 48031

ChatGPT integration examples?

<r>Hi Robert...<br/>
<br/>
I don't think, that you can "train" ChatGPT. OpenAI announced recently, that they will offer Plugins to allow ChatGPT to access new information. <br/>
<br/>
An interesting alternative project is GPT4All (<URL url="https://github.com/nomic-ai/gpt4all">https://github.com ...
by VR
Sat Mar 11, 2023 7:49 am
Forum: Product
Topic: Overwriting hidden methods: X# vs VO
Replies: 4
Views: 2009

Overwriting hidden methods: X# vs VO

Instead of removing the Hidden Modifier, you could consider replacing it with the Proteced modifier.

Protected methods can be overridden but are only visible to class and all inherited classes but as hidden methods, they can not be called from other classes.

Volkmar
by VR
Mon Dec 05, 2022 3:28 pm
Forum: Visual FoxPro
Topic: Security Scan for X#
Replies: 9
Views: 7983

Security Scan for X#

<t>Hello Joshua,<br/>
<br/>
yes, we made some progress. With the help of a summer intern, we managed to create a basic integration of x# to sonarqube. We did the following.<br/>
<br/>
* A scanner (written in c#) uses the XSharp.VsParser.Helpers Nuget to parse the x# files into ASTs<br/>
* The ASTs ...
by VR
Tue Nov 29, 2022 11:51 am
Forum: Product
Topic: command line compiler
Replies: 3
Views: 2169

command line compiler

I guess the easiest way is to create a x# project and then compile it using MSBuild. MSBuild takes care of calling the X# Compiler for you.
by VR
Mon Nov 14, 2022 4:43 pm
Forum: Product
Topic: How to discard a value in X#?
Replies: 2
Views: 1967

How to discard a value in X#?

Thanks for the super fast response :-)
by VR
Mon Nov 14, 2022 4:35 pm
Forum: Product
Topic: How to discard a value in X#?
Replies: 2
Views: 1967

How to discard a value in X#?

<r>Hello<br/>
<br/>
when I want to convert a string to an int, I use Int.TryParse which returns true, when the string can be parsed and also has an out param with the string value. <br/>

<CODE><s>[code]</s><i>
</i>var str := "123"
if int.TryParse(str, out var strAsInt)
// do something with the ...
by VR
Fri Oct 21, 2022 4:37 pm
Forum: Chit-Chat
Topic: XSharp Power Tools - Visual Studio extension
Replies: 8
Views: 8325

XSharp Power Tools - Visual Studio extension

Happy to hear, that you like it :-)
by VR
Sat Oct 08, 2022 6:16 pm
Forum: Chit-Chat
Topic: Dapper MicroORM to Query SQL Databases in .net/X#
Replies: 0
Views: 5935

Dapper MicroORM to Query SQL Databases in .net/X#

<r>Hi,<br/>
<br/>
I personally use Entity Framework Core (EFCore) to access SQL Databases with .net. But sometimes, when I just need to execute some SQL selects to get some data, EFCore is overkill. <br/>
<br/>
In those cases, I use a MicroORM called Dapper. Dapper is a small library, written by ...