Active Forums => QB64 Discussion => Topic started by: PMACKAY on August 16, 2018, 08:13:07 am
Title: CALL A QUICKBASIC ROUTINE FROM ANOTHER FILE AND RETURN
Post by: PMACKAY on August 16, 2018, 08:13:07 am
how can i call another file through terminal (linux) and continue running my program from where i called without any terminal window showing
10 'in background so user does not know.... its a routine to reset my data file. or a routine to copy files over existing files in folder 20 shell "prog" 30 continue here
just a file to reload new data over the top of old data
copy "folder1" to "Folder0" start game
or EXEC "file1" start game -----------------------------------------------------------------------
Title: Re: CALL A QUICKBASIC ROUTINE FROM ANOTHER FILE AND RETURN
Post by: bplus on August 16, 2018, 09:23:56 am
Hi PMACKAY,
I can't help with Linux but this is a great place to start research: http://qb64.org/wiki/Main_Page
The two command keywords of interest are SHELL and RUN, a number of options to choose.
Try some simple experiments that test the keywords under the conditions you need, if you get stuck show some sample code you've tried.
There are often ways to get around doing things outside your program eg copy files or folders or add the routine you want to run to the program you are working on.
You can also call routines up out of libraries once one is setup, that involves BI and BM files.
Title: Re: CALL A QUICKBASIC ROUTINE FROM ANOTHER FILE AND RETURN
Post by: PMACKAY on August 17, 2018, 02:44:28 am
All good decided to learn how to do what i wanted without using shell to do a file copy
*** anychance this routine could be tested under windows.....
LABEL:- romtoram: (copy original data to files to run in my game during play) works %100 percent on linux
FOR i = 1 TO 12 io$ = MID$(file$, i * 3 - 2, 3): OPEN n1$ + io$ FOR INPUT AS #1: OPEN n2$ + io$ FOR OUTPUT AS #2 DO UNTIL EOF(1) INPUT #1, b: PRINT #2, b; LOOP: CLOSE #1: CLOSE #2 NEXT i
RETURN
this uses sub folders in linux and hoping same for windows
Title: Re: CALL A QUICKBASIC ROUTINE FROM ANOTHER FILE AND RETURN
Post by: bplus on August 17, 2018, 03:51:12 am