I already use auto complete for long oft used statments like
'dim as integer' is defined as dai<space> etc.
I just thought that someone along the
way may have thought the same as me.
Bit of a trek to read.
no offence meant obviously.
Search found 27 matches
- Jul 16, 2014 14:18
- Forum: Community Discussion
- Topic: is there a short hand version that is not qb?
- Replies: 14
- Views: 1694
- Jul 16, 2014 11:30
- Forum: Community Discussion
- Topic: is there a short hand version that is not qb?
- Replies: 14
- Views: 1694
is there a short hand version that is not qb?
I love coding in fb. I like its flexability its pretty unique in that regard. The one thing that slows me down with it is the long TYPE names like integer instead of just int. Or keywords like function instead of 'func'. I know fbs macro functions allow for renaming certain things but i dont want to...
- Jul 16, 2014 10:17
- Forum: Projects
- Topic: Free basic text editor src included.:)
- Replies: 8
- Views: 2335
Re: Free basic text editor src included.:)
Hi guys sry maybe i should explain a few things. First BasicEd was a toy project for to get used to using fb and winapi. It was coded in radasm2 and is strongly influenced from that ide. Its only major issues i intend to fix is a lot of 'trial' code is lying about in it and all paths are absolute as...
- Jul 14, 2014 19:46
- Forum: Projects
- Topic: Free basic text editor src included.:)
- Replies: 8
- Views: 2335
Re: Free basic text editor src included.:)
Sry but it contains at least a dozen files. Posting each file would be ridiculous. Suggest an alternative and ill reup it. :)
And no written from scratch. I did not reference any thing except msdn.
And no written from scratch. I did not reference any thing except msdn.
- Jul 14, 2014 16:12
- Forum: Projects
- Topic: Free basic text editor src included.:)
- Replies: 8
- Views: 2335
Free basic text editor src included.:)
BasicEd is an editor for fb files. It is written entirely in fb. It supports basic winapi auto complete. Function listing.projects and some examples of listbox customizing.msdn via google support. Win32 api intergrated help. Fully configurable interface. Multi doc support. Advance edit cyrl usage in...
- Apr 11, 2014 16:40
- Forum: General
- Topic: fb or me? prolly me :)
- Replies: 3
- Views: 585
Re: fb or me? prolly me :)
sorry for the delay. the windows api functions are used for loading the txt files into the edit control and fbs line funcs are used by the properties parser to identify funcs and data declares for the code complete. I found the error. my function was opening a file that didnt already exist in a weir...
- Mar 13, 2014 17:48
- Forum: General
- Topic: fb or me? prolly me :)
- Replies: 3
- Views: 585
fb or me? prolly me :)
ok weird problem here. I started developing an ide for freebasic in my spare time back in oct last year. at the time the ide was developing well but there was a weird bug with the app where, when a project was created, the 0 byte files (Projname.bas etc) were created there would appear to be a 'Crea...
- Jan 01, 2014 11:01
- Forum: General
- Topic: Subclassing the RaEdit control crashes app. [SOLVED]
- Replies: 1
- Views: 612
Re: Subclassing the RaEdit control crashes app.
ok, i finally solved this one myself. The RaEdit control itself actually has not one but two edit controls both called "RAEditChild" which (it appears..) also each have there own unique window proc. This means you need subclass both windows to seperate functions. There is some other code o...
- Dec 24, 2013 17:46
- Forum: General
- Topic: Subclassing the RaEdit control crashes app. [SOLVED]
- Replies: 1
- Views: 612
Subclassing the RaEdit control crashes app. [SOLVED]
Hi guys. Im looking for some help regarding ketilo's RaEdit control. Not sure if this is the right place to ask but since ketilo(fbedit author) frequents this forum I figured this is the best place to ask. Im trying to subclass the RaEdit control to provide code completion support for my IDE but i h...
- Dec 24, 2013 13:51
- Forum: Tips and Tricks
- Topic: Add Popup Balloon Tooltip to Dlg Ctrls
- Replies: 0
- Views: 759
Add Popup Balloon Tooltip to Dlg Ctrls
This function creates a ballon tooltip for an item in a dialog box. Note: Once applied the text can never be changed. To do this you would have to handle windows messages like TTN_GETDISPINFO. This is just a cheap way of providing your user with more details on simple stuff like an option dialog win...
Re: C BASIC
Hehe I just read this entire thread and im still laughing.
Chill guys its just a forum. Wars going on in the world you know...
anyways it sounds like an iteresting project. But who would convert the code
to the hybrid fb/c form and if they could do that then wouldnt that user already knows C?
Chill guys its just a forum. Wars going on in the world you know...
anyways it sounds like an iteresting project. But who would convert the code
to the hybrid fb/c form and if they could do that then wouldnt that user already knows C?
- Dec 06, 2013 23:12
- Forum: Beginners
- Topic: Can/Cant use strings in DLL?
- Replies: 3
- Views: 564
Re: Can/Cant use strings in DLL?
FB's string functions should work fine inside DLLs. However there's a known problem when returning FB dynamic strings from functions in a DLL, when they're called from another DLL or the main .exe: #620 (the problem can be avoided by using Byref As String parameters to store the result, instead of ...
- Dec 06, 2013 17:12
- Forum: Beginners
- Topic: Can/Cant use strings in DLL?
- Replies: 3
- Views: 564
Can/Cant use strings in DLL?
k, im going out on a limb here but didnt i read somewhere that u cant use FB's native string functions inside a DLL function. I seek clarifaction please. I have recently been spending ALOT of time coding a somewhat basic IDE for FB coders but i have a nagging feeling i have read somewhere that using...
- Nov 14, 2013 1:17
- Forum: Projects
- Topic: Filename Fixer (win32)
- Replies: 2
- Views: 964
Filename Fixer (win32)
This is a small program i wrote for cleaning up filenames of mp3 and movies that i downloaded from the net. You simply drop the files on the window and click 'Fix'.Simple. :) It's deliberatly very basic and the renaming rules should be easy to modify and customize for an average or beginner fb coder...
- Nov 01, 2013 14:22
- Forum: General
- Topic: Keyboard hook
- Replies: 1
- Views: 464
Re: Keyboard hook
The basic principle behind hooking is that you create a dll with a shared data secion that is loaded into all active processes on the win32 system. The dll has a data section that is exacly the same to all running proccesses. ie if you set a flag in your app, every other app has the changed version ...