| |
|
|
| Hi,
how can one one date a dBase-File z.B. date of birth in deutscher spelling spend.
Perhaps ne stupid question, be but yet Beginner with the Liestview.
Helmut |
|
|
| |
|
|
|
| Hello Helmut,
moreover there well no Special API or function. the must You yourself with Profan converting, a String to String Umrechnung, here a example, of 2004/01/29 to 29.01.2004:
Declare Text1$,Text2$,area1#,area2# Dim area1#,64 Dim area2#,64
Text1$=2004/01/29
Clear area1# String area1#,0=text1$ Clear area2# byte area2#,0=Byte(area1#,8) byte area2#,1=Byte(area1#,9) byte area2#,2=46 byte area2#,3=Byte(area1#,5) byte area2#,4=Byte(area1#,6) byte area2#,5=46 byte area2#,6=Byte(area1#,0) byte area2#,7=Byte(area1#,1) byte area2#,8=Byte(area1#,2) byte area2#,9=Byte(area1#,3) Text2$=String$(area2#,0)
Print Text2$ Waitinput End
Greeting, Frank |
|
|
| |
|
|