What is a Common Shared variable% and how do you use it?
Posted: Mon Dec 27, 2004 3:12 pm
Hello again...What is a Common Shared variable% and how do you use it?
HELP???
(yes...again)
HELP???

(yes...again)
Discuss QBasic, Freebasic, QB64 and more
http://www.petesqbsite.com/phpBB3/
Code: Select all
COMMON SHARED a1 AS INTEGER
Code: Select all
Common shared Array() As MyType
Dim shared Array(100) As MyType
Code: Select all
Common shared a, b
a = 10
b = 5
Code: Select all
Common shared c, d