Search found 542 matches: supports

Return to advanced search

Fulltext-Search

... in a file called "myfile.txt," you would use the following command: findstr "example" myfile.txt Regular Expressions: findstr supports regular expressions, which allows for more complex search patterns. For example, to find lines containing numbers, you might use: findstr "[0-9]" ...
by Otto
Fri Mar 15, 2024 9:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fulltext-Search
Replies: 6
Views: 1244

New FTDN February 2024 (FWH 24.02)

... and switch.rc * New: function EnumResourceNames() allows you to list the resources names that you have in your EXE selecting a specific type. It supports the use a codeblock to let you do what you may need to do with the names. Please review samples\rctoprg.prg for an example of use. samples\rctoprg.prg ...
by Antonio Linares
Sat Mar 02, 2024 8:31 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN February 2024 (FWH 24.02)
Replies: 1
Views: 205

Data exchange between PC and Android device on the same loca

... header functions that I see in the sources. But I still don't even know if I'm going down that path right. Get uhttpd to respond in some way that supports $Ajax, HttpRequest(), or Fetch-API communication. I don't dare use Mod-Harbour for this either. Because? - I have not seen how to use .HRBs ...
by Arturo Lopesoria
Tue Feb 20, 2024 11:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Data exchange between PC and Android device on the same loca
Replies: 17
Views: 793

Re: function urlLoad( cUrl )

Hi,

Curl supports many protocols and gives you many options. It is a very good option for working with the web, regardless of other options. Perhaps in this case its potential is not appreciated but I think it is good practice to use it from harbour.

Regards
C.
by Carles
Sat Feb 17, 2024 7:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: function urlLoad( cUrl )
Replies: 17
Views: 1678

Re: link between PRG and RC

... our company we use Borland C. So I will have to stick to Borland C too. Thank you very much... again kind regard ruth Dear Ruth, It is fine, FWH supports both of them with no issues :-) I am sending you the modified FWH libs
by Antonio Linares
Tue Jan 30, 2024 4:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: link between PRG and RC
Replies: 20
Views: 1700

Re: nYoffset and nXoffset

I do not see that method box supports: nXoffset or nYottset. Look into printer.prg. METHOD Box( nRow, nCol, nBottom, nRight, oPen ) INLINE ; Rectangle( ::hDCOut, nRow, nCol, nBottom, nRight,; If( oPen != nil, oPen:hPen, 0 ) ) it's not the ...
by Silvio.Falconi
Mon Jan 15, 2024 9:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: nYoffset and nXoffset
Replies: 11
Views: 832

Re: nYoffset and nXoffset

I do not see that method box supports: nXoffset or nYottset.
Look into printer.prg.
METHOD Box( nRow, nCol, nBottom, nRight, oPen ) INLINE ;
Rectangle( ::hDCOut, nRow, nCol, nBottom, nRight,;
If( oPen != nil, oPen:hPen, 0 ) )
by Otto
Mon Jan 15, 2024 9:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: nYoffset and nXoffset
Replies: 11
Views: 832

file ID in the Windows file system

... The concept of a File ID is specific to certain file systems like NTFS. Ensure that the file system of the volume on which your file resides supports these features. By using these methods, you can retrieve the unique identifier for files in Windows, which is particularly useful for scripting, ...
by Otto
Fri Jan 05, 2024 4:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: file ID in the Windows file system
Replies: 5
Views: 628

Re: phpBB to LLM

... version of Python. PyTorch may have specific requirements for the Python version. As of my last knowledge update in January 2022, PyTorch 1.10.0 supports Python 3.6, 3.7, 3.8, and 3.9. You can check the PyTorch website for the latest compatibility information. Use the Correct Pip Command: Ensure ...
by Antonio Linares
Mon Dec 25, 2023 6:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: phpBB to LLM
Replies: 33
Views: 4691

Re: Help splitting up a character address string

... You will need to adapt this logic to the specific syntax and functions of the programming language you are using. If you're using a language that supports regular expressions, that could be an even more robust solution. Let me know if you need help in a specific programming language! User I need ...
by Otto
Wed Nov 15, 2023 7:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 602

Re: Does TDatabase supports SEEK LAST?

He is using database object.
But he is not looking for DbGoBottom()
He is looking for
Code: Select all  Expand view
SEEK cSeek LAST // i.e., DBSEEK( cSeek, nil, .T. )

which is totally different from "GoBottom()"
by nageswaragunupudi
Fri Nov 10, 2023 4:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Does TDatabase supports SEEK LAST?
Replies: 5
Views: 378

Re: Does TDatabase supports SEEK LAST?

Saved me a few keystrokes :)
I normally would type as (oDbf:cAlias)->(dbSeek(cSeek, nil, .t.))


If you use database objects then you can just do:

oCustomer:goBottom()
by James Bott
Fri Nov 10, 2023 1:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Does TDatabase supports SEEK LAST?
Replies: 5
Views: 378

Re: Does TDatabase supports SEEK LAST?

Not only DBSEEK,
You can use any (x)Harbour function as if it is a METHOD.
by nageswaragunupudi
Tue Nov 07, 2023 7:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Does TDatabase supports SEEK LAST?
Replies: 5
Views: 378

Re: Does TDatabase supports SEEK LAST?

Thanks Rao,
Saved me a few keystrokes :)
I normally would type as (oDbf:cAlias)->(dbSeek(cSeek, nil, .t.))
by hua
Tue Nov 07, 2023 6:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Does TDatabase supports SEEK LAST?
Replies: 5
Views: 378

Re: Does TDatabase supports SEEK LAST?

Please try oDbf:DbSeek( cSeek, nil, .T. ) This works with FWH1912 also, Don't bother if you can not find the method DbSeek() With database class we call use any (x)Harbour function as if it is a method, if that function is linked to the application. Note: If you get runtime error, just inclu...
by nageswaragunupudi
Tue Nov 07, 2023 5:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Does TDatabase supports SEEK LAST?
Replies: 5
Views: 378
Next

Return to advanced search

cron