You can subscribe to this list here.
| 2016 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|---|
|
From: Ali B. <lur...@gm...> - 2016-03-20 15:18:11
|
SOLVE TO NUMBERS:
(Numbers type:01020304)
cls
input "Number (0XXX) = ";n
num$ = format$(string$(len(str$(n))+1,"0"),n) '<<<<<<solve
print num$
end
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
SOLVE TO DATE
cls
input "Date ddmmyy = ";fecha
fecha$ = datefmt("ddd dd mm yy", format$("00/00/00",fecha)) '<<<<< solve
print fecha$
end
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
Thanks!
Greetings
|
|
From: Ali B. <lur...@gm...> - 2016-03-20 10:48:22
|
Topic: INPUT Look at the attached program. cls input "date (010203) = ";d$ print d$ end Variable input d$ should be: 010203 but it is stored as 10203 Are different data 010203 <> 10203 010203 is a string and 10203 is a value |