Search found 8810 matches: working

Return to advanced search

Re: Digital signing a document

... Michel, Asking chatgpt: you can utilize a C library that provides PDF parsing capabilities. One such library is Poppler, which is widely used for working with PDF files in C You can download the pre-built Poppler library for Windows from the Poppler website: https://poppler.freedesktop.org/. Here ...
by Antonio Linares
Sat Apr 13, 2024 6:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Digitally signing a document
Replies: 12
Views: 295

Re: Problem with valid email refresh btnbmp

Just now, I requested Mr. Anser KK also to help testing. He tested with FWH2307 and informed that the program is NOT working with FWH2307 So, Mr. Silvio Let me test with FWH2307 and get back to you. Also let me know the FWH version you are using. Thanks Dear Rao, I'using the last ...
by Silvio.Falconi
Fri Apr 12, 2024 8:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with valid email refresh btnbmp- RESOLVED
Replies: 25
Views: 2267

Re: Problem with valid email refresh btnbmp

nageswaragunupudi wrote:Can any other friends also test this program and let us know if it is working for them.


Dear Rao,

Test code from Antonio.
working fine for 32bit.
    Win11 home/pro
    FWH2402
    Harbour 3.2
    Bcc77
by richard-service
Fri Apr 12, 2024 7:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with valid email refresh btnbmp- RESOLVED
Replies: 25
Views: 2267

Re: Problem with valid email refresh btnbmp

Just now, I requested Mr. Anser KK also to help testing.
He tested with FWH2307 and informed that the program is NOT working with FWH2307

So, Mr. Silvio
Let me test with FWH2307 and get back to you.
Also let me know the FWH version you are using.
Thanks
by nageswaragunupudi
Fri Apr 12, 2024 6:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with valid email refresh btnbmp- RESOLVED
Replies: 25
Views: 2267

Re: Problem with valid email refresh btnbmp

Hi Friends,

I have tested the Antonio's above code with:

Win11,
FWH 2310,
xHarbour 1.3.1 Lastest Build,
BCC760

And it is working as intended.

-Ramesh Babu
by RAMESHBABU
Fri Apr 12, 2024 6:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with valid email refresh btnbmp- RESOLVED
Replies: 25
Views: 2267

Re: Problem with valid email refresh btnbmp

Can any other friends also test this program and let us know if it is working for them.
by nageswaragunupudi
Fri Apr 12, 2024 6:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with valid email refresh btnbmp- RESOLVED
Replies: 25
Views: 2267

Re: Problem with valid email refresh btnbmp

... !Empty( hb_regex( preCompiled, alltrim( cEmail ) ) ) https://imagizer.imageshack.com/img923/91/h0gh9Z.gif working fine here
by Antonio Linares
Fri Apr 12, 2024 6:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with valid email refresh btnbmp- RESOLVED
Replies: 25
Views: 2267

Re: FWH 24.02 nueva Clase TWebView2

Dear Vilian,

> Is webview2 already ready?

Yes, it is working nicely

> Do you think is possible implement a complete ERP using it ?

I would sugest start building some modules and see the results and possible difficulties.
by Antonio Linares
Wed Apr 10, 2024 12:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWH 24.02 nueva Clase TWebView2
Replies: 7
Views: 1235

Re: harbour/xharbour appear ADS functions error

Enrico Maria Giordano wrote:Done, please check:

http://xharbour.org/index.asp?page=download/windows/binaries_win


Dear EMG,

It's working fine. Thank you so much.
by richard-service
Tue Apr 09, 2024 4:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: harbour/xharbour appear ADS functions error-SOLVED
Replies: 47
Views: 8272

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: 2708

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: 2708

Re: FWHMYSQL Insert failing

...  FW_MEMOEDIT( oCn:CreateTableSQL( "testinsert" ) )   oCn:Close()return nil This is working well for me: https://imagizer.imageshack.com/v2/xq70/923/043Ca8.png This is the creation SQL of the table CREATE TABLE `testinsert` ...
by nageswaragunupudi
Sat Apr 06, 2024 1:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWHMYSQL Insert failing
Replies: 6
Views: 393

Re: Question about wfReadUrl()

... has 3 different url's, all showing the same website. Because some antivirus software is blocking some of my url's, I want to check which url is working fine. Usuaslly my url's are working ok with the prefix "https". THe function wfReadUrl() which I use to check if the url is working, ...
by driessen
Fri Apr 05, 2024 8:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about wfReadUrl() - SOLVED
Replies: 20
Views: 2708

Re: Question about wfReadUrl()

Thanks a lot for trying to help me.

I tested you suggestion.
Unfortunately, the function you suggested is only working for http, not for https.
by driessen
Fri Apr 05, 2024 3:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about wfReadUrl() - SOLVED
Replies: 20
Views: 2708

Re: Problem with valid email refresh btnbmp

nageswaragunupudi wrote:
here not run ok

My program is perfectly working here and this is the proof:
Image



So what should I do if it doesn't work for me? I tried it on several computers with Windows 10 Professional
by Silvio.Falconi
Fri Apr 05, 2024 12:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with valid email refresh btnbmp- RESOLVED
Replies: 25
Views: 2267
Next

Return to advanced search