I put together a small test and if works fine with Fivewin and Harbour (Borland) but not xBuilder/xHarbour.
The problem is with LoadLibrary, this function returns a pointer instead of a numeric value.
I'm linking these libs:
\fwh\lib\xfw.lib
\xhb\lib\xHBZIP.LIB
\xhb\lib\xHBZipDll.lib
\xhb\c_lib ...
Search found 10 matches
- Mon Aug 07, 2023 5:03 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: xHarbour Commercial and latest FWH
- Replies: 3
- Views: 554
- Sat Aug 05, 2023 2:06 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: xHarbour Commercial and latest FWH
- Replies: 3
- Views: 554
xHarbour Commercial and latest FWH
I recently upgraded to the latest FWH and I am able to compile my program using xBuilder/xHarbour however, I'm getting an error in a particular function.
I'm using a 3rd party lib for emailing. This is the code in question:
hSmtp := LoadLibrary("CSMTPAV9.dll")
// Must initialize first. Should ...
I'm using a 3rd party lib for emailing. This is the code in question:
hSmtp := LoadLibrary("CSMTPAV9.dll")
// Must initialize first. Should ...
- Sun Jul 02, 2023 2:26 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Webview question
- Replies: 36
- Views: 6916
Re: Webview question
Antonio,
The latest examples work fine now.
Interestingly, the syntax used in the webview3.prg example does not show the ghost window. Specifically, assigning the dialog/window handle when calling the Webview:New() method.
oWebView := TWebView():New( , oDlg:hWnd )
Thank you so much for all your ...
The latest examples work fine now.
Interestingly, the syntax used in the webview3.prg example does not show the ghost window. Specifically, assigning the dialog/window handle when calling the Webview:New() method.
oWebView := TWebView():New( , oDlg:hWnd )
Thank you so much for all your ...
- Sat Jul 01, 2023 11:00 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Webview question
- Replies: 36
- Views: 6916
Re: Webview question
Antonio,
Thank you for all your efforts.
I get an error when using the new dll's.
"d:\fwh\samples\webview.dll is either not designed to run on Windows or it contains an error." "Error status 0xc00035a"
and then another error "Could not load webview.dll".
Works fine with the webview dll's dated ...
Thank you for all your efforts.
I get an error when using the new dll's.
"d:\fwh\samples\webview.dll is either not designed to run on Windows or it contains an error." "Error status 0xc00035a"
and then another error "Could not load webview.dll".
Works fine with the webview dll's dated ...
- Thu Jun 29, 2023 5:56 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Webview question
- Replies: 36
- Views: 6916
Re: Webview question
Dear Randal,
Please review FWH\samples\webviewuni.prg
Antonio,
Thank you for your reply. I have looked at the samples and webviewuni.prg and searched this forum for examples. I need to process the contents of the page after the user closes the browser window.
Can you please look at my sample ...
Please review FWH\samples\webviewuni.prg
Antonio,
Thank you for your reply. I have looked at the samples and webviewuni.prg and searched this forum for examples. I need to process the contents of the page after the user closes the browser window.
Can you please look at my sample ...
- Thu Jun 29, 2023 1:50 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Shell.Explorer.2 problem
- Replies: 12
- Views: 1827
Re: Shell.Explorer.2 problem
All,
The developers at Worldpay explained that their website "uses something called ThreatMetrix as an additional security measure for verifying a person is a “person” when initiating a Hosted Payments transaction, and it seems that recently they made a change that implemented some newer javascript ...
The developers at Worldpay explained that their website "uses something called ThreatMetrix as an additional security measure for verifying a person is a “person” when initiating a Hosted Payments transaction, and it seems that recently they made a change that implemented some newer javascript ...
- Thu Jun 29, 2023 1:36 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Webview question
- Replies: 36
- Views: 6916
Webview question
All,
I'm trying to replace an ActiveX shell.explorer.2 with Webview.
With the activex, when the user closed the activex window dialog I could retrieve the document in the oWnd:Valid function.
oDoc := oActiveX:document
I have looked at the examples and previous posts and I'm unable to get this ...
I'm trying to replace an ActiveX shell.explorer.2 with Webview.
With the activex, when the user closed the activex window dialog I could retrieve the document in the oWnd:Valid function.
oDoc := oActiveX:document
I have looked at the examples and previous posts and I'm unable to get this ...
- Tue Jun 27, 2023 5:57 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Shell.Explorer.2 problem
- Replies: 12
- Views: 1827
Re: Shell.Explorer.2 problem
Thank you for all your help and suggestions.
Over the years, Element Payment Systems was bought out by Vantiv which was bought out by Worldpay. I was contacted by developers at Worldpay telling me they are receiving reports from other developers/partners that are having the same problem and are ...
Over the years, Element Payment Systems was bought out by Vantiv which was bought out by Worldpay. I was contacted by developers at Worldpay telling me they are receiving reports from other developers/partners that are having the same problem and are ...
- Mon Jun 26, 2023 11:01 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Shell.Explorer.2 problem
- Replies: 12
- Views: 1827
Re: Shell.Explorer.2 problem
oActiveX:Silent := .T.
Thank you for your reply. Adding this line of code causes the error message to not be displayed however, the activex window is blank.
Upon further investigation I believe the problem may be because the vendor recently added a Captcha that the user needs to respond to before ...
Thank you for your reply. Adding this line of code causes the error message to not be displayed however, the activex window is blank.
Upon further investigation I believe the problem may be because the vendor recently added a Captcha that the user needs to respond to before ...
- Mon Jun 26, 2023 10:05 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Shell.Explorer.2 problem
- Replies: 12
- Views: 1827
Shell.Explorer.2 problem
All,
I've been using the following code for years to access a website for credit card processing. This function displays a window and allows the user to enter credit card information to process a credit card and then returns the result. Now, all of a sudden when this function is called, I get "An ...
I've been using the following code for years to access a website for credit card processing. This function displays a window and allows the user to enter credit card information to process a credit card and then returns the result. Now, all of a sudden when this function is called, I get "An ...