Search found 7 matches

by mayankjohri
Sep 28, 2011 0:48
Forum: Projects
Topic: FireFly Visual Designer for FreeBASIC (Updated March 8, 2016)
Replies: 371
Views: 161543

Getting few errors

Hello, I am writing a program which will work as Synaptic Package Manager for MS Windows. The program uses sqlite3 for database and Firefly for GUI. From past few days, I am getting following error messages while compiling. --------------- FreeBASIC Compiler - Version 0.23.0 (08-14-2011) for win32 (...
by mayankjohri
Aug 08, 2011 16:03
Forum: Libraries & Headers
Topic: wxWidgets 2.8.12 FreeBASIC C wrapper
Replies: 88
Views: 50179

so is there a way to get wxchecklistbox controls as wxwindows does not have options for wxchecklistbox.
by mayankjohri
Aug 08, 2011 1:13
Forum: Libraries & Headers
Topic: wxWidgets 2.8.12 FreeBASIC C wrapper
Replies: 88
Views: 50179

I am trying to xrc for gui design and is at a loss how to get the update the controls such as checklistctrl. In the below example when i use wxwindow functions to update the controls then they work. but if i try to use the control specific functions they fail. In python I used to use "xrc.XRCCT...
by mayankjohri
Aug 03, 2011 17:27
Forum: Beginners
Topic: difference between dim and var.
Replies: 7
Views: 2249

Thanks for the help, based on the above information, I tried the following #include once "ext/database/database.bi" #include once "ext/database/drivers/sqlite3driver.bi" using ext.database Type test As Connection( "sqlite3.db", newSQLite3Driver() ) End Type and I am get...
by mayankjohri
Aug 03, 2011 14:50
Forum: Beginners
Topic: difference between dim and var.
Replies: 7
Views: 2249

thanks it worked. Once I have completed the program. I will provide the details of it here, I am developing it on sourceforge.net website.
by mayankjohri
Aug 01, 2011 12:33
Forum: Beginners
Topic: difference between dim and var.
Replies: 7
Views: 2249

Thanks, Now i am getting another error. #include once "ext/containers/hashtable.bi" using ext Type app_repo as FBEXT_HASHTABLE( (String) ) applst Declare Property AddApp(ByVal app_name As String, ByVal app_version As String) Declare Property findApp(ByVal app_name As String) End Type Prope...
by mayankjohri
Jul 31, 2011 12:31
Forum: Beginners
Topic: difference between dim and var.
Replies: 7
Views: 2249

difference between dim and var.

I just wanted to know difference between var and dim, because i am trying to do the following # include once "ext/containers/hashtable.bi" using ext Type test as FBEXT_HASHTABLE(integer) moves End test type test dim test but i am getting the following error Expected identifier, found 'fbex...