Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Create cursor syntax error
Message
 
 
To
23/04/2003 11:08:57
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00780617
Message ID:
00780623
Views:
11
>I am doing the following but i am getting error (not character expression)
>
>CREATE CURSOR (culist2) (project_no C(3), workpkg_noc(5),sub_title(50))
>
>Thank you very much.

First, don't enclose cursor name in patenthesis because it will be treated as a name expression. Second you've to provide type for all fields.
CREATE CURSOR culist2 (project_no C(3), workpkg_noc C(5),sub_title C(50))
--sb--
Previous
Reply
Map
View

Click here to load this message in the networking platform