QB64.org Forum

Active Forums => QB64 Discussion => Topic started by: jessicajones on June 20, 2020, 11:08:44 am

Title: compiling FreeBasic file
Post by: jessicajones on June 20, 2020, 11:08:44 am
Hi

I'm trying to compile a BASIC file, made in FreeBasic, in QB64.

The following statements give syntax error:

#include "dostime.bas"
#include "fbgfx.bi"

Is "include" supported in QB64 or how to do these statements in QB64?

thx
Title: Re: compiling FreeBasic file
Post by: FellippeHeitor on June 20, 2020, 11:28:32 am
Over here it is apostrophe $INCLUDE:

Code: QB64: [Select]
  1. '$include:'dostime.bas'
  2. '$include:'fbgfx.bi'

More on it at http://www.qb64.org/wiki/$INCLUDE (http://www.qb64.org/wiki/$INCLUDE)
Title: Re: compiling FreeBasic file
Post by: jessicajones on June 20, 2020, 11:29:33 am
thx

working!!