•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the Legacy and Other Languages section within the Software Development category of DaniWeb, a massive community of 427,177 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,133 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our Legacy and Other Languages advertiser: Programming Forums
I look at BCX-basic as a modernized qbasic. This simple code creates a Windows GUI program that plays a midi instrumental music file. To keep it simple, the file it looks for is "TheRose.mid" file. If you don't have this file, you have the option of editing the code, or simply to rename a midi file you have and stick it in the working folder.
' uses the mci-library to play a midi file (.mid) ' the mci-libary winmm.lib is in PellesC\lib\win ' needs BCX basic, download the free package from: ' http://www.rjpcomputing.com/programming/bcx/devsuite.html $LIBRARY <winmm.lib> ' this generates WinMain() and sets the Classname GUI "MIDI3" CONST ID_Button1 = 101 DIM Form1 AS HWND DIM Butt1 AS CONTROL DIM MciCommand$ ' required to create the form and it's components SUB FORMLOAD Form1 = BCX_FORM("Play a Midi ...",30,20,140,40 ) Butt1 = BCX_BUTTON("Play",Form1,ID_Button1,10,10,30,12) DECLARE FUNCTION MCI_Execute LIB "winmm.dll" ALIAS "mciExecute" (A$) Show(Form1) END SUB ' code between BEGIN EVENTS/END EVENTS takes care of the event messages BEGIN EVENTS SELECT CASE CBMSG CASE WM_CREATE EXIT FUNCTION CASE WM_COMMAND IF CBCTL = ID_Button1 THEN ' ' this plays TheRose.mid or change to whatever you have ... ' MciCommand$ = "play TheRose.mid" MCI_Execute (MciCommand$) EXIT FUNCTION END IF ' clean up and exit properly CASE WM_CLOSE mciSendString ("close all",0,0,0) DestroyWindow (Form1) EXIT FUNCTION END SELECT END EVENTS
Comments (Newest First)
billzilla | Newbie Poster | Jun 21st, 2006
•
•
•
•
This emachione did not come with qbasic...can you reco a site to download a copy freee? check out
www.tiptopwebsite.com/brainwaves
billzilla
www.tiptopwebsite.com/brainwaves
billzilla
Post Comment
•
•
•
•
DaniWeb Marketplace (Sponsored Links)