Search found 105 matches

by Avata
Apr 25, 2024 12:49
Forum: Libraries & Headers
Topic: mdTypes
Replies: 24
Views: 8158

Re: mdTypes

In this case I've tested the posted code (with the IDE VisualFBEditor https://github.com/XusinboyBekchanov/VisualFBEditor ) with the latest 1.20.0 for Windows (fbc32 and fbc64). The output looks fine for me also. Someone could be do something to add the code "mdCollection.bi" to the framew...
by Avata
Apr 24, 2024 14:19
Forum: Projects
Topic: VisualFBEditor - IDE for FreeBasic
Replies: 891
Views: 131231

Re: VisualFBEditor - IDE for FreeBasic

Here are the URLs of some commonly used barcode recognition libraries.

ZBar:https://github.com/mchehab/zbar

ZXing:https://github.com/zxing/zxing
by Avata
Apr 20, 2024 1:11
Forum: Windows
Topic: Cairo under Windows
Replies: 14
Views: 936

Re: Cairo under Windows

There is an example demonstrating how Cairo works under Windows with VisualFBEditor ( https://github.com/XusinboyBekchanov/VisualFBEditor ). Compiling the code requires the MFF framework. cairo_GDI.frm (download https://github.com/XusinboyBekchanov/MyFbFramework/master/examples/Canvas/cairo_GDI.frm ...
by Avata
Jun 21, 2023 1:37
Forum: Libraries Questions
Topic: Freebasic -GTK - Graphics
Replies: 6
Views: 1904

Re: Freebasic -GTK - Graphics

you can try make code with "VisualFBEditor - IDE for FreeBasic" viewtopic.php?t=27284
VisualFBEditor based on the library MyFbFramework which is an open source library. A lot of programmers work with it with GTK3 in Linux
by Avata
May 24, 2023 1:31
Forum: Projects
Topic: VisualFBEditor - IDE for FreeBasic
Replies: 891
Views: 131231

Re: VisualFBEditor - IDE for FreeBasic

The next version of FBC is 1.20. That's a good idea and what's VisualFBEditor plan?
by Avata
May 18, 2023 2:43
Forum: Projects
Topic: VisualFBEditor - IDE for FreeBasic
Replies: 891
Views: 131231

Re: VisualFBEditor - IDE for FreeBasic

The compiler FBC 1.10 released, Any plan to update the VisualFBEditor IDE?
by Avata
May 15, 2023 4:18
Forum: Projects
Topic: VisualFBEditor - IDE for FreeBasic
Replies: 891
Views: 131231

Re: VisualFBEditor - IDE for FreeBasic

The numbering the whole project is terrible output message and useless. I agree that it is better changed to Numbering within current module only. The user can numbering one by one module if they have to do.
by Avata
Apr 11, 2023 14:35
Forum: Projects
Topic: VisualFBEditor - IDE for FreeBasic
Replies: 891
Views: 131231

Re: VisualFBEditor - IDE for FreeBasic

Who know how to make the same code in OS Linux?
by Avata
Mar 30, 2023 8:36
Forum: Projects
Topic: VisualFBEditor - IDE for FreeBasic
Replies: 891
Views: 131231

Re: VisualFBEditor - IDE for FreeBasic

Examples : This code can delete the running exe file. Delete yourself.frm 'https://github.com/LloydLabs/delete-self-poc '#Region "Form" #ifndef _WIN32_WINNT #define _WIN32_WINNT &H0600 '仅仅工作在Windows Vista及以上,编译为64位就只能在Windows系统是64位上正常工作 works with Windows Vista and above. only #endif ...
by Avata
Mar 26, 2023 8:56
Forum: Projects
Topic: VisualFBEditor - IDE for FreeBasic
Replies: 891
Views: 131231

Re: VisualFBEditor - IDE for FreeBasic

The light version of GRID has been updated to allow cells to be edited in both Linux and Windows. frmGridTest.frm '#Region "Form" #if defined(__FB_MAIN__) AndAlso Not defined(__MAIN_FILE__) #define __MAIN_FILE__ #ifdef __FB_WIN32__ #cmdline "Form1.rc" #endif Const _MAIN_FILE_ = _...
by Avata
Mar 25, 2023 3:13
Forum: Projects
Topic: VisualFBEditor - IDE for FreeBasic
Replies: 891
Views: 131231

Re: VisualFBEditor - IDE for FreeBasic

You can try the light version GRID. Griddata is not updated to the newest version mff. frmGrid.frm '#Region "Form" #if defined(__FB_MAIN__) AndAlso Not defined(__MAIN_FILE__) #define __MAIN_FILE__ #ifdef __FB_WIN32__ #cmdline "Form1.rc" #endif Const _MAIN_FILE_ = __FILE__ #endif ...
by Avata
Mar 23, 2023 10:34
Forum: Sources, Examples, Tips and Tricks
Topic: Color space / difference / distance converter
Replies: 2
Views: 1154

Re: Color space / difference / distance converter

Thanks, great job. but the CMYK was defined in "win\wingdi.bi" Line 490: #define GetKValue(cmyk) Cast(UByte, (cmyk)) #define GetYValue(cmyk) Cast(UByte, (cmyk) Shr 8) #define GetMValue(cmyk) Cast(UByte, (cmyk) Shr 16) #define GetCValue(cmyk) Cast(UByte, (cmyk) Shr 24) #define CMYK(c, m, y,...
by Avata
Mar 21, 2023 0:21
Forum: Projects
Topic: VisualFBEditor - IDE for FreeBasic
Replies: 891
Views: 131231

Re: VisualFBEditor - IDE for FreeBasic

It is amazing the following code can not compile with FBC 1.10 but it is ok compiling with FBC 1.09. Maybe Is it a bug in FBC 1.10? PS. I testing again. It is amazing the following code can compile with FBC 1.10!!!!!!!! #cmdline "-s console" Sub LoadHelp Enum Paragraph parStart parSyntax p...
by Avata
Mar 18, 2023 12:58
Forum: Projects
Topic: VisualFBEditor - IDE for FreeBasic
Replies: 891
Views: 131231

Re: VisualFBEditor - IDE for FreeBasic

I think some code need to be change if we compile with FBC 1.10.
by Avata
Mar 11, 2023 11:45
Forum: Community Discussion
Topic: Where can I get a Recent-Git-Build of FreeBASIC?
Replies: 639
Views: 176331

Re: Where can I get a Recent-Git-Build of FreeBASIC?

I should post here. There is no memory leak in VisualFBEditor IDE. It is about toolChain stuff. I like compile with Msys2 and think it is better than wIinlibs. But I got a warning message after compiled the code with gcc 12.2.0. But this is not happen with GCC 11.3 before. warning: conflicting types...