Search found 2353 matches

by robert
Mon Jul 22, 2024 4:33 pm
Forum: Visual FoxPro
Topic: SqlExec() is alive!!!!
Replies: 4
Views: 1943

Re: SqlExec() is alive!!!!

Irwin,
This looks like a bug.
I will check this for the next build

Robert
by robert
Sun Jul 21, 2024 5:18 pm
Forum: Visual FoxPro
Topic: SqlExec() is alive!!!!
Replies: 4
Views: 1943

Re: SqlExec() is alive!!!!

易文翰
Can you give an example of the query that you are using?

Robert
by robert
Thu Jul 11, 2024 3:34 pm
Forum: Visual FoxPro
Topic: TEXT TO varName NOSHOW TEXTMERGE
Replies: 3
Views: 285

Re: TEXT TO varName NOSHOW TEXTMERGE

Explanation: The problem here is that FoxPro does not really have local variables. In every other development language a local variable is only visible in the location where it is declared (including parameters). FoxPro however gives the runtime code for TextMerge access to locals and therefore viol...
by robert
Wed Jul 10, 2024 9:08 pm
Forum: Visual FoxPro
Topic: TEXT TO varName NOSHOW TEXTMERGE
Replies: 3
Views: 285

Re: TEXT TO varName NOSHOW TEXTMERGE

This must be a bug. Can you post an issue for this?

Robert
by robert
Tue Jul 09, 2024 10:23 am
Forum: Product
Topic: DEFINE/#ifdef seems to be ignored in X#
Replies: 8
Views: 1268

Re: DEFINE/#ifdef seems to be ignored in X#

Kees,

This online help is the same (based on the same help source) as the help that is included in the installer,which for example is also available from the VS Help menu.

Robert
by robert
Mon Jul 08, 2024 4:05 pm
Forum: Product
Topic: DEFINE/#ifdef seems to be ignored in X#
Replies: 8
Views: 1268

Re: DEFINE/#ifdef seems to be ignored in X#

Kees,
https://www.xsharp.eu/help/proppage-build.html
Defines for the preprocessor

Robert
by robert
Fri Jul 05, 2024 2:12 pm
Forum: Visual FoxPro
Topic: Local Cursor Operations with SQL and INDEX
Replies: 1
Views: 296

Re: Local Cursor Operations with SQL and INDEX

Mario, We have started adding several embedded SQL commands for VFP. What should work: - CREATE CURSOR - CREATE TABLE - INSERT INTO, except INSERT TO ... SELECT ... - REPLACE What does not work - DELETE FROM - UPDATE - SELECT Especially the SELECT statement is quite complicated. Not the SELECT on a ...
by robert
Wed Jul 03, 2024 2:54 pm
Forum: Visual FoxPro
Topic: SCATTER with memofield
Replies: 5
Views: 492

Re: SCATTER with memofield

Fixed for next build

Robert
by robert
Wed Jul 03, 2024 2:54 pm
Forum: Visual FoxPro
Topic: COPY STRUC and COPY TO, with CDX
Replies: 3
Views: 426

Re: COPY STRUC and COPY TO, with CDX

Fixed for next build

Robert
by robert
Wed Jul 03, 2024 2:53 pm
Forum: Visual FoxPro
Topic: APPEND with for
Replies: 3
Views: 412

Re: APPEND with for

Peter, There is an error in the UDC. If you add this to the top of your file, then it should work: #command APPEND [FROM <(file)> ] ; [__FOXLIST__ <fldlist>] ; [__FOXWILD__ <fldwild> ] ; [FOR <lfor>] ; [WHILE <lwhile>] ; [NEXT <nNext>] ; [RECORD <rec>] ; [<rest:REST>] ; [ALL] ; [TYPE] [<type: FOXPLU...