有 55 筆資料符合您搜尋的條件

admin
2025-06-09, 10:26
版面: xBase/[x]Harbour/Fivewin/HWGUI in Taiwan
主題: duktape for harbour
回覆: 0
觀看: 570

duktape for harbour

duktape for harbour duktape for harbour. Now harbour can run javascript source code. duktape reference: https://duktape.org/ #include "fileio.ch" #include "hbclass.ch" #include "common.ch" #include "hbapi.ch" #include "hbapiitm.h" #include "hba...
admin
2025-06-09, 10:18
版面: xBase/[x]Harbour/Fivewin/HWGUI in Taiwan
主題: DuckDB for Harbour
回覆: 0
觀看: 582

DuckDB for Harbour

DuckDB for Harbour Now harbour can use duckdb!! compiler us vs2019. //#include "hbtypes.ch" #include "duckdb.ch" PROCEDURE Main() LOCAL db, con, stmt, result LOCAL i, j, nCols, nRows LOCAL aDate, aTime, aTimestamp LOCAL nYear, nMonth, nDay LOCAL nHour, nMin, nSec, nMicros LOCAL ...
admin
2024-06-14, 11:54
版面: xBase/[x]Harbour/Fivewin/HWGUI in Taiwan
主題: mod_harbour and TMySQL
回覆: 0
觀看: 390853

mod_harbour and TMySQL

Use TMySQL: Desktop app vs Web app. <?prg zzz() function zzz() LOCAL oServer LOCAL oQry LOCAL nI LOCAL cFile := AP_FileName() LOCAL cMainDir := cFilePath(cFile) // 尾端有 '/' LOCAL oDB, xHrb, hJson := hb_hash() AP_SetContentType( "text/html; charset=utf-8" ) ?? "debug-begin...:"+cMa...
admin
2024-05-28, 11:41
版面: xBase/[x]Harbour/Fivewin/HWGUI in Taiwan
主題: WebUI test
回覆: 0
觀看: 130534

WebUI test

WebUI: https://github.com/webui-dev/webui Test on fivewin!! compiler use BCC 7.4/x32 func main() msgInfo('begin') WebUI() msgInfo('end') return #pragma BEGINDUMP #include "webui.h" HB_FUNC(WEBUI){ size_t my_window = webui_new_window(); webui_show(my_window, "<html><head><script src=\&...
admin
2024-05-22, 23:08
版面: xBase/[x]Harbour/Fivewin/HWGUI in Taiwan
主題: nested array to string
回覆: 0
觀看: 125337

nested array to string

demo.prg: func test local a := {1,"A", {.F., Date(), 3}, {'B',{'C',2,5},4}} local c,d msginfo( c := ArrayToStr(a) ) d := &(c) c := ArrayToStr(d) msgInfo(c) return function: /* author: WenSheng(Taiwan) name: 陣列轉字串,支援巢狀陣列 */ Func ArrayToStr(a) LOCAL i := 0 LOCAL c := '' LOCAL v := NIL FO...
admin
2023-07-16, 23:29
版面: xBase/[x]Harbour/Fivewin/HWGUI in Taiwan
主題: RWD WebApp use mod_harbour
回覆: 0
觀看: 132822

RWD WebApp use mod_harbour

https://youtu.be/KgoJKtJ0xQU

attach file:
per.7z
per.js.prg、per.prg、per.css、per.html
(25.11 KiB) 已下載 15532 次
Web Design Using WYSIWYG Web Builder 18:
https://www.wysiwygwebbuilder.com/

excel output is use libXL.
admin
2023-05-24, 22:09
版面: xBase/[x]Harbour/Fivewin/HWGUI in Taiwan
主題: (2023.05.24)mod_harbour support SSE.
回覆: 0
觀看: 134844

(2023.05.24)mod_harbour support SSE.

Server-Sent Events (SSE) : 允許網頁從伺服器端取得更新資料. 參考網址: https://www.w3schools.com/html/html5_serversentevents.asp 當我們要從伺服器端抓取資料,又不想用一般的進度表顯示,SSE 是一種好方法. mod_harbour 有沒有支援 SSE 呢? 經過反覆測試下,終於完成 SSE 功能. SSE is a good way when we want to fetch data from the server and don't want to use the usual progress meter...
admin
2023-04-10, 23:57
版面: xBase/[x]Harbour/Fivewin/HWGUI in Taiwan
主題: *2023.04.10: mod_harbour.v2 (x64) + mysql
回覆: 0
觀看: 132837

*2023.04.10: mod_harbour.v2 (x64) + mysql

使用軟體: XAMPP release 7.4.33 Apache 2.4.54 PHP 7.4.33 , 8.0.25 , 8.1.12 MariaDB 5.4.27 OpenSSL 1.1.1p (Windows) and OpenSSL 1.1.1s (Linux and OS X) Harbour core 2023-03-09 15:50 hbcurl、hbssl、hbmysql mod_harbour.v2.1 3rd curl-7.87.0 openssl-1.1.1t openssl-1.0.2u Compiler Visual Studio 2019 (MSVC16) 1. ...
admin
2021-09-23, 23:44
版面: xBase/[x]Harbour/Fivewin/HWGUI in Taiwan
主題: TGet modify for utf8 input(Lastday: 2021.09.23)
回覆: 7
觀看: 5684888

Re: TGet modify for utf8 input(Lastday: 2021.09.23)

*2021.09.23: fix 修改(fix): ::KeyWChar() 1. 修正: 插入狀態下,當資料已滿狀態下無法繼續輸入資料自動移除尾端文字功能. In the inserting state, when the data is full, you cannot continue to enter the data and automatically remove the trailing text function. 修改(fix): ::HandleEvent 1. 修正: 當 ::cPicture 為 '@R' 格式時,貼上資料會亂掉問題, ex: '@R 999.99.99...