Search found 107 matches

by xinjie
Mon Feb 09, 2026 12:52 am
Forum: Product
Topic: Use AI to explore XSharp (across the entire GitHub repository)
Replies: 5
Views: 240

Re: Use AI to explore XSharp (across the entire GitHub repository)

H, Robert
The official documentation does not provide a clear explanation. Based on my experience and observations, I believe it is derived from the source file. I am unsure whether it searches based on URLs within the source file (if present).

Additionally, clicking “ASK AI” at the top of the ...
by xinjie
Sun Feb 08, 2026 2:10 am
Forum: Product
Topic: Use AI to explore XSharp (across the entire GitHub repository)
Replies: 5
Views: 240

Use AI to explore XSharp (across the entire GitHub repository)

Hello everyone!
China's ZhiPu AI presents https://zread.ai/ . Leveraging large-model understanding, zread.ai seamlessly deconstructs entire repositories into logically coherent documentation. Whether exploring core concepts, functional modules, or API calls, it feels like reading a meticulously ...
by xinjie
Fri Dec 19, 2025 11:14 am
Forum: Product
Topic: Path gets messed up on XSharp reinstall
Replies: 3
Views: 306

Re: Path gets messed up on XSharp reinstall

Hi,
I encountered this issue a long time ago. The EXE compiled with VFP simply fails to launch once the problem occurs.
by xinjie
Wed Nov 26, 2025 10:00 am
Forum: Spanish Forum
Topic: ¡Bienvenidos al foro en español de X#!
Replies: 1
Views: 276

Re: ¡Bienvenidos al foro en español de X#!

Hola, Irwin,
Pase lo que pase, siempre te apoyaré. Porque eres mi ídolo.

(La traducción en línea debe estar libre de errores:))
by xinjie
Thu Apr 03, 2025 2:09 am
Forum: Visual FoxPro
Topic: "ASTYPE" keyword work with FoxPro dialects?
Replies: 1
Views: 4171

"ASTYPE" keyword work with FoxPro dialects?

Hi, Development Team

I've created a console application using the FoxPro dialect as described in the new language features in the documentation.


Using System
Using System.Collections.Generic
Using System.Linq
Using System.Text

Function Start() As Void Strict
Test(ParentClass{})
Wait
Return ...
by xinjie
Sat Mar 01, 2025 1:12 pm
Forum: Visual FoxPro
Topic: The problem occurs when using Evaluate(): Method is overloaded, Cannot determine the right overload to call.
Replies: 0
Views: 4221

The problem occurs when using Evaluate(): Method is overloaded, Cannot determine the right overload to call.

Hi, Robert

I'm having this problem with the Evaluate() function. The following code is a reproduction in a console program.


Function Start() As Void Strict
Var a = "temp"
Var b = "Empty('" + a + "')"
Var c = "Len(' + a +') > 0"
? Evaluate(c) // .T.
? Evaluate(b) // Unprocessed exceptions ...
by xinjie
Tue Feb 11, 2025 6:03 pm
Forum: Visual FoxPro
Topic: Problems in customizing properties
Replies: 7
Views: 5553

Re: Problems in customizing properties

Hi, Chris

In my environment, build the project I uploaded. Then create a new form in the project that inherits myForm and can reproduce the problem I described. Like the state shown in the screenshot I uploaded.

However, if I add a new project to the solution and add a form in it that inherits ...
by xinjie
Tue Feb 11, 2025 2:22 pm
Forum: Visual FoxPro
Topic: Problems in customizing properties
Replies: 7
Views: 5553

Re: Problems in customizing properties

Robert,

I mean, if the test property of a form inherited from myForm is changed, then save and close. On opening it again, the value of the property shown in the properties window is wrong, while it is correct in the code. This does not only happen in the form class I am talking about, it also ...
by xinjie
Tue Feb 11, 2025 7:52 am
Forum: Visual FoxPro
Topic: Problems in customizing properties
Replies: 7
Views: 5553

Re: Problems in customizing properties

Robert,

It's not actually not saved, it's just not “displayed”.If you look at the code for Form1.Designer.prg, you can see the correct settings.
This situation is not only reflected in the form class. This is true of any control that can be displayed in a toolbox.
by xinjie
Tue Feb 11, 2025 5:42 am
Forum: Visual FoxPro
Topic: Problems in customizing properties
Replies: 7
Views: 5553

Problems in customizing properties

Hi, Robert

I'm having a problem with X#. I'm not sure if it's my own code or a bug.

I created a new class library project (foxpro dialect). The project contains custom class: myForm.
The code files in the project are as follows:

myForm.prg:

Using System
Using System.Collections.Generic
Using ...