ok....i think this is cind of hard...
i have a text like: 0,0,5,0,7,0......
and i want to split it to
0,0
5,0
7,0
etc...
then i want a picturebox draw lines with those coordinates...
help me please! :(
Printable View
ok....i think this is cind of hard...
i have a text like: 0,0,5,0,7,0......
and i want to split it to
0,0
5,0
7,0
etc...
then i want a picturebox draw lines with those coordinates...
help me please! :(
the coordinates can be from 0,0 to 275,116
Scan file for ','
Each 2nd , means next coordinate.
That way you can filter them into an array and you can filter it further up if necessary.
thanks, ill try that :)