Here is the program I just wrote that splits time very nicely into three parts and puts them into an array...
DECLARE SUB gorp ()
DIM SHARED array(2) AS STRING * 2
CALL gorp
PRINT array(0)
PRINT array(1)
PRINT array(2)
------ this part here gets created as a SUBROUTINE call:
SUB gorp
SHARED array ...
Search found 5 matches
- Sun Nov 09, 2008 6:43 am
- Forum: QBasic / QuickBasic related
- Topic: TIME$
- Replies: 7
- Views: 4621
- Thu Aug 07, 2008 11:38 am
- Forum: QBasic / QuickBasic related
- Topic: posting / uploading programs
- Replies: 1
- Views: 2442
posting / uploading programs
Unfortunately I have now way of creating a link to a program that is on a webpage , as I cant seem to get my webpage working correctly
is there any way I can post /upload a file to this forum??
will you ever host files directly??
I have this program I have had for a long long time
that I wrote ...
is there any way I can post /upload a file to this forum??
will you ever host files directly??
I have this program I have had for a long long time
that I wrote ...
- Thu Aug 07, 2008 11:09 am
- Forum: QBasic / QuickBasic related
- Topic: converting decimal to HH:MM:SS?
- Replies: 5
- Views: 3646
- Thu Aug 07, 2008 10:59 am
- Forum: QBasic / QuickBasic related
- Topic: Hexadecimal Routines for QBasic
- Replies: 6
- Views: 7366
I have just recently made a pair of programs that allows you to convert any data or file form Binary mode ascii to hexadecimal and back
(with no formating or spaces etc..) I have tested it fully and it works I don't know if this applies to the question at hand... if you are interested Email me at ...
(with no formating or spaces etc..) I have tested it fully and it works I don't know if this applies to the question at hand... if you are interested Email me at ...
- Wed Jul 30, 2008 7:26 pm
- Forum: QBasic / QuickBasic related
- Topic: TIME$
- Replies: 7
- Views: 4621
Splitting time$ into three parts...
or.... Why not simply use Mid$???
You can get all three parts just using that one alone
and better yet you can do it in a loop... and place the output into an array of strings, in one easy step...
the advantage?? the whole set of related time sets of characters are neatly sored away into a single ...
You can get all three parts just using that one alone
and better yet you can do it in a loop... and place the output into an array of strings, in one easy step...
the advantage?? the whole set of related time sets of characters are neatly sored away into a single ...