Search found 3 matches

by palahoot
Fri Dec 16, 2011 5:54 pm
Forum: Freebasic Questions & Answers
Topic: looking for some help of qb/fb commands
Replies: 4
Views: 24128

was hoping to limit the amount of files needed for this (to mean 0) to run can do this: 1) via SET 2) via temp file 3) via registry entries set seemed the simplist so far, but that is not panning out. working on temp file as we speak will dabble into regentries as well. but my other team has come up...
by palahoot
Fri Dec 16, 2011 2:45 pm
Forum: Freebasic Questions & Answers
Topic: looking for some help of qb/fb commands
Replies: 4
Views: 24128

burger2227 wrote:ENVIRON values can only be set while the program is running if at all.

Windows will not retain the value after the program is closed.
so there is no other workaround to make this function as expected?
by palahoot
Fri Dec 16, 2011 11:52 am
Forum: Freebasic Questions & Answers
Topic: looking for some help of qb/fb commands
Replies: 4
Views: 24128

looking for some help of qb/fb commands

here is my problem compile and run this: #Include "crt/stdlib.bi" SetEnviron "return=c:\" 'set return equal to c drive print "return is currently set to "; Environ ("return") 'print the c:\ SetEnviron "return=" + CurDir 'set return equal to current d...