Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Stu_C

#31

Thats good news,  chalk another sale when thats out.  (im still on trial)




#32
SPLITSTR ignores delimters that contain no data.  This is important for loading in CSV files  :S

take the code

Code (glbasic) Select

test$ ="1,,3"
num = SPLITSTR(test$, splits$[], ",")
FOR i=0 TO num-1
PRINT ">"+splits$[i]+"<", 0, 20*(i+1)
NEXT


I would expect the return to be
>1<
><
>3<

instead it ignores the empty array and produces

>1<
>3<

#33

I can seem to get SHELLEND to run anything on the POCKET PC ?   Does the PocketPc not support this function ?

/StuC