Search found 32 matches

by fan2006
Jan 13, 2025 2:08
Forum: Libraries & Headers
Topic: xlsxio library
Replies: 4
Views: 1753

Re: xlsxio library

I noted that you have created bindings for several C libraries. I have no idea how you created them, but in case you used fbfrog: did you consider contributing to https://github.com/freebasic/fbbindings/tree/raw or publish the used configuration? i don't know many fbfrog commands. only mongoose lib...
by fan2006
Jan 12, 2025 13:35
Forum: Projects
Topic: VisualFBEditor - IDE for FreeBasic
Replies: 1017
Views: 217968

Re: VisualFBEditor - IDE for FreeBasic

Wow,awesome ! And thx for your effort at an impressive rate.
by fan2006
Jan 12, 2025 8:19
Forum: Libraries & Headers
Topic: xlsxio library
Replies: 4
Views: 1753

Re: xlsxio library

test of creating/writing data to xlsx file. xlsxio_writedemo.bas: #include "xlsxio_write.bi" #include once "crt/stdio.bi" #ifndef __FB_64BIT__ #libpath "win32" #else #libpath "win64" #endif 'open .xlsx file for writing (will overwrite if it already exists) Var...
by fan2006
Jan 12, 2025 8:16
Forum: Libraries & Headers
Topic: xlsxio library
Replies: 4
Views: 1753

Re: xlsxio library

test for read xlsx file. xlsxio_readdemo.bas: #include once "xlsxio_read.bi" #include once "crt/stdio.bi" #ifdef __FB_WIN32__ 'switch Windows console to UTF-8 #include Once "windows.bi" SetConsoleOutputCP(65001) #endif #ifndef __FB_64BIT__ #libpath "win32" #el...
by fan2006
Jan 12, 2025 8:14
Forum: Libraries & Headers
Topic: xlsxio library
Replies: 4
Views: 1753

xlsxio library

XLSX I/O aims to provide a C library for reading and writing .xlsx files. The .xlsx file format is the native format used by Microsoft(R) Excel(TM) since version 2007. source:https://github.com/brechtsanders/xlsxio xlsxio_read.bi: #pragma once #ifndef INCLUDED_XLSXIO_READ_H #define INCLUDED_XLSXIO_R...
by fan2006
Jan 12, 2025 7:42
Forum: Libraries & Headers
Topic: zstd library
Replies: 3
Views: 981

Re: zstd library

simple_decompression.bas(cmdline procedure and you should use a cmd and arguments to run): #include once "crt/stdio.bi" #include once "crt/stdlib.bi" #include once "zstd.bi" #include once "common.bi" private sub decompress(byval fname as const zstring ptr) dim...
by fan2006
Jan 12, 2025 7:39
Forum: Libraries & Headers
Topic: zstd library
Replies: 3
Views: 981

Re: zstd library

simple_compression.bas(cmdline procedure and you should use a cmd and arguments to run): #include once "crt/stdio.bi" #include once "crt/stdlib.bi" #include once "crt/string.bi" #include once "zstd.bi" #include once "crt/errno.bi" #include once "...
by fan2006
Jan 12, 2025 7:36
Forum: Libraries & Headers
Topic: zstd library
Replies: 3
Views: 981

Re: zstd library

tests for simple compression and decompression cmdline. common.bi(common utility functions used in examples): #pragma once #ifndef COMMON_H #define COMMON_H #include once "crt/stdlib.bi" #include once "crt/stdio.bi" #include once "crt/string.bi" #include once "crt/...
by fan2006
Jan 12, 2025 7:33
Forum: Libraries & Headers
Topic: zstd library
Replies: 3
Views: 981

zstd library

Zstandard, or zstd as short version, is a fast lossless compression algorithm, targeting real-time compression scenarios at zlib-level and better compression ratios. source:https://github.com/facebook/zstd zstd.bi: #pragma once #ifndef ZSTD_H_235446 #define ZSTD_H_235446 #include once "crt/limi...
by fan2006
Jan 11, 2025 3:39
Forum: Projects
Topic: VisualFBEditor - IDE for FreeBasic
Replies: 1017
Views: 217968

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.
by fan2006
Jan 10, 2025 5:12
Forum: General
Topic: Extern C++
Replies: 14
Views: 2896

Re: Extern C++

does this has any improvement now? still i have to use c++ alias name to deal with template?
by fan2006
Jan 09, 2025 10:21
Forum: Libraries & Headers
Topic: duckdb library
Replies: 2
Views: 1112

Re: duckdb library

The goto statement will cause warnnings.with the help of Jattenalle, i use "scope...end scope"(or if true ...end if) to eliminate all warnings。 This library feels quite popular。 test.bas code: #include once "duckdb.bi" #include once "crt/stdio.bi" 'only for amd64 test w...
by fan2006
Jan 09, 2025 10:13
Forum: Libraries & Headers
Topic: duckdb library
Replies: 2
Views: 1112

duckdb library

DuckDB is a high-performance analytical database system. It is designed to be fast, reliable, portable, and easy to use. DuckDB provides a rich SQL dialect, with support far beyond basic SQL. source:https://github.com/duckdb/duckdb only amd64 test is validated with no x86 lib provided in the github ...
by fan2006
Jan 08, 2025 1:29
Forum: Projects
Topic: VisualFBEditor - IDE for FreeBasic
Replies: 1017
Views: 217968

Re: VisualFBEditor - IDE for FreeBasic

thx,got it.
by fan2006
Jan 07, 2025 13:21
Forum: Libraries & Headers
Topic: mongoose library
Replies: 2
Views: 1125

Re: mongoose library

websocket server /client examples are included in the downloaded files.so i will stop here.