Search found 3 matches

by Aureal
Tue Jul 11, 2017 1:10 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: How to pass multi-dimensional arrays to a function
Replies: 1
Views: 14984

How to pass multi-dimensional arrays to a function

Hi, I've recently discovered that passing arrays to a function is possible. Well, I've decided to create a tetris clone, and, for the sake of optimization, I've put the sprites on a multi-dimensional array, storing them as strings. For example dim shared array(4, 5) as string array(1, 1) = " # ...
by Aureal
Tue Jul 11, 2017 12:55 pm
Forum: News and Announcements
Topic: MMORPG fully developed in QB64 SDL w/source code and resources from Argentina!
Replies: 3
Views: 25176

Re: MMORPG fully developed in QB64 SDL w/source code and resources from Argentina!

NAAAH BOLUDO RE COPADO ahre podes poner la ñ si haces un _mapunicode a la cp850 u oem850: 'Microsoft_pc_cp850 199,252,233,226,228,224,229,231,234,235,232,239,238,236,196,197 201,230,198,244,246,242,251,249,255,214,220,248,163,216,215,402 225,237,243,250,241,209,170,186,191,174,172,189,188,161,171,18...
by Aureal
Sat Jul 23, 2016 10:53 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Clickable Area
Replies: 1
Views: 7046

Clickable Area

Hi, I'm somewhat new to QBasic, so I would like to know how to set a clickable area on the screen. I'm currently using a Mouse Subroutine I found on the internet, When called (e.g. MOUSE 3) it returns H (X), V(Y), and the button presses(1 for left, 2 for right and 3 for both). Anyways, I would want ...