Search found 556 matches
- May 01, 2024 13:29
- Forum: Libraries & Headers
- Topic: mdTypes
- Replies: 26
- Views: 19492
Re: mdTypes
Maybe you are using an outdated version of mdTypes... Do you remember the download url? Maybe you can try to update it from one of the provided sources.
- Apr 19, 2024 11:33
- Forum: Libraries & Headers
- Topic: mdTypes
- Replies: 26
- Views: 19492
Re: mdTypes
1. 2 .0 or 1. 20 .0? Are you talking about the Recent-Git-Builds ? These are inofficial builds from the current state of the repository. These might have bugs or something has changed (breaking changes) so that the mdTypes code doesn't work anymore. The official releases are listed here: https://fre...
- Apr 19, 2024 9:36
- Forum: Libraries & Headers
- Topic: mdTypes
- Replies: 26
- Views: 19492
Re: mdTypes
Well, it's not really maintained anymore. Lots of years ago I've tried to "pass" it to the FreeBASIC community by renaming all modules to create a "generic" version, but it was never added. I almost don't use FreeBASIC these days, so I'm not improving or testing the code with new...
- Sep 05, 2019 10:53
- Forum: Community Discussion
- Topic: Questions about wxFBE editor
- Replies: 1
- Views: 2814
Re: Questions about wxFBE editor
All I can tell you now is to check the sources. Within the plugins folder, you will find some examples of how to develop a plugin for wxFBE. Using the plugin system (which is based on https://freebasic.net/forum/viewtopic.php?f=8&t=21217), you can get access to the scintilla editor (getSTCPtr wi...
- Dec 01, 2018 23:37
- Forum: General
- Topic: Dynamic list of lists
- Replies: 14
- Views: 3371
Re: Dynamic list of lists
As you can see, it's for all types as it's not only containing Strings but itself. Check the examples.
- Nov 29, 2018 12:50
- Forum: General
- Topic: Dynamic list of lists
- Replies: 14
- Views: 3371
Re: Dynamic list of lists
#Include Once "md/util/mdList.bi" mdListDeclare(String) mdListDeclare(mdListString) Dim As mdList(String) strings1 strings1.add("1") strings1.add("2") strings1.add("3") Dim As mdList(String) strings2 strings2.add("4") strings2.add("5") str...
- Feb 17, 2017 9:41
- Forum: Sources, Examples, Tips and Tricks
- Topic: On FreeBASIC's random number generators.
- Replies: 35
- Views: 12022
Re: On FreeBASIC's random number generators.
I'll try to explain algo 5, but it's quite some years ago, so it might be not 100% correct: Algo 5 was introduced to get a "better" random number. Basically, it uses the default algo 3 Mersenne Twister but uses CryptApi or /dev/urandom as additional initial value. Both APIs are a bit slow ...
- Aug 30, 2016 12:01
- Forum: General
- Topic: Need help with implementation of variant-array
- Replies: 32
- Views: 5523
Re: Need help with implementation of variant-array
The reason my Variant works this way is, that at the time I wrote it, there was no Extends keyword and everything related to it. Furthermore you cannot overload the Select Case statement for your own datatypes, it always demands a FB primitive datatype and doesn't trigger the overloaded Cast As &quo...
- Apr 15, 2016 18:04
- Forum: Beginners
- Topic: GUI for Linux?
- Replies: 21
- Views: 8262
Re: GUI for Linux?
Well, I'm using it too on my PC and notebook. It's my main IDE, even though I'm still Π$/- I've never added the function browser.^^ It runs very well on Win7+8(.1)+10. But as I don't use any productive Linux (except for servers without any GUI) I cannot tell, if it still works well. Maybe St_W can a...
- Apr 15, 2016 16:05
- Forum: Beginners
- Topic: GUI for Linux?
- Replies: 21
- Views: 8262
Re: GUI for Linux?
That's true, wxFBE is an IDE with an integrated GUI designer, which works on Windows and Linux. However, the Linux builds are pretty old, I didn't get many people to test it, so it might not (but is supposed to) build anymore (and it was never really easy to build it on Linux because of all the depe...
- Mar 18, 2016 14:16
- Forum: Community Discussion
- Topic: python list in fb ?
- Replies: 16
- Views: 3996
Re: python list in fb ?
There's an old project of mine: Variant This allows you to store strings, integers and doubles in one datatype (you have to remove the ucase and lcase overloads from the Variant.bi as FB changed these recently). In combination with mdTypes you can achieve what you want: #Include Once "Variant.b...
- Feb 23, 2016 19:21
- Forum: Sources, Examples, Tips and Tricks
- Topic: The Ultimate FB HashMap
- Replies: 10
- Views: 6033
Re: The Ultimate FB HashMap
mdTypes also provides some Map classes . Simple example code: #Include Once "md/util/mdMap.bi" mdMapDeclare(String, String) Dim As mdMap(String, String) map Dim As String temp temp = map.put("key1", "value1") temp = map.put("key2", "value2") temp = ...
- Feb 23, 2016 19:19
- Forum: Sources, Examples, Tips and Tricks
- Topic: SQLite3 database class (32-bit)
- Replies: 51
- Views: 14998
Re: SQLite3 database class (32-bit)
The download contains a lot of examples and test codes and the linked tutorial is hosted by a german site but is written completely in english.
- Feb 21, 2016 11:36
- Forum: Sources, Examples, Tips and Tricks
- Topic: SQLite3 database class (32-bit)
- Replies: 51
- Views: 14998
Re: SQLite3 database class (32-bit)
mdTypes also offers a feature like that, and also uses the same interfaces for MySQL and a simple file based data format: mdTypes persistence api tutorial
- Jan 16, 2016 11:51
- Forum: Linux
- Topic: Need to ask a question
- Replies: 5
- Views: 2537
Re: Need to ask a question
There's wxFBE which comes with windows/linux support and also an GUI designer. Just have a look at it, but to be honest, currently I'm not working at it as not many people are using it.