Search found 260 matches

by oyster
Sep 03, 2022 23:11
Forum: Libraries & Headers
Topic: FLTK headers for FreeBasic OOP (no C wrapper)
Replies: 232
Views: 27714

Re: FLTK headers for FreeBasic OOP (no C wrapper)

I give up, since libraries, which do not exist on Windows OS, are used by this lib $ /e/msys64/home/USER/_basic/freebasic/bin/fbc.exe -gen gas64 a.bas ld.exe: cannot find -lX11: No such file or directory ld.exe: cannot find -lXrender: No such file or directory ld.exe: cannot find -lXext: No such fil...
by oyster
Sep 03, 2022 11:15
Forum: Libraries & Headers
Topic: FLTK headers for FreeBasic OOP (no C wrapper)
Replies: 232
Views: 27714

Re: FLTK headers for FreeBasic OOP (no C wrapper)

do you mean extern "c++" #include once "Fl_Window.bi" #include once "Fl_Button.bi" dim w as Fl_Window = Fl_Window(940,380,"Window") dim b as Fl_button = Fl_button(10,30,150,30,"This is a button") w.end_() w.show fl.run_ end extern if so, I get $ /e/p...
by oyster
Sep 03, 2022 4:49
Forum: Libraries & Headers
Topic: FLTK headers for FreeBasic OOP (no C wrapper)
Replies: 232
Views: 27714

Re: FLTK headers for FreeBasic OOP (no C wrapper)

well, this is the information in MSYS2+Mingw64 on windows 10 64 bits. Lastest `FLTK-headers-for-FreeBasic-main.zip` is downloaded directly from https://github.com/angros47/FLTK-headers-for-FreeBasic . Your simple code is used as `a.bas` ```basic #include once "Fl_Window.bi" #include once &...
by oyster
Aug 30, 2022 4:19
Forum: Projects
Topic: VisualFBEditor - IDE for FreeBasic
Replies: 912
Views: 137276

Re: VisualFBEditor - IDE for FreeBasic

For even better development of the library MyFbFramework, I changed the license as in LCL. Changed: License to modifiedLGPL: https://github.com/XusinboyBekchanov/MyFbFramework/commit/93e7008a09d744c9431ab01550f54b4694e16731 too long and too many jargons. can anyone give clear answers to these quest...
by oyster
Aug 17, 2022 15:22
Forum: Libraries & Headers
Topic: FLTK headers for FreeBasic OOP (no C wrapper)
Replies: 232
Views: 27714

Re: FLTK headers for FreeBasic OOP (no C wrapper)

I have but only windows 10 64 bits. No, I don't use WSL.
by oyster
Aug 16, 2022 9:30
Forum: Windows
Topic: Using .NET DLL?
Replies: 7
Views: 2675

Using .NET DLL?

there are some related questions: 1. is there any detailed tutorial to use .net DLL in freebasic? 2. can System.Windows.Forms be used to created GUI? 3. can we bundle .net DLL into EXE file compiled by freebasic? When the EXE runs, no DLL is extacted into the harddisk. 4. can we bundle all .net DLLs...
by oyster
Aug 12, 2022 15:08
Forum: Projects
Topic: VisualFBEditor - IDE for FreeBasic
Replies: 912
Views: 137276

Re: VisualFBEditor - IDE for FreeBasic

Using an editor with GPL to edit your source won't do that. GPL is a linking license, if you don't link to it, it doesn't apply. I know that. But here, I mean https://github.com/XusinboyBekchanov/MyFbFramework, which is used by VisualFBEditor, but can also be used as a GUI lib too. I checked https:...
by oyster
Aug 12, 2022 2:32
Forum: Projects
Topic: VisualFBEditor - IDE for FreeBasic
Replies: 912
Views: 137276

Re: VisualFBEditor - IDE for FreeBasic

Avata wrote: Aug 09, 2022 11:17 So which licenses is better for you?
a license which does not ask the developer to open his source even for commercial usage.
by oyster
Aug 07, 2022 15:53
Forum: Projects
Topic: VisualFBEditor - IDE for FreeBasic
Replies: 912
Views: 137276

Re: VisualFBEditor - IDE for FreeBasic

Coolman wrote: Aug 05, 2022 16:38 yes. i hadn't noticed. sorry. i will continue to study raylib which has an unrestricted license.
well, thank you for reminding me of the GPL license of VisualFBEditor/mff, which will absolutely drive me run away from VisualFBEditor/mff.
by oyster
Jul 26, 2022 14:59
Forum: Game Dev
Topic: Kung Fu Er San (on Steam)
Replies: 3
Views: 4458

Re: Kung Fu Er San (on Steam)

remind me of the old NES's Jack Chan game
by oyster
May 19, 2022 12:57
Forum: Projects
Topic: rqwork7 finaal release-beta version
Replies: 11
Views: 3580

Re: rqwork7 finaal release-beta version

what is the diffrence between rqwork7fr and rqwork7se?
what is the license?
by oyster
Apr 09, 2022 16:27
Forum: Projects
Topic: MyFbFramework - My FreeBasic Framework
Replies: 81
Views: 21946

Re: MyFbFramework - My FreeBasic Framework

is it possible to use `mff32.dll` in other language, for example, python?
by oyster
Apr 03, 2022 0:15
Forum: General
Topic: keep original lower/upper case function name in generated lib?
Replies: 1
Views: 319

keep original lower/upper case function name in generated lib?

for example, when we compile the follwing code with fbc -lib mylib.bas , we can find ADD2 function in the `libmylib.a`. If I prefer to the original Add2 , is there a switch? Thanks '' mylib.bas Public Function Add2( ByVal x As Integer, ByVal y As Integer ) As Integer Return( x + y ) End Function
by oyster
Mar 30, 2022 2:04
Forum: General
Topic: return wide string from function?
Replies: 5
Views: 593

Re: return wide string from function?

thank you guys
by oyster
Mar 30, 2022 1:57
Forum: General
Topic: get application path?
Replies: 2
Views: 583

get application path?

I mean get the path where exe file is located in

command(0) only get the name of the application

thanks