Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Add + 1 to code
Message
From
13/12/2006 15:32:32
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Miscellaneous
Thread ID:
01177374
Message ID:
01177377
Views:
7
>I used to use
>
>code = code + 1
>but when the table was indexed I had problems
>
>Then, a guy from this forum gave me the code below
>
*dimension lctemp[1] && not necessary
select max(client.CODE) from client ;
    into array lctemp
  lctemp[1] = IIF(_tally=0,1,lctemp[1] + 1)

APPEND blank

if _tally>0
 replace client.code with lctemp [1]
else
 replace client.code with 1
endif
>**************************************
>
>It works well, however if it's the first record it
>gets of an empty table it generates a null value to the code
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform