Search found 354 matches
- Mar 08, 2021 14:32
- Forum: Projects
- Topic: VisualFBEditor - IDE for FreeBasic
- Replies: 222
- Views: 27727
Re: VisualFBEditor - IDE for FreeBasic
Removed crt dependency: https://github.com/XusinboyBekchanov/MyFbFramework/commit/e52809aeccb0ffcea47e8febe5352e26983c4386 Now I think you can compile on your system. Sorry. I didn't see your comment. No. Still fails. The crt was used by GTK and GLib themselves, so as I said on my previous post any...
- Mar 08, 2021 14:04
- Forum: Projects
- Topic: VisualFBEditor - IDE for FreeBasic
- Replies: 222
- Views: 27727
Re: VisualFBEditor - IDE for FreeBasic
Removed crt dependency: https://github.com/XusinboyBekchanov/MyFbFramework/commit/e52809aeccb0ffcea47e8febe5352e26983c4386 Now I think you can compile on your system. Sorry. I didn't see your comment. No. Still fails. The crt was used by GTK and GLib themselves, so as I said on my previous post any...
- Mar 08, 2021 13:57
- Forum: Projects
- Topic: VisualFBEditor - IDE for FreeBasic
- Replies: 222
- Views: 27727
Re: VisualFBEditor - IDE for FreeBasic
Cretin Ho wrote:If you think the changes you made to help me is not needed anymore feel free to roll it back to the original state. Thank you again.
No, I will not roll it back. I added this dependency because of not finding the standard functions.
- Mar 08, 2021 13:44
- Forum: Projects
- Topic: VisualFBEditor - IDE for FreeBasic
- Replies: 222
- Views: 27727
Re: VisualFBEditor - IDE for FreeBasic
I deleted all references to __FB_LINUX__: https://github.com/XusinboyBekchanov/MyFbFramework/commit/063b7c809cf93ada32ddf1751a0ccea974403aa0 Now you can add #if defined(__FB_SOLARIS__) when needed. And let me know what's fixed, too. I don't know if my suggestion to catch each platform manually (lik...
- Mar 08, 2021 11:48
- Forum: Beginners
- Topic: Questions before moving on to FB
- Replies: 10
- Views: 156
Re: Questions before moving on to FB
stephane wrote:Ok, thank you i all understood.
Is there a site with all third party libs in the same place ?
You can take a look here:
https://www.freebasic.net/forum/viewtopic.php?t=28510
- Mar 08, 2021 0:26
- Forum: Beginners
- Topic: Questions before moving on to FB
- Replies: 10
- Views: 156
Re: Questions before moving on to FB
1 / Can we manipulate a page opened in the default browser (get/set input value, get URL and title etc) natively, with a lib, which one ? Is it cross-platform ... Is it for WebBrowser control or for another Browser in your computer? 2 / In delphi you can modify the value of a component in the exe (...
- Mar 08, 2021 0:00
- Forum: Projects
- Topic: VisualFBEditor - IDE for FreeBasic
- Replies: 222
- Views: 27727
Re: VisualFBEditor - IDE for FreeBasic
I deleted all references to __FB_LINUX__:
https://github.com/XusinboyBekchanov/My ... a974403aa0
Now you can add #if defined(__FB_SOLARIS__) when needed.
And let me know what's fixed, too.
https://github.com/XusinboyBekchanov/My ... a974403aa0
Now you can add #if defined(__FB_SOLARIS__) when needed.
And let me know what's fixed, too.
- Mar 06, 2021 14:41
- Forum: Projects
- Topic: VisualFBEditor - IDE for FreeBasic
- Replies: 222
- Views: 27727
Re: VisualFBEditor - IDE for FreeBasic
Thanks for the good review.
- Mar 05, 2021 20:21
- Forum: Projects
- Topic: MyFbFramework - My FreeBasic Framework
- Replies: 14
- Views: 2054
Re: MyFbFramework - My FreeBasic Framework
New version: Version 1.2.7 (March 6, 2021) - Added: __USE_WEBKITGTK__ definition - Added: Chart control - Added: MouseHover event to Control - Fixed: GTK window move on Windows - Added: TimerComponent on Linux - Fixed: RichTextBox crash - Fixed: ReadOnly property of RichTextBox in Design Mode - Impr...
- Mar 05, 2021 20:20
- Forum: Projects
- Topic: VisualFBEditor - IDE for FreeBasic
- Replies: 222
- Views: 27727
Re: VisualFBEditor - IDE for FreeBasic
I updated the program: Version 1.2.7 (March 6, 2021) - Added: Chart Example - Improved: TabWindow - Fixed: Templates in Linux - Added: ToolTip for variables in Debug - Fixed: Move Components in Designer - Improved: EditControl - Fixed: Close tabs on quit IDE - Added: File Encoding and New line types...
- Mar 04, 2021 14:46
- Forum: Community Discussion
- Topic: How to cross compile to another platform?
- Replies: 7
- Views: 150
Re: How to cross compile to another platform?
Yeah I know but which gcc? For example, the target is Solaris. Does it invoke the system's gcc (incorrect, this gcc generates binary for Linux) or my x86_64-pc-sun2.11-gcc (correct, this is the cross compiler that generates binary for Solaris)? This is the piece of information I wanted to know. Whi...
- Mar 04, 2021 14:29
- Forum: Linux
- Topic: Shared library acces (GTK + SCINTILLA)
- Replies: 4
- Views: 83
Re: Shared library acces (GTK + SCINTILLA)
My advice: Study how Scintilla is used in geany, use it.
- Mar 04, 2021 14:25
- Forum: Community Discussion
- Topic: How to cross compile to another platform?
- Replies: 7
- Views: 150
Re: How to cross compile to another platform?
More information? Does this generate C sources or binaries directly? I know I should just try it myself, but I don't have my computer now. Posting from guest account on a public PC. -gen gcc creates a C file and compiles with gcc (without user intervention). -gen gas and -gen gas64 create binary fi...
- Mar 04, 2021 14:06
- Forum: Community Discussion
- Topic: How to cross compile to another platform?
- Replies: 7
- Views: 150
Re: How to cross compile to another platform?
I'm on Linux. I want to compile for the Solaris target. How could I do it? Could I have fbc to generate binaries for me or it will only generate C sources and I have to use the gcc cross compiler to have the binaries? I already have the gcc cross compiler working. Please help me with the proper pro...
- Mar 03, 2021 15:40
- Forum: Community Discussion
- Topic: How to cross compile to another platform?
- Replies: 7
- Views: 150
Re: How to cross compile to another platform?
I'm on Linux. I want to compile for the Solaris target. How could I do it? Could I have fbc to generate binaries for me or it will only generate C sources and I have to use the gcc cross compiler to have the binaries? I already have the gcc cross compiler working. Please help me with the proper pro...