Search found 106 matches

by ssbbs
Wed Apr 09, 2025 1:28 am
Forum: FiveWin for Harbour/xHarbour
Topic: Fivedit - Download
Replies: 3
Views: 363

Re: Fivedit - Download

I don't know Spanish. :D :D :D
by ssbbs
Tue Mar 25, 2025 7:52 am
Forum: FiveWin for Harbour/xHarbour
Topic: Lost connection to MySQL server during query
Replies: 41
Views: 23989

Re: Lost connection to MySQL server during query


Yes,
You can use bOnLostServer

* FWMariaConnection:
Reconnection logic improved when the app loses connection to the server.
New data bOnLostServer: If this codeblock is specified, it is called when the
application loses connection with the server.

Is there any way I can change the error ...
by ssbbs
Wed Jun 12, 2024 3:32 am
Forum: FiveWin for Harbour/xHarbour
Topic: Mod Harbour installation -
Replies: 16
Views: 3472

Re: Mod Harbour installation -

I forget to say:
If use <?prg and ?>
must modify apache .\conf\httpd.conf and add: SetEnv RUN_AS_PHP "1"
by ssbbs
Tue Jun 11, 2024 3:38 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Mod Harbour installation -
Replies: 16
Views: 3472

Re: Mod Harbour installation -

Dear Wen,

My version of mod_harbour integrates TMySQL, TSQLLite, LibXL, TPDF, and JWT. 8)

Would you be so kind to provide it ? Do you keep it on a github repo ?

many thanks

The execution syntax of my modified version is different.
The syntax for my mod_harbour.v2 is:
file: test.prg
<?prg ...
by ssbbs
Tue Jun 11, 2024 3:32 am
Forum: FiveWin for Harbour/xHarbour
Topic: Mod Harbour installation -
Replies: 16
Views: 3472

Re: Mod Harbour installation -

My version of mod_harbour integrates TMySQL, TSQLLite, LibXL, TPDF, and JWT. 8)
by ssbbs
Tue Jun 11, 2024 3:23 am
Forum: FiveWin for Harbour/xHarbour
Topic: WebUI
Replies: 12
Views: 2479

Re: WebUI

Lailton wrote:Just to let you know, it uses the webview2 ( same that Antonio already have added to fivewin )
https://github.com/webui-dev/webui/tree ... rc/webview

8)
The WebUI can use BCC x32 compiler.
by ssbbs
Tue Jun 11, 2024 3:22 am
Forum: FiveWin for Harbour/xHarbour
Topic: WebUI
Replies: 12
Views: 2479

Re: WebUI

albeiroval wrote:ssbbs, looks greats.

Can you put the "C" and header "h" files that you included in the example ?
Download Project file: https://github.com/webui-dev/webui
by ssbbs
Tue May 28, 2024 7:03 am
Forum: FiveWin for Harbour/xHarbour
Topic: WebUI
Replies: 12
Views: 2479

Re: WebUI

The applications I developed have already started to move to the web!
by ssbbs
Tue May 28, 2024 3:47 am
Forum: FiveWin for Harbour/xHarbour
Topic: WebUI
Replies: 12
Views: 2479

WebUI

I found something great!!
WebUI: https://github.com/webui-dev/webui
Test on fivewin!!

compiler 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 ...
by ssbbs
Thu Feb 29, 2024 2:17 pm
Forum: mod_harbour
Topic: XAMPP through PortableApps.com or Server2Go
Replies: 13
Views: 18537

Re: XAMPP through PortableApps.com or Server2Go

I'm use UwAmp to test my mod_harbour App.

https://www.uwamp.com/en/
by ssbbs
Tue Jan 09, 2024 3:10 am
Forum: FiveWin for Harbour/xHarbour
Topic: FWH functions and mod harbour
Replies: 1
Views: 856

Re: FWH functions and mod harbour

try use: FRename( cLogFile2, cLogFile )
by ssbbs
Thu Aug 31, 2023 2:05 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FWH2308: ShowXLSX( cfileXLSX )
Replies: 7
Views: 1418

Re: FWH2308: ShowXLSX( cfileXLSX )

nageswaragunupudi wrote:
ssbbs wrote:Can I read and modify, add and delete .xlsx files?
Yes
However, have not seen examples of this.
All sample is : oXlsx:CreateFile() no ::readFile()
by ssbbs
Wed Aug 30, 2023 3:04 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FWH2308: ShowXLSX( cfileXLSX )
Replies: 7
Views: 1418

Re: FWH2308: ShowXLSX( cfileXLSX )

Can I read and modify, add and delete .xlsx files?
by ssbbs
Thu Jul 20, 2023 1:40 pm
Forum: mod_harbour
Topic: RWD WebApp use mod_harbour
Replies: 6
Views: 4497

Re: RWD WebApp use mod_harbour

Hello WenShengg,

>how I simplify the complexity of applications for myself by using Harbourino

I only showed the way how I work on code.

I appreciate simplicity, and as a visual person, I prefer things to be straightforward.

Otto

Personally, I prefer to complete the code, just open a file ...
by ssbbs
Thu Jul 20, 2023 11:21 am
Forum: mod_harbour
Topic: RWD WebApp use mod_harbour
Replies: 6
Views: 4497

Re: RWD WebApp use mod_harbour

Otto wrote:Hello WenSheng,
Here you can see how I simplify the complexity of applications for myself by using Harbourino - an additional preprocessor - to split the functions.
I think you can understand from this simple function how it works.
May I ask why you did this?