09-02-2022, 05:06 PM
(This post was last modified: 09-02-2022, 05:10 PM by Kernelpanic.)
Actually, no new routine for calling a video has to be worked into QB64, it can also be done that way.
One can call a program for playing videos created in Visual Basic with "Run" from QB64. In the example, programs and video are in the same directory, but this is not necessary.
Let's see if you can also call up a player directly. Would be even easier.
One can call a program for playing videos created in Visual Basic with "Run" from QB64. In the example, programs and video are in the same directory, but this is not necessary.
Let's see if you can also call up a player directly. Would be even easier.
Code: (Select All)
'VisualBasic Videoprogramm aufrufen - 2. Sept. 2022
Print
Print "Ruft ein VisualBasic Programm zum Abspielen von Videos auf."
Print
Print "Weiter mit beliebiger Taste . . ."
Do
Loop While InKey$ = ""
'Aufruf des VB-Programms
Run "Video-abspielen.exe"
End