Search found 52 matches
- Sat Jan 03, 2015 8:19 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: 2015 is coming
- Replies: 6
- Views: 869
Re: 2015 is coming
Happy New year to all !!!!!
- Tue Dec 16, 2014 5:05 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Very strange indexing problem
- Replies: 27
- Views: 5350
Re: Very strange indexing problem
Thank you guys for the quick reply.
How about Tim's observation on his app?
Hello Tim. Kindly comment. Thank you very much.
I am a bit worried because we have scheduled testing of our app built with Harbour 3.2 and FWH 14.11 early next year.
Regards to all,
Jose
How about Tim's observation on his app?
Hello Tim. Kindly comment. Thank you very much.
I am a bit worried because we have scheduled testing of our app built with Harbour 3.2 and FWH 14.11 early next year.
Regards to all,
Jose
- Tue Dec 16, 2014 1:31 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Very strange indexing problem
- Replies: 27
- Views: 5350
Re: Very strange indexing problem
Hi All,
Any update?
Thank you,
Jose
Any update?
Thank you,
Jose
- Sat Aug 23, 2014 3:52 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Events from OLE
- Replies: 19
- Views: 3201
Re: Events from OLE
Hi Antonio, I found out that other implementation of the "OLE for Retail POS" was done by attaching it to a Form. So, I tried the FWH THactiveX and so far my App received events. :D Just want to clarify about the parameters of the code block. bOnevent:={|event,aParams,pParams| } 1. Is the ...
- Fri Aug 15, 2014 1:07 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Events from OLE
- Replies: 19
- Views: 3201
Re: Events from OLE
Antonio, I am sure that opening the cover of the printer will fire an event. I had tested this in our older system. The software that bridge the "Harbour Application" and the "Ole for Retail" will display a message box when the printer cover is lifted. It seems that the Harbour e...
- Thu Aug 14, 2014 9:16 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Events from OLE
- Replies: 19
- Views: 3201
Re: Events from OLE
Antonio,
No sounds, message box or whatever to indicate an event. I removed the cover of the printer that should trigger an event but nothing happened. The printer is working fine and there is no runtime error like in the older Harbour.
FYI,
Jose
No sounds, message box or whatever to indicate an event. I removed the cover of the printer that should trigger an event but nothing happened. The printer is working fine and there is no runtime error like in the older Harbour.
FYI,
Jose
- Mon Aug 11, 2014 2:33 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Events from OLE
- Replies: 19
- Views: 3201
Re: Events from OLE
Antonio,
MsgInfo( ValType( __axRegisterHandler( ::&cPropName:__hObj, {| ...| MsgInfo( 'Test') } ) ) ) shows "P"
FYI,
Jose
MsgInfo( ValType( __axRegisterHandler( ::&cPropName:__hObj, {| ...| MsgInfo( 'Test') } ) ) ) shows "P"
FYI,
Jose
- Mon Aug 11, 2014 11:40 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Events from OLE
- Replies: 19
- Views: 3201
Re: Events from OLE
Antonio,
MsgInfo( __axRegisterHandler( ::&cPropName:__hObj, {| ...| MsgInfo( 'Test') } ) ) shows "ValtoChar not supported Type yet"
FYI,
Jose
MsgInfo( __axRegisterHandler( ::&cPropName:__hObj, {| ...| MsgInfo( 'Test') } ) ) shows "ValtoChar not supported Type yet"
FYI,
Jose
- Mon Aug 11, 2014 3:08 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Events from OLE
- Replies: 19
- Views: 3201
Re: Events from OLE
Antonio,
I also checked valtype and here are results.
Msginfo(::&cPropName:__hObj) shows "ValtoChar not supported Type yet"
Msginfo(valtype(::&cPropName:__hObj)) shows "P"
FYI,
Jose
I also checked valtype and here are results.
Msginfo(::&cPropName:__hObj) shows "ValtoChar not supported Type yet"
Msginfo(valtype(::&cPropName:__hObj)) shows "P"
FYI,
Jose
- Sun Aug 10, 2014 11:31 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Events from OLE
- Replies: 19
- Views: 3201
Re: Events from OLE
Antonio,
I just tried the following suggestion and it doesn't work.
__axRegisterHandler( ::&cPropName:__hObj, {| ...| MsgInfo( 'Test') } )
Please advise. Thank you.
Regards,
Jose
I just tried the following suggestion and it doesn't work.
__axRegisterHandler( ::&cPropName:__hObj, {| ...| MsgInfo( 'Test') } )
Please advise. Thank you.
Regards,
Jose
- Sun Aug 10, 2014 2:43 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Events from OLE
- Replies: 19
- Views: 3201
Re: Events from OLE - More Info
Dear Antonio,
Just an additional information.
My application is using UnifiedPOS OLE CCO current verison 1.14.000, link http://monroecs.com/oposccos_current.htm (at the same web site).
Thank you,
Regards
Jose
Just an additional information.
My application is using UnifiedPOS OLE CCO current verison 1.14.000, link http://monroecs.com/oposccos_current.htm (at the same web site).
Thank you,
Regards
Jose
- Thu Aug 07, 2014 8:20 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Events from OLE
- Replies: 19
- Views: 3201
Re: Events from OLE
Antonio, I created the OLE for OPOS object using the function CreateObject as shown in the following. oOle:=CreateObject(cProgID) && <-- Create OLE here Source file: LS_OPOS.prg, line # 227 Let me know if you need more info. Thank you, Jose ************************************************** ...
- Thu Aug 07, 2014 2:25 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Events from OLE
- Replies: 19
- Views: 3201
Events from OLE
Dear Antonio, I wish you can take a look the "Event from OLE" Issue in my application. The upgrade resolved the runtime error but I cannot still receive call backs (events) from OLE. My understanding that the code block will be evaluated every time the OLE fired an event. The code to regis...
- Thu Aug 07, 2014 8:22 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH 11.05 to FWH 14.06 Upgrade Issues
- Replies: 24
- Views: 5367
Re: FWH 11.05 to FWH 14.06 Upgrade Issues
Antonio,
Your advice to initialize oMenu:l2007 = .F. and oMenu:l2010 = .F. resolved the error.
Thank you for the superb support!
Regards/Saludos
Jose
Your advice to initialize oMenu:l2007 = .F. and oMenu:l2010 = .F. resolved the error.
Thank you for the superb support!
Regards/Saludos
Jose
- Sun Aug 03, 2014 4:25 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH 11.05 to FWH 14.06 Upgrade Issues
- Replies: 24
- Views: 5367
Re: FWH 11.05 to FWH 14.06 Upgrade Issues
Dear Antonio,
I regret, I thought that you just want to see the syntax.
Anyway, I just sent to your private email the most reduced set of source and data files I can create so you may able to Build and Run our app.
Thank you again for your support,
Regards/saludos
Jose
I regret, I thought that you just want to see the syntax.
Anyway, I just sent to your private email the most reduced set of source and data files I can create so you may able to Build and Run our app.
Thank you again for your support,
Regards/saludos
Jose