Search found 1077 matches

by hua
Mon Feb 24, 2025 3:39 am
Forum: FiveWin for Harbour/xHarbour
Topic: Friends Let us all pray for Mr Nageswarao Gunupudi
Replies: 32
Views: 18695

Re: Friends Let us all pray for Mr Nageswarao Gunupudi

Wishing a speedy recovery for Mr Rao
by hua
Wed Feb 19, 2025 8:30 am
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 25.01
Replies: 13
Views: 13237

Re: New FWH 25.01

What are the minimum Windows version required to run programs created with FWH+[x]Hb nowadays?
by hua
Fri Feb 07, 2025 3:35 am
Forum: Off Topic / Otros temas
Topic: Possible using AI to manipulate data in dbf?
Replies: 1
Views: 7668

Possible using AI to manipulate data in dbf?

Is it possible to manipulate data in dbf using AI (LLM)?
So we can say "list me records where the date is such and such" or "delete record in a.dbf where field customer is not found in b.dbf"

It's just a thought that crosses my mind while writing a data patching routine :)
by hua
Fri Jan 24, 2025 4:16 am
Forum: Utilities / Utilidades
Topic: Active Topics option is working !!!
Replies: 5
Views: 26915

Re: Active Topics option is working !!!

Thanks Antonio. The feed's url is different than the previous phpBB. Updating it fix the issue
by hua
Wed Jan 22, 2025 4:03 am
Forum: Utilities / Utilidades
Topic: Active Topics option is working !!!
Replies: 5
Views: 26915

Re: Active Topics option is working !!!

This is just a feedback. Old phpBB used to generate RSS feeds. The current one doesn't.
I don't know if anyone is still using RSS to monitor forum's posts
by hua
Fri Oct 11, 2024 7:26 am
Forum: FiveWin for Harbour/xHarbour
Topic: How to specify dialog size when using xbrowser?
Replies: 2
Views: 550

Re: How to specify dialog size when using xbrowser?

Thanks for such prompt response Antonio!
by hua
Fri Oct 11, 2024 4:36 am
Forum: FiveWin for Harbour/xHarbour
Topic: How to specify dialog size when using xbrowser?
Replies: 2
Views: 550

How to specify dialog size when using xbrowser?

Hi guys.
When using the XBROWSER command is it possible to specify the wanted height and width of its dialog?

TIA
by hua
Thu Sep 12, 2024 6:18 pm
Forum: FiveWin for Harbour/xHarbour
Topic: how to link multiple Files using Bcc or MSVC
Replies: 8
Views: 1819

Re: how to link multiple Files using Bcc or MSVC


so do i
but as i understand, we are recommend to use hbmk2.exe and *.hbp file
hbmk2 is a powerful harbour built utility to make changing C compiler easy. It will auto detect C compiler to use based on path with minimal to no change to the link script
I still use .mak most of the time though ...
by hua
Wed Sep 11, 2024 3:03 am
Forum: FiveWin for Harbour/xHarbour
Topic: how to link multiple Files using Bcc or MSVC
Replies: 8
Views: 1819

Re: how to link multiple Files using Bcc or MSVC

.hbp (Harbour project files) is used when you use hbmk2

I normally use .mak files.
There are a lot of make sample files in FWH\MAKES folder
by hua
Wed Aug 14, 2024 8:51 am
Forum: FiveWin for Harbour/xHarbour
Topic: DBF format still in use???
Replies: 23
Views: 7652

Re: DBF format still in use???

+1
by hua
Sat Aug 10, 2024 5:17 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Birthday Wishes to Mr. Rao
Replies: 23
Views: 6781

Re: Birthday Wishes to Mr. Rao

Happy birthday Rao!
Many thanks for a lot of improvements that you have contributed
by hua
Fri Aug 09, 2024 4:46 am
Forum: FiveWin for Harbour/xHarbour
Topic: Displaying raw XML
Replies: 7
Views: 2636

Re: Displaying raw XML

nageswaragunupudi wrote: Can also use

Code: Select all | Expand

HtmlView( FullName( cXmlFile ) )
Thanks Rao! This suits my want perfectly.
Any way to view the source of document? Just in case I would like to inspect the raw XML where '<' is actually written as < ?
by hua
Thu Aug 08, 2024 9:55 am
Forum: FiveWin for Harbour/xHarbour
Topic: Displaying raw XML
Replies: 7
Views: 2636

Re: Displaying raw XML

I'll just use fw_memoedit() for now until I have time to revisit the issue later
by hua
Thu Aug 08, 2024 7:53 am
Forum: FiveWin for Harbour/xHarbour
Topic: Displaying raw XML
Replies: 7
Views: 2636

Re: Displaying raw XML

Thanks for the sample Antonio.
I am more on looking for how to display an XML file/content verbatim.

Of course, can use memoedit() for that but that doesn't have syntax highlighting at all

TIA
by hua
Thu Aug 08, 2024 2:55 am
Forum: FiveWin for Harbour/xHarbour
Topic: Displaying raw XML
Replies: 7
Views: 2636

Re: Displaying raw XML

I found this code here

auto options = Microsoft::WRL::Make<CoreWebView2EnvironmentOptions>();
hr = options->put_AdditionalBrowserArguments(L"--allow-file-access-from-files");

hr = CreateCoreWebView2EnvironmentWithOptions(
nullptr,
appData,
options.Get(),
Callback ...