Select() function

This forum is meant for questions about the Visual FoxPro Language support in X#.

atlopes
Posts: 83
Joined: Sat Sep 07, 2019 11:43 am
Location: Portugal

Select() function

Post by atlopes »

A small addition to Eric's remarks:

Something to do with the USE command, maybe?

Code: Select all

? SELECT()  && displays 1
? SELECT("ToDos")   && displays 0
USE IN 0   && that's ok
? SELECT()  && displays 1, again, as it should
USE IN SELECT("ToDos")  && raises the error Eric mentioned
User avatar
lumberjack
Posts: 726
Joined: Fri Sep 25, 2015 3:11 pm
Location: South Africa

Select() function

Post by lumberjack »

Hi Eric,

Have you tried using DbCloseArea(<uArea>)? Think that is what you are looking for in your #command translation.

HTH,
______________________
Johan Nel
Boshof, South Africa
Post Reply