Search found 571 matches: converting

Return to advanced search

Re: Talking to your apps

... Evidently it's a common problem and they don't have a solution. SO ... I tried it on my Surface Notebook ( Windows + H ) and it did a nice job of converting voice to text. I would suggest that when using this in our programs, as you have suggested, then we should have a program wide flag that ...
by TimStone
Mon Apr 01, 2024 9:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Talking to your apps
Replies: 20
Views: 3877

Re: ¿Cómo saber la fecha de los cambios a una carpeta?

Converting time in Spain to my local time in India.
We know the current UTC offset of Spain is +1:00 and India's is +5:30

Code: Select all  Expand view
tsUTC := FW_AddTime( DateTimeSpain. "-01:00:00" )
tsIndia := FW_AddTime( tsUTC, "05:30:00" )
by nageswaragunupudi
Mon Mar 04, 2024 5:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿Cómo saber la fecha de los cambios a una carpeta?
Replies: 6
Views: 192

Re: ¿Cómo saber la fecha de los cambios a una carpeta?

Time Zone conversions Here is an example converting our local time to UTC and then NewYork time ( UTC Offset now -5:00 ) function TimeZoneConversions()   local tDateTimeLocal, tDateTimeUTC, tDateTimeNYC   tDateTimeLocal := HB_DateTime() ...
by nageswaragunupudi
Mon Mar 04, 2024 5:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿Cómo saber la fecha de los cambios a una carpeta?
Replies: 6
Views: 192

Re: Switching my setup program to webview2

... a dialog for me. It's actually hard to believe that there are no converters like rcToHtml, but I couldn't find anything. What worked for me was converting the RC into a JSON and then transforming it with a html/JS program - reading it out after calling from the development tools. However, the ...
by Otto
Sat Feb 10, 2024 6:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Switching my setup program to webview2
Replies: 9
Views: 411

Re: oBtn:ToolTip - UTF8 encoding fails [Unsolved]

... characters of WU languages can be displayed only with a font created using the corresponding Charset. But most FWH functions display them by converting them to utf8 encoding. (we will fix where there are some inadequacies still). Setting HB_CDPSELECT("UTF8") has nothing to do with ...
by nageswaragunupudi
Sat Nov 25, 2023 6:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oBtn:ToolTip - UTF8 encoding fails [Unsolved]
Replies: 11
Views: 943

Re: Interesting discussion with ChtGPT

Hello Paquito, The way you ask ChatGPT makes a big difference in how effective its answers will be. When you're dealing with specific things like converting numbers between bases in math, it's crucial to clearly state the bases you're starting with and switching to. Think of prompt engineering ...
by Otto
Tue Nov 07, 2023 11:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Interesting discussion with ChtGPT
Replies: 15
Views: 1243

Re: TGet() - UTF8 encoding fails [Unsolved]

... functions work only if the codepage is set to German. But a Unicode Get control does not have to depend on Harbour's Upper() function for converting to Upper case when picture clause "@!" is used. Windows OS has its own built-in Upper/Lower case functionality. This functionality ...
by nageswaragunupudi
Sat Oct 14, 2023 5:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGet() - UTF8 encoding fails [Solved]
Replies: 20
Views: 1732

Re: not ISOEM(), ISANSI() or IsUTF8()

hi, When you use these functions directly on your DBF, it fails. That should be expected. Reason: As I said earlier, converting only the 7 umlaut characters is NOT enough at all. This kind of conversion, we need to do for all accented characters of German language. That is the reason ...
by Jimmy
Wed Aug 30, 2023 3:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 2095

Re: not ISOEM(), ISANSI() or IsUTF8()

... with Drxlsx as well as Excel. When you use these functions directly on your DBF, it fails. That should be expected. Reason: As I said earlier, converting only the 7 umlaut characters is NOT enough at all. This kind of conversion, we need to do for all accented characters of German language. ...
by nageswaragunupudi
Wed Aug 30, 2023 2:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 2095

Re: not ISOEM(), ISANSI() or IsUTF8()

... program run in command window. https://imagizer.imageshack.com/v2/xq70/924/bgfpPN.png Now XBrowse also can display OEM data by converting to ANSI, if we set oBrw:lOemAnsi := .t.. If we want this conversion only for some columns but not all, we can set oCol:lOemAnsi := .t. for ...
by nageswaragunupudi
Tue Aug 29, 2023 1:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 2095

Re: DBF to Excel Sheet, without Excel, using ADO ?

Please try using FWH built-in function and save your time.
Code: Select all  Expand view
FWAdoCreateTable( cTable, aStruct, oCn, .f. ) // --> lSuccess


Let us leave the drudgery of converting DBF structure to ADO structure to FWH, instead of wasting our time and energies.
by nageswaragunupudi
Wed Aug 09, 2023 7:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to Excel Sheet, without Excel, using ADO ?
Replies: 50
Views: 2584

Re: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?

This a small tip about using fwlog.
No need to use var2char()

Just write
Code: Select all  Expand view
fwlog aSave

fwlog function takes care of converting the array as string.
This also works for small arrays
Code: Select all  Expand view
? aSave


I will look into the main issue and get back.
Please tell me how to find the encoding of a specific table?
by nageswaragunupudi
Thu Aug 03, 2023 7:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?
Replies: 21
Views: 719

Re: Webview2

Hello Rick, thank you very much. In the next few days, I will be converting more reports and lists, which is why I will be revisiting WebView2 for quite some time. It's a great technology because you can utilize the work for Fivewin and mod harbour as well. ...
by Otto
Wed Jun 28, 2023 6:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Webview2
Replies: 5
Views: 584

Re: CLASS modification

... when they shut down, we would have to relocate everything to another server. Not worth it. [/list] This is just some of the reasons I have for not converting to a web based platform. I have not lost a single client because of this. Perhaps that is because my clients value the personalized service, ...
by TimStone
Thu May 25, 2023 11:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: CLASS modification
Replies: 33
Views: 1710

Re: Using free AI power from our Harbour apps !!!

Trying to converting it into a Class. Not working yet: gpt4all.prg #include "hbclass.ch"#include "FileIO.ch"function Main()   local dummy := QOut( "GPT4All running..." )  ...
by Antonio Linares
Sun Apr 02, 2023 7:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using free AI power from our Harbour apps !!!
Replies: 20
Views: 1674
Next

Return to advanced search