Home | Reviews | GUIpedia | Forum | Fun500


xcoderMy Gui for DOS
I've been coding Qbasic programs for years one of them was a GUI using the future.library with multi-tasking scripted programs and much more. Due to QB's limits I've ported it to Freebasic. Here's a screenshot.. [img size=640]http://theguiblog.com/images/fbfiles/images/shot_1_-02d765f01e6a7b880c51e2f87edb6ec2.JPG[/img] get the demo [url]www.drhenris.com/ev5.zip[/url] *** You must install to C:EV5 or the program won't work ** There are many bugs and you may need to run in plain old dos (with mouse & Long file names drivers). Let me know what you think!!.
2008-09-159:16 AM

ToddRe:My Gui for DOS
Unfortunately, I couldn't get it to run. I tried DOSBox and I tried regular DOS. It looks like a neat GUI from the screenshot which is a shame that I can't run it.
2008-09-151:03 PM

BrandonRe:My Gui for DOS
looks cool after school I'm try it out.
2008-09-151:34 PM

ksrRe:My Gui for DOS
I just tried it, and I'm very impressed. I ran it in Windows XP which is probably why I couldn't browse the hard drive or change any of the preferences. Scripting language looks very nice.
2008-09-151:53 PM

xcoderRe:My Gui for DOS
copy this file into the directory and run it instead. This will work in windows(ARRH!) [url]www.drhenris.com/kfreewin.exe[/url] **Make sure you copy everything to C:EV5**
2008-09-152:00 PM

ToddRe:My Gui for DOS
What's with the "ARRH!"? lol I got it working. It's really neat! I like the scripting language too. It resembles BASIC in a lot of ways. I also noticed it uses "eLinker". So I take it your scripting language for your GUI is simplified and then the script is translated into a lower-level version to be interpreted by the GUI?
2008-09-152:57 PM

ksrRe:My Gui for DOS
Unfortunately I still can't access any folders. I'm running it out of C:EV5 but get this: [url=http://www.file-pasta.com/file/ev5.PNG][img]http://www.file-pasta.com/thumb/cf1e98406692c4d3f3d29217c586f005ba962d99.jpg[/img][/url] (as a side note, you assumed that my CDROM drive was D:, which it isn't :P)
2008-09-153:46 PM

xcoderRe:My Gui for DOS
Mine is! LOL! This is only a demo which i rushed to post on the freebasic site. I've got an installer but its not finished.. Stay posted. Xcoder.
2008-09-154:42 PM

rCXRe:My Gui for DOS
Really Cool B). The graphics ran smoothly. I like the icons. I must have taken awhile to make all them. The back button under the preferences wasn't working and for mysterious reasons the GUI doesn't start every time. I am using the latest FreeDOS. [b]ksr wrote:[/b] [quote] (as a side note, you assumed that my CDROM drive was D:, which it isn't :P) [/quote] Here's a quick fix but only for DOS. I only tested it under NTVDM since I don't have DOS drivers for my CD drive yet. [Code] Function IsCDdrive(DriveNum as ushort) as ushort 'Returns whether specified Drive is a cd drive. 'For DriveNum... ' a: = 0 ' b: = 1 ' c: = 2 ' c: = 3 ' e: = 4 ' ... dim status as ushort asm mov ax,0x150B mov cx,[DriveNum] int 0x2F 'ax = 1 if it is a cd drive, ax = 0 otherwise mov [status],ax 'return ax in status end asm if status = 1 THEN return -1 '-1 is true in FB else return 0 ' 0 is false in FB end if end Function [/code] btw Welcome to the site. Keep up the good work!
2008-09-161:35 AM

BrandonRe:My Gui for DOS
LOL doesn't freedos come with them?
2008-09-161:58 PM

agumaRe:My Gui for DOS
Hm, it gets stuck on the loading screen for me. Weird.
2008-09-165:56 PM

ToddRe:My Gui for DOS
How long did you wait? I got it to load after some time but it was slow to start. xcoder did say it had bugs so compatibility isn't a plus.
2008-09-166:42 PM

GUIs


2021 Brandon Cornell