Search found 439 matches: alternative

Return to advanced search

Re: Question about wfReadUrl() - SOLVED

nageswaragunupudi wrote:Another alternative
Code: Select all  Expand view
function ValidURL( cUrl )

   local cIp

   WsaStartUp()
   cIp = GetHostByName( cUrl )
   WsaCleanUp()

return cIp != "0.0.0.0"


Does this work for you? If it is working is it fast in all cases?


I like it!
by Enrico Maria Giordano
Sun Apr 07, 2024 7:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about wfReadUrl() - SOLVED
Replies: 20
Views: 2782

Re: Question about wfReadUrl() - SOLVED

Another alternative
Code: Select all  Expand view
function ValidURL( cUrl )

   local cIp

   WsaStartUp()
   cIp = GetHostByName( cUrl )
   WsaCleanUp()

return cIp != "0.0.0.0"


Does this work for you? If it is working is it fast in all cases?
by nageswaragunupudi
Sat Apr 06, 2024 11:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about wfReadUrl() - SOLVED
Replies: 20
Views: 2782

Re: BackUp [cCondition]

... the internet connection is highly unreliable Even if we provide WHERE clause, Restoring the table gives problems. Let us think and come up with alternative solutions. Meanwhile you may consider and try this method of saving full or a part of the table to DBF METHOD SaveToDBF( cSql, cDbf, ...
by nageswaragunupudi
Tue Mar 05, 2024 2:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: BackUp [cCondition]
Replies: 1
Views: 157

Re: Mark field as required

... making fields required. If the user doesn't have that information, they will likely just put anything in the field so they can save the record. An alternative is to allow the user to save the record even if some of the "required" data is unknown. You could then flag all the records missing ...
by James Bott
Sat Feb 03, 2024 7:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mark field as required
Replies: 23
Views: 1779

future of Rich Text Editor maybe time to start with WEBVIEW

Hello friends, Shouldn't we consider developing an alternative to RichEdit in parallel using WebView, e.g., with the TinyMCE editor? I'm just thinking to be prepared for the future. That won't happen overnight. Factors that could influence the future ...
by Otto
Mon Jan 22, 2024 1:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: future of Rich Text Editor maybe time to start with WEBVIEW
Replies: 19
Views: 1706

Re: Problem with tget numeric

... el PAPEL a mano? Saludos. this request is not relevant to the topic of this discussion, you don't know how to solve it and you want to find other alternative solutions? I only need a series of numeric gets: at the beginning only a zero must be displayed on the right, if the user types 12345 the ...
by Silvio.Falconi
Wed Jan 17, 2024 5:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tget numeric
Replies: 16
Views: 1432

WEBVIEW2 oPrn:PrintTable() alternative

Hello friends, WebView2 now opens up great possibilities for us. HTML printing, offers several advantages over traditional desktop printing methods (like using desktop publishing software). With HTML and JavaScript, you can create highly dynamic and customizable print documents. I now have a static ...
by Otto
Fri Jan 12, 2024 6:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WEBVIEW2 oPrn:PrintTable() alternative
Replies: 0
Views: 646

Re: Definir font richedit5

Factors that could influence the future of Rich Text Editors Hello friends, Shouldn't we consider developing an alternative to RichEdit in parallel using WebView, e.g., with the TinyMCE editor? I'm just thinking to be prepared for the future. That won't happen overnight. Factors ...
by Otto
Wed Dec 27, 2023 8:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Definir font richedit5
Replies: 3
Views: 603

Re: Seleccion multiple automatica xBrowse

2nd alternative function SelMonths2()   local oDlg, oFont, oBrw   local aData := Array( 12, 2 )   local nMth  := 0   AEval( aData, { |a,i| a[ 1 ] ...
by nageswaragunupudi
Fri Dec 08, 2023 5:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Seleccion multiple automatica xBrowse
Replies: 3
Views: 835

Re: xBrowse - Dates - FWH 2310

... for the licenses. The product has not been updated since 2015, it is now end of life, and the company will not release it, nor do they provide an alternative. So there is no way to get any adjustment or fixes to that software, and we don't have a DBF supporting alternative. I don't know if we ...
by TimStone
Wed Nov 08, 2023 6:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - Dates - FWH 2310
Replies: 19
Views: 1449

Re: cGetFile()

Enrico Maria Giordano wrote:
nageswaragunupudi wrote:OFT.
Just a casual discussion.
I think it should be CURDRIVE() + ":\" + CURDIR() but not CURDRIVE() + "\" + CURDIR().


Yes, sorry.

My sincere apologies.
My intention was only to consider the merits of using the alternative function TrueName(".\")
by nageswaragunupudi
Sat Sep 16, 2023 10:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: cGetFile()
Replies: 10
Views: 691

Re: cGetFile()

OFT.
Just a casual discussion.
...
Another simpler alternative appears to be:
Code: Select all  Expand view
TrueName( "." ) // --> c:\fwh\samples
TrueName( ".\") // --> c:\fwh\samples\
by nageswaragunupudi
Sat Sep 16, 2023 1:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: cGetFile()
Replies: 10
Views: 691

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

...         If( lHeaders, 'Yes";', 'No";' ) )         endif  Can you try any alternative connection string to make it work on a PC, where Excel is not installed?
by nageswaragunupudi
Tue Aug 08, 2023 5:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to Excel Sheet, without Excel, using ADO ?
Replies: 50
Views: 2584

Re: Request For TDataRow Example for MariDB

... OR simply oRs:Record():Edit() OR even much simpler oRs := oCn:RowSet( cTable )oRs:Edit() All three alternative codes above do exactly the same thing. The reason why you do not find many examples directly using TDataRow is because you do not need to ...
by nageswaragunupudi
Tue Aug 01, 2023 3:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Request For TDataRow Example for MariDB
Replies: 4
Views: 271

sleep function

... (FUNCTION POLLING() that performs a lot of things and sometimes I introduce some waits using sleep function for one minutes. Does exist an alternative to sleep function? Is it possible to active a second timer? When the function polling is in execution I perform a oTimer:deactivate() obviously ...
by MarcoBoschi
Fri May 26, 2023 8:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: sleep function
Replies: 2
Views: 214
Next

Return to advanced search