gamepad wont work in quickbasic on XP

Discuss whatever you want here--both QB and non-QB related. Anything from the DEF INT command to the meaning of life!

Moderators: Pete, Mods

Post Reply
newtoQB
Newbie
Posts: 1
Joined: Wed May 20, 2009 8:58 pm

gamepad wont work in quickbasic on XP

Post by newtoQB »

I have a simple game-like quickbasic program that allows a gamepad to control directional movement of a cursor -- at least it did when running in Windows 98. On a new computer with Windows XP, I can still use directional key presses to move the cursor, but the gamepad input is not recognized. Has anyone dealt with this (please keep replies in simple language, I am a beginner with QB)?
iamdenteddisk
Veteran
Posts: 185
Joined: Mon Jun 30, 2008 4:10 pm

check your drivers

Post by iamdenteddisk »

making sure you euther use the original disk that came with the game pad should solve it. the thing is that if you just use the windows plug and play driver it only works while windows is in control.

what you should look for is a dos driver for the game pad so then when windows surrenders control to Qb the dos enviroment has the game pad installed on it aswell.

I had this identacal problem with my USB game pad and my thumbdrive Now they both work well with QB even using an usb expander hub on my XP machine.

Also some older computer's just wont support it or only support it if the USB socket is setup as com1 or com2 in harware manager you may want to make sure of that aswell often times we forget QB has that com1&2 only quirk.

the only alternitive I ever heard beside these I offered above is using a USB to serial adapter and a serial driver but that goes a bit deeper than I can describe here..
Good Luck!
User avatar
burger2227
Veteran
Posts: 2466
Joined: Mon Aug 21, 2006 12:40 am
Location: Pittsburgh, PA

Post by burger2227 »

All you need is PortTalk for NT-XP machines. NTVDM does not allow access to game, serial or parallel ports.

Download the free PortTalk program and follow the install instructions. Place a copy of AllowIO.exe in your program's folder. Add the REG file information by double clicking it and clicking OK.

Create a batch file to run your program. It must be a compiled EXE!
Below is the syntax assuming the game port is &H201 (windows = 0201):

Code: Select all

 Allowio program.exe 0x201
Do NOT just run allowio.exe or your mouse may be disabled!

I'd really like to see your code for the gamepad. Could you email the program code to me?

Ted
Please acknowledge and thank members who answer your questions!
QB64 is a FREE QBasic compiler for WIN, MAC(OSX) and LINUX : https://www.qb64.org/forum/index.php
Get my Q-Basics demonstrator: https://www.dropbox.com/s/fdmgp91d6h8ps ... s.zip?dl=0
Post Reply