VisualFBEditor - IDE for FreeBasic
Re: VisualFBEditor - IDE for FreeBasic
is there any plan to add a trayicon control to visualfbeditor? and this can also be used by the ide.
-
- Posts: 844
- Joined: Jul 26, 2018 18:28
Re: VisualFBEditor - IDE for FreeBasic
Added: NotifyIcon component, Added: NotifyIcon example:
https://github.com/XusinboyBekchanov/My ... 7d4ae93ada
Re: VisualFBEditor - IDE for FreeBasic
Wow,awesome ! And thx for your effort at an impressive rate.
Re: VisualFBEditor - IDE for FreeBasic
Thanks.Xusinboy Bekchanov wrote: ↑Jan 12, 2025 13:24Added: NotifyIcon component, Added: NotifyIcon example:
https://github.com/XusinboyBekchanov/My ... 7d4ae93ada
[Win10 64 bit,fbc 64 1.20.0 (2024-06-17)]
With the most recent git packages(both MyFbFramework & Visual FBEditor,as of today),MyFramework 32bit dll built successfully. but when I tried to build MyFbFramework 64bit dll ,it failed with below message:
Code: Select all
Error: Type mismatch, at parameter 1 (Style) of CHANGESTYLE()
Error: Type mismatch, at parameter 1 (Style) of CHANGESTYLE()
Error: Type mismatch, at parameter 1 (Style) of CHANGESTYLE()
Error: Type mismatch, at parameter 1 (Style) of CHANGESTYLE()
Error: Type mismatch, at parameter 1 (Style) of CHANGESTYLE()
Error: Type mismatch, at parameter 1 (Style) of CHANGESTYLE()
Error: Type mismatch, at parameter 1 (Style) of CHANGESTYLE()
Error: Type mismatch, at parameter 1 (Style) of CHANGESTYLE()
Error: Type mismatch, at parameter 1 (Style) of CHANGESTYLE()
Error: Type mismatch, at parameter 1 (Style) of CHANGESTYLE()
Error: Too many errors, Exit
-
- Posts: 844
- Joined: Jul 26, 2018 18:28
Re: VisualFBEditor - IDE for FreeBasic
Fixed: NotifyIcon on 64-bit:PeterHu wrote: ↑Jan 13, 2025 2:24Thanks.Xusinboy Bekchanov wrote: ↑Jan 12, 2025 13:24Added: NotifyIcon component, Added: NotifyIcon example:
https://github.com/XusinboyBekchanov/My ... 7d4ae93ada
[Win10 64 bit,fbc 64 1.20.0 (2024-06-17)]
With the most recent git packages(both MyFbFramework & Visual FBEditor,as of today),MyFramework 32bit dll built successfully. but when I tried to build MyFbFramework 64bit dll ,it failed with below message:Code: Select all
Error: Type mismatch, at parameter 1 (Style) of CHANGESTYLE() Error: Type mismatch, at parameter 1 (Style) of CHANGESTYLE() Error: Type mismatch, at parameter 1 (Style) of CHANGESTYLE() Error: Type mismatch, at parameter 1 (Style) of CHANGESTYLE() Error: Type mismatch, at parameter 1 (Style) of CHANGESTYLE() Error: Type mismatch, at parameter 1 (Style) of CHANGESTYLE() Error: Type mismatch, at parameter 1 (Style) of CHANGESTYLE() Error: Type mismatch, at parameter 1 (Style) of CHANGESTYLE() Error: Type mismatch, at parameter 1 (Style) of CHANGESTYLE() Error: Type mismatch, at parameter 1 (Style) of CHANGESTYLE() Error: Too many errors, Exit
https://github.com/XusinboyBekchanov/My ... 8ff05d25a2
Thanks.
Re: VisualFBEditor - IDE for FreeBasic
Thanks , the library built successfully,32 bit example built and run successfuly except the missing Chinese(Simplified).lng file.
but for 64 bit example,when trying to run,all msgbox() did not works,and the application quitted automatically.And also got below message from the console :
but for 64 bit example,when trying to run,all msgbox() did not works,and the application quitted automatically.And also got below message from the console :
Code: Select all
E:\Learning\FreeBasic\VisualFBEditor-Nightly\Controls\MyFbFramework\examples\NotifyIcon>"notifyicon example"
Open file failure! in function Application.CurLanguage. File Name: E:\Learning\FreeBasic\VisualFBEditor-Nightly\Controls
\MyFbFramework\examples\NotifyIcon/Languages/Chinese (Simplified).lng
Aborting due to runtime error 12 ("segmentation violation" signal) in E:\Learning\FreeBasic\VisualFBEditor-Nightly\Contr
ols\MyFbFramework\mff\Control.bas::PROCESSMESSAGE()
-
- Posts: 844
- Joined: Jul 26, 2018 18:28
Re: VisualFBEditor - IDE for FreeBasic
Fixed: NotifyIcon when compiling with fbc 1.20 64-bit:PeterHu wrote: ↑Jan 13, 2025 5:40 Thanks , the library built successfully,32 bit example built and run successfuly except the missing Chinese(Simplified).lng file.
but for 64 bit example,when trying to run,all msgbox() did not works,and the application quitted automatically.And also got below message from the console :
Code: Select all
E:\Learning\FreeBasic\VisualFBEditor-Nightly\Controls\MyFbFramework\examples\NotifyIcon>"notifyicon example" Open file failure! in function Application.CurLanguage. File Name: E:\Learning\FreeBasic\VisualFBEditor-Nightly\Controls \MyFbFramework\examples\NotifyIcon/Languages/Chinese (Simplified).lng Aborting due to runtime error 12 ("segmentation violation" signal) in E:\Learning\FreeBasic\VisualFBEditor-Nightly\Contr ols\MyFbFramework\mff\Control.bas::PROCESSMESSAGE()
https://github.com/XusinboyBekchanov/My ... 3b48dc35f0
Thanks.
Re: VisualFBEditor - IDE for FreeBasic
Thanks,it works.
Re: VisualFBEditor - IDE for FreeBasic
It is possible to have only one instance running? E.g. when I select *.bas file "Open with -> Visual FB Editor" that the file is added in a new tab to current opened editor instead of opening a new instance.
-
- Posts: 844
- Joined: Jul 26, 2018 18:28
Re: VisualFBEditor - IDE for FreeBasic
Improved: When using 'Open with -> Visual FB Editor', the file is added as a new tab in the currently open editor instead of opening a new instance:
https://github.com/XusinboyBekchanov/Vi ... c803ce25f9
Re: VisualFBEditor - IDE for FreeBasic
I compiled the IDE with your modifications but still same behavior - when I open in Windows Explorer with rmb Open With -> Visual FB Editor a new version will be opened in parallel instead of loading the *.bas file to current opened editor in a new tab.
-
- Posts: 844
- Joined: Jul 26, 2018 18:28
Re: VisualFBEditor - IDE for FreeBasic
Fixed: Open With:
https://github.com/XusinboyBekchanov/Vi ... 3a5ee2bf20
But two instances should not be launched in parallel. First, the main window of the first instance should be created.
Re: VisualFBEditor - IDE for FreeBasic
Thanks, looks good now. Does it make sense to bring to IDE window to front (top) after Open With action or if it is permanent assigned to Visual FB Editor by double click on a *.bas file?
I renamed the Frame.png file name because I don't want how see it. It would be good to have the option to display it or not, or even select any image...
I renamed the Frame.png file name because I don't want how see it. It would be good to have the option to display it or not, or even select any image...
-
- Posts: 844
- Joined: Jul 26, 2018 18:28
Re: VisualFBEditor - IDE for FreeBasic
Thanks.
Now the IDE window moves to the foreground when opening with and when double-clicking on a file (in my system, the option to always open with this application is checked).
In the settings there is an option Show Holiday Frame in the Code Editor item. You can use it or you can put another picture in the Frame.png file.
-
- Posts: 844
- Joined: Jul 26, 2018 18:28
Re: VisualFBEditor - IDE for FreeBasic
Added: Set IDE window to foreground when opening file with "Open With":
https://github.com/XusinboyBekchanov/Vi ... 3950fd7286