Search found 6 matches

by S.ean
Oct 08, 2010 17:36
Forum: Projects
Topic: gui_chung an easy way to make gui windows
Replies: 27
Views: 9007

Looks easy

This looks easy by far. Kind of like BCX.
by S.ean
May 13, 2009 17:48
Forum: Beginners
Topic: Hide the parent window
Replies: 0
Views: 918

Hide the parent window

I have a console app, but there is a parent window that pops up. Is there a way to get rid of that window?

Edit: -s gui

I spotted it in a post, my internet at works is like a snail. Cool dildos.
by S.ean
Apr 06, 2009 5:48
Forum: Libraries & Headers
Topic: FB_GUI V1.20.5 (New Release Dec 19, 2019)
Replies: 107
Views: 62186

Missing ext/graphics.bi

Hi, I am missing the above library. Do you know where I can get it?
by S.ean
Mar 23, 2009 17:32
Forum: General
Topic: TONS of Global Variables
Replies: 52
Views: 9861

Global Variables

I been coding in a basic variant (universe) for years as a professional and it is stuck in the 80's as far as allowed designed structure allows. Oops was for when you made a mistake using the editor. Anyway, from this experience, I can say that global variables are a nightmare unless they constants.
by S.ean
Feb 20, 2009 9:54
Forum: Beginners
Topic: strptr problem with variable
Replies: 3
Views: 973

Great - works.

Thank you both.

Code: Select all

STATIC AS STRING stTemp 'instead of DIM
did the trick.

I have a similar BCX function which worked as expected without the STATIC keyword. I guess the compiler there must have static built in there somehow.

I am very pleased, thanks again.
by S.ean
Feb 20, 2009 8:45
Forum: Beginners
Topic: strptr problem with variable
Replies: 3
Views: 973

strptr problem with variable

I am using STRPTR in a dll function that I created to pass a string value back to a program of mine. All works well when I use a literal value in STRPTR eg STRPTR("HELLO"), but when I try using a variable i.e DIM stVar AS STRING stVar = "HELLO" RETURN STRPTR(stVar) 'RETURN STRPTR...