Search found 553 matches
- Jan 09, 2015 10:15
- Forum: Community Discussion
- Topic: Syntax highlighting looks terrible :-(
- Replies: 45
- Views: 4394
- Jan 09, 2015 8:24
- Forum: Community Discussion
- Topic: Syntax highlighting looks terrible :-(
- Replies: 45
- Views: 4394
Re: Syntax highlighting looks terrible :-(
Your keyword list is again outdated! For example, ThreadDetach and IsRedirected are missing.
Also, the fb-doc src package does not contain a file called 'fb-doc_emit_syntax.bas'.
Also, the fb-doc src package does not contain a file called 'fb-doc_emit_syntax.bas'.
- Jan 04, 2015 23:28
- Forum: Projects
- Topic: wxFBE, editor for both Windows and Linux
- Replies: 261
- Views: 55966
Re: wxFBE, editor for both Windows and Linux
Drag&Drop works on the whole application window EXCEPT for the coding widget where you type your code. So drop it on another part of the window. Watch the icon which appears while dragging the file. If one file opens but another not, I need more information like the content and path+name of the ...
- Jan 04, 2015 19:34
- Forum: Projects
- Topic: wxFBE, editor for both Windows and Linux
- Replies: 261
- Views: 55966
Re: wxFBE, editor for both Windows and Linux
I had no time to update it this time. It's easy to update or use the normal chm...
I've downloaded wxFBE.7z and extracted, set language to german, restarted, pressed F1 and "Index" button - works as expected.
I've downloaded wxFBE.7z and extracted, set language to german, restarted, pressed F1 and "Index" button - works as expected.
- Jan 04, 2015 16:28
- Forum: Projects
- Topic: wxFBE, editor for both Windows and Linux
- Replies: 261
- Views: 55966
Re: wxFBE, editor for both Windows and Linux
1. It's the 1.00 help file. wxFBE works with the devhelp definition xml files, so you have to create a devhelp file. You can find the code snippet which I'm using to generate these files in the repository: https://svn.freebasic-portal.de/svn/wxfbe/help/ Simply unzip the current html help files to th...
- Jan 03, 2015 16:51
- Forum: Projects
- Topic: wxFBE, editor for both Windows and Linux
- Replies: 261
- Views: 55966
Re: wxFBE, editor for both Windows and Linux
New build uploaded. Please use the update checker plugin to get the new version and changelog or download the package - link in first post. It contains the new fltk emitter, to use it, go to the plugins directory and change the "_" to "." in the file name and restart wxFBE. For r...
- Dec 22, 2014 17:08
- Forum: Libraries
- Topic: FLTK 1.3.x C Wrapper (obsolete)
- Replies: 753
- Views: 92478
Re: FLTK C Wrapper (Fast Light Toolkit v 1.3.2)
The emitter is not included so far, but I will commit it soon. Than you can check out the repository and compile with compile.bat and compilePlugins.bat (or .sh for Linux). I'll make a post in the wxFBE thread (thx for the link fxm).
- Dec 20, 2014 19:43
- Forum: Libraries
- Topic: FLTK 1.3.x C Wrapper (obsolete)
- Replies: 753
- Views: 92478
Re: FLTK C Wrapper (Fast Light Toolkit v 1.3.2)
But feel free and write a fltk GUI designer with support of all containers Fl_Group Fl_Pack Fl_Scroll Fl_Tabs Fl_Text_Display Fl_Tile ... if you like. That will never happen. :P It supports most of the widgets which the designer can handle, so it's enough. The only not working widget is the calenda...
- Dec 20, 2014 18:49
- Forum: Libraries
- Topic: FLTK 1.3.x C Wrapper (obsolete)
- Replies: 753
- Views: 92478
Re: FLTK C Wrapper (Fast Light Toolkit v 1.3.2)
Hi guys, I'd like to have you see this and tell me what you think: Video
- Dec 14, 2014 11:34
- Forum: Tips and Tricks
- Topic: sqlite - create db,table and insert some rec
- Replies: 12
- Views: 2493
Re: sqlite - create db,table and insert some rec
And it would be nice to have Database, table, recordset objects written in FB. Public rs As New ADODB.Recordset rs.Open ("Select * from Savings"), con, 3, 2 You mean like this: 'Get results by id Dim As mdList(mdMapStringString) resultList = sql.dynamicQuery("SELECT * FROM MyFoo WHER...
- Dec 13, 2014 15:32
- Forum: Tips and Tricks
- Topic: sqlite - create db,table and insert some rec
- Replies: 12
- Views: 2493
Re: sqlite - create db,table and insert some rec
mdTypes has some kind of persistence support for SQLite, but also MySQL. Here an example: #Include Once "md/persistence/mdSQLitePersistence.bi" 'Create persisted class Type MyFoo Declare Constructor () Declare Constructor (ByRef newObject As mdMap(String, String)) Declare Operator Cast() ...
- Dec 04, 2014 12:03
- Forum: General
- Topic: Hash function
- Replies: 5
- Views: 942
- Oct 18, 2014 13:18
- Forum: Beginners
- Topic: List, Hash, Vectors
- Replies: 2
- Views: 635
Re: List, Hash, Vectors
AFAIK fbext won't work with the latest fbc and needs to install libs which you have to precompile for linux. You can have a look at mdTypes . It doesn't have so many classes like fbext, but should work just fine for your needs. It is also only based on include files, so no libs needed (except for so...
- Sep 05, 2014 18:24
- Forum: Projects
- Topic: wxFBE, editor for both Windows and Linux
- Replies: 261
- Views: 55966
Re: wxFBE, editor for both Windows and Linux
We know this issue already: http://www.freebasic.net/forum/viewtopic.php?p=161266#p161266
It is possible if you have a static version of the lib.
It is possible if you have a static version of the lib.
Re: mdTypes
mdTypes now has a persistence api which allows you to store data and lists of data in databases. For now it supports MySQL, SQLite, and a simple text-based mdTypesPersistence. For more information please check out the tutorial: http://www.freebasic-portal.de/tutorials/using-mdtypes-en-108-s9.html