Search found 342 matches

by marpon
Sep 26, 2019 16:51
Forum: Windows
Topic: SetCompilerPathsII & SetCompilerSwitches for WinFBE
Replies: 62
Views: 11485

Re: SetCompilerPathsII & SetCompilerSwitches for WinFBE

no problem,
you certainly have your own reasons...
by marpon
Sep 26, 2019 10:00
Forum: Windows
Topic: SetCompilerPathsII & SetCompilerSwitches for WinFBE
Replies: 62
Views: 11485

Re: SetCompilerPathsII & SetCompilerSwitches for WinFBE

could you please publish the source, i could be interrested to adapt it for my ide csed_fb

Marpon
by marpon
Sep 07, 2019 18:42
Forum: Projects
Topic: Password Generator Windows only
Replies: 2
Views: 2896

Re: Password Generator Windows only

thanks bcohio2001 , modified...
by marpon
Sep 07, 2019 18:14
Forum: Projects
Topic: Password Generator Windows only
Replies: 2
Views: 2896

Password Generator Windows only

find here a little tool to generate your passwords, for windows only

https://github.com/marpon/Pass_Gen

all needed files to compile yourself or executable 32 bits



Image
by marpon
Aug 06, 2019 7:28
Forum: Beginners
Topic: Console off
Replies: 17
Views: 11633

Re: Console off

See different console possibilities with windows

viewtopic.php?f=6&t=27500

even if compiled with -s gui option ( without console) , it is always possible to get (create) one
thats interresting to trace some info at running time
by marpon
Jul 19, 2019 8:21
Forum: Libraries & Headers
Topic: EZ-DRAW 1.2 graphic static lib win/linux
Replies: 12
Views: 9884

Re: EZ-DRAW 1.2 graphic static lib win/linux

Some evolutions, optimizations added setpixel; capture screen; save to bmp(24bits); save to jpeg; win to image; ... and some tweaks on drawing functions to speed up a little https://github.com/marpon/EZ-DrawFb/tree/master/ez-draw_v2 the c sources are also available with a makefile for windows or lin...
by marpon
Jul 15, 2019 16:23
Forum: Windows
Topic: InputBox() in console program
Replies: 34
Views: 19036

Re: InputBox() in console program

@srvaldez I am using FBC Version 1.07.0 (06-06-2019), with gcc 9.1.0 that's why . Even fbc v1.07 uses libs done with gcc v5.02 that's probably the reason for printf not working ( diferent stdio lib from crt ?) for the warning thats correct I also have same on 64bits, you have done the correct fix so...
by marpon
Jul 15, 2019 15:36
Forum: Windows
Topic: InputBox() in console program
Replies: 34
Views: 19036

Re: InputBox() in console program

@srvaldez good to know for me it works ok even with printf on gas and also on gcc 32 and gcc 64 its probably your gcc chain , or fbc version not compatibles i"m using fbc 1.06 standalone version , with gcc v5.02 on 32 bits and same gcc v5.02 on 64 bits the libs on fbc are also (as i understood)...
by marpon
Jul 15, 2019 13:52
Forum: Windows
Topic: InputBox() in console program
Replies: 34
Views: 19036

Re: InputBox() in console program

other alternative with rc file /' InputBox.bas Dialog input box, to see the returned input in console compile with: "fbc" -s console InputBox.bas InputBox.rc or else if not needed to see the returned input compile with: "fbc" -s gui InputBox.bas InputBox.rc '/ 'use that sample un...
by marpon
Jul 08, 2019 10:04
Forum: Libraries & Headers
Topic: EZ-DRAW 1.2 graphic static lib win/linux
Replies: 12
Views: 9884

Re: EZ-DRAW 1.2 graphic static lib win/linux

Believe it or not ez_get_RGB was wrong = twice declared. One time as export and again as shared var ! extern ez_get_RGB as function(byval r as Ez_uint8 , byval g as Ez_uint8 , byval b as Ez_uint8) as Ez_uint32 dim shared ez_get_RGB as function(byval r as Ez_uint8 , byval g as Ez_uint8 , byval b as ...
by marpon
Jul 07, 2019 7:21
Forum: Libraries & Headers
Topic: EZ-DRAW 1.2 graphic static lib win/linux
Replies: 12
Views: 9884

Re: EZ-DRAW 1.2 graphic static lib win/linux

by D.J.Peters » Jul 06, 2019 23:43 Yes the declaration are wrong there are more issues I fixed last night. I do not see what was wrong? you only organized your bi files differently and added the lower case (wich in fact will not be really needed eg : XK_Q +32 do the trick for lower case) I don't se...
by marpon
Jul 06, 2019 10:24
Forum: Libraries & Headers
Topic: EZ-DRAW 1.2 graphic static lib win/linux
Replies: 12
Views: 9884

Re: EZ-DRAW 1.2 graphic static lib win/linux

Knatterton wrote:Interesting and works all in first attempt here on linux.
happy it works , did you test with linux 32 or linux 64?
Interrested to know because i've not tested on linux 32,
and I've compiled the 32bits c libs for linux from gcc64 with -m32 flag , but not sure if it is correct.
by marpon
Jul 05, 2019 16:10
Forum: Libraries & Headers
Topic: EZ-DRAW 1.2 graphic static lib win/linux
Replies: 12
Views: 9884

EZ-DRAW 1.2 graphic static lib win/linux

2 very litle static libs EZ-Draw and EZ-Image done in c and very easy to use from Freebasic EZ-Draw use GDI on windows and X11 on linux (even Mac) , so it gives the possibility to create portable code in Freebasic with very light size. Comparing to the native FreeBasic graphic features : A very good...
by marpon
Jun 21, 2019 10:07
Forum: Community Discussion
Topic: fb 1.07 tests
Replies: 54
Views: 25111

Re: fb 1.07 tests

@ MrSwiss thank's for the precision

It works perfectly
I've built my onw fbc.exe with -d ENABLE_STANDALONE=1 -d ENABLE_STRIPALL=1
and -strip is the default now.


as a dev version it is not important...
by marpon
Jun 20, 2019 17:09
Forum: Community Discussion
Topic: fb 1.07 tests
Replies: 54
Views: 25111

Re: fb 1.07 tests

For the ones who dont like -strip as default, let me try to explain what was the situation until some weeks the executables were always stripped as default , if debug info was wanted -g was available or more other options using ld -Wl option... somebody asked to get access to the local symbols witho...