Search found 331 matches: named

Return to advanced search

Re: hb_getEnv("PRGPATH")

... i can´t see it. maybe it is stored somewhere else? and also i wondered what would happen if accidentally I would have an environment variable named "PRGPATH" defined manually in windows - would this cause some kind of conflict? thank you very much again for your being so kind and ...
by Ruth
Tue May 07, 2024 7:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: hb_getEnv("PRGPATH")
Replies: 8
Views: 146

ayuda con uso de hb_xfree

... * contrib/examples/rdddbt/dbfdbt1.c * I did a mistake in 1999 by giving the name hb_itemPutCPtr() to the function which would have to be correctly named hb_itemPutCLPtr() (notice the 'L' for 'length'). se deduce, que hace hb_itemPutC -> pone un char string en item, L for Length y Ptr por pointer. ...
by carlos vargas
Sun Apr 28, 2024 2:55 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ayuda con uso de hb_xfree
Replies: 6
Views: 187

Re: EXCEL CREATE HYPERLINK

When I click on cell from the worksheet named "MASTER" that has a hyperlink to another cell in "DETAILS" worksheet I found the cell in the bottom of the video. This almost always happens. Is it possible to scroll the worksheet ...
by MarcoBoschi
Tue Apr 02, 2024 9:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: EXCEL CREATE HYPERLINK
Replies: 3
Views: 757

Re: Switching my setup program to webview2

... the result is worse than using screen recognition. Best regards, Otto 1) Yes, I can recognize the text in the image. It shows a window of software named "XWINHOTEL - WHSetup" with the date "2019-05-21" in the title bar. The window contains multiple tabs and input fields for ...
by Otto
Sat Feb 10, 2024 6:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Switching my setup program to webview2
Replies: 9
Views: 419

Re: SAPI : change Voice

... HB_FUNC.PRG: In function 'HB_FUN_GETZIRA': HB_FUNC.PRG:20:31: error: 'ISpObjectTokenCategory {aka struct ISpObjectTokenCategory}' has no member named 'SetId' HB_FUNC.PRG:24:35: error: 'ISpObjectTokenCategory {aka struct ISpObjectTokenCategory}' has no member named 'EnumTokens' HB_FUNC.PRG:31:37: ...
by Jimmy
Thu Jan 25, 2024 4:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SAPI : change Voice
Replies: 69
Views: 3765

Parameterization of xReport

... is an example: In xReport, the table head is declared as: <thead class="custom-thead"> In our project, we use a custom CSS class named .custom-thead to style the appearance of table headers. This class is applied to the <thead> element of the table to give it a unique look. ...
by Otto
Sat Jan 13, 2024 8:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Parameterization of xReport
Replies: 2
Views: 572

Re: phpBB to LLM

... exec(code, locals()) File "<string>", line 15, in <module> Exception: You tried to install "pytorch". The package named for PyTorch is "torch" [end of output] note: This error originates from a subprocess, and is likely not a problem with pip. ERROR: Failed ...
by alerchster
Mon Dec 25, 2023 6:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: phpBB to LLM
Replies: 33
Views: 4746

Re: phpBB to LLM

========================== RESTART: C:\fwh\AI\train.py =========================
Traceback (most recent call last):
File "C:\fwh\AI\train.py", line 1, in <module>
import torch
ModuleNotFoundError: No module named 'torch'
by alerchster
Mon Dec 25, 2023 6:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: phpBB to LLM
Replies: 33
Views: 4746

Re: Help splitting up a character address string

... Harbourino seems to play a significant role in simplifying the source code for mod_harbour applications. According to a post by a user named Otto on the mod_harbour forum, Harbourino aids in making source code more readable and maintainable. This is achieved through its patcher and ...
by Otto
Wed Nov 15, 2023 7:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 631

Re: App Termination and Relaunch.

... won't be displayed on the console. - `taskkill /F /IM your_app.exe`: This command forcefully terminates any running instances of your application named `your_app.exe`. Replace `your_app.exe` with the actual name of your executable. - `start "" "C:\path\to\your_app.exe"`: This ...
by Antonio Linares
Fri Oct 06, 2023 6:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: App Termination and Relaunch.
Replies: 5
Views: 413

Re: Corrup file en copia de respaldo

... If the first parameter is nil and the second parameter is a directory (not a file ), the backups will be stored each day in a separate subfolder named by weekday. Code Example: oCn:BackUp( nil, "c:\mybackups\" ) Backups will be stored like this: 20-04-2022  09:35    <DIR> ...
by nageswaragunupudi
Sat Aug 26, 2023 8:41 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Corrup file en copia de respaldo
Replies: 1
Views: 147

Saving OuterHTML using Await Implementation with TWebView

... I have implemented a synchronous class for TWebView, which is supported by the 'await' technique in other languages. 5. The implementation is named TAWaitWeb. To facilitate more convenient usage, I have created user-friendly functions using TAWaitWeb as follows: AWait_QuerySelector(oWeb, cQuery, ...
by CharlesKwon
Mon Aug 14, 2023 1:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1696

New FTDN July/Julio (FWH 23.07)

... oItem[ n ] := newValue works too. * Enhanced XEval( uVar, p1, p2, ... ) Now uVar can also be function name ending with "()". If the named function is linked, the function is executed with params p1,p2,... etc. XEval( {|c| Upper( c ) }, "abc" ) --> ABC XEval( "Upper()", ...
by Antonio Linares
Thu Jul 27, 2023 6:13 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio (FWH 23.07)
Replies: 7
Views: 1083

Re: Small Question about Word and FWH

... outline of the steps involved: a. Use a suitable inter-process communication mechanism supported by your programming language or platform, such as named pipes, sockets, or shared memory, to establish communication between Application 1 and Application 2. b. In Application 1, expose a method or ...
by Antonio Linares
Mon Jul 17, 2023 9:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Small Question about Word and FWH
Replies: 29
Views: 1214

Re: Fivewin and ADO

... improvements in future: Will soon provide editing excel formulas in xbrowse itself. Use ADO for organized larger tables. We can use for "Named" tables also if the Excel File has named tables. In other cases, the data in the table should be organized like a table. Same number of columns ...
by nageswaragunupudi
Fri Jun 09, 2023 9:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin and ADO
Replies: 36
Views: 3838
Next

Return to advanced search