messages
listlengths 1
1
| topic
stringlengths 2
60
|
---|---|
[
{
"date": "2006-07-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I'm using voiceangel activex for tapi support\n\nRegards",
"time": "07:36",
"topic": "ActiveX parameters",
"username": "Roberto Parisi"
}
] |
ActiveX parameters
|
[
{
"date": "2009-01-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi everyone;\n\nI'm trying to use an ActiveX that works with a signing pad hardware. It contains a method to display a standard dialog to pickup a signature. When executed it looks like this:\n\n[img:1omadbnk]http://ssfl.dynalias.com/temp/screen1.jpg[/img:1omadbnk]\n\nAfter clicking [OK] the application aborts without showing any type of message. Clicking on [Clear] or [Cancel] work as expected. The error can't be trapped with TRY-CATCH-END. All other properties and methods seem to work just fine.\n\nHere is part of the code:\n[code:1omadbnk]\n//------------------------------------------------------------------------//\n\nMETHOD New( ) CLASS TePad\nlocal lOk\t:= .t.\nlocal oErr\n\n\t\n\tDEFINE WINDOW ::oWnd FROM -300, -300 TO -300, -300\t//hidden\n\nTRY\n\t::oActiveX := TActiveX():New( ::oWnd, \"esW25COM.esCapture.1\" )\n\t::cDevice := ::oActiveX:GetProp( \"ConnectedDevice\" ) \n\n/*----------------------------------------------------------------------------\nConnectedDevice = \n{98C174D3-6D2A-4509-96DB-D5B34FA7A561}: Interlink ePadInk\n{7FCD9512-8763-436E-8747-40972EE28EFD}: Interlink ePad\n{C55C5D54-8A92-48AD-A32F-1FC58092A581}: Interlink ePadID \n------------------------------------------------------------------------------*/\n\nCATCH oErr\n\t::end()\n\tReturn Nil\n\nEND\n\t\nRETURN Self \n\n//------------------------------------------------------------------------//\nMETHOD SetProp() CLASS TePad\n\n\t::oActiveX:SetProp( \"SignDlgCaption\", ::cCaption )\n\t::oActiveX:SetProp( \"DisplayName\", ::cDispName )\n\t::oActiveX:SetProp( \"ShowSignerName\", 1 )\t//true\n\t::oActiveX:SetProp( \"EnableAntiAliasing\", 1 ) \n\nRETURN NIL\n\n//------------------------------------------------------------------------//\nMETHOD PickUpSignature() CLASS TePad\nlocal nRet \n\nTRY\n\tnRet := ::oActiveX:Do( \"StartSign\" , 0, 1 ) \nCATCH\n\tlogfile( \"trace.log\", {\"catched with errors\"})\nEND\n\nLogfile( \"trace.log\", { \"Just testing\", ::cDevice } )\n\nReturn nRet\n\n[/code:1omadbnk]\n\nTo execute I simply do this:\n[code:1omadbnk]\nStatic Function Test()\nLocal oSign := TePad():New()\n\n\tif oSign <> nil\n\t\n\t\toSign:cCaption := \"Get Patient Signature Dialog\"\n\t\t\n\t\toSign:cDispName := ProperPatName( odbf ) + \" Or Guardian\"\n\t\toSign:SetProp()\n\t\t\n\t\toSign:PickUpSignature()\n\t\toSign:End()\n\t\t\n\tendif\n\n[/code:1omadbnk]\n\nAny ideas how to debug this problem?\n\n\nReinaldo.",
"time": "01:25",
"topic": "ActiveX problem",
"username": "reinaldocrespo"
}
] |
ActiveX problem
|
[
{
"date": "2009-01-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Reinaldo,\n\nPlease use oActiveX:bOnEvent to check what events you receive.\n\nPlease review FWH\\samples\\webexp.prg for an oActiveX:bOnEvent example of use.",
"time": "08:09",
"topic": "ActiveX problem",
"username": "Antonio Linares"
}
] |
ActiveX problem
|
[
{
"date": "2009-01-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Reinaldo,\nthere is a very good solution in FWPPC forum in pure FIVEWIN. This should work with FWH too.\nRegards,\nOtto\n\nfunction Signature()\n\n local oMain, oSig, nHdc, ;\n nOldX := -1, ;\n nOldY := -1\n\n LOCAL DFILE := CURDIR() + \"\\MYSIGN.BMP\"\n\n DEFINE WINDOW oMain TITLE \"Signature\"\n\n @40,5 SAY oSig PROMPT \"test\"+CRLF+\"test2\"+CRLF+dtoc(date())+\" - \" +time() SIZE 230,150 PIXEL BORDER\n\n @15, 5 BUTTON \"Clear\" SIZE 50,20 PIXEL ACTION oSig:refresh(.t.)\n @15,60 BUTTON \"Save\" SIZE 50,20 PIXEL ACTION ( oSig:saveToBmp( DFIle ), oSig:refresh(.t.), ReleaseDC( oSig:hWnd, oSig:hDC ), OMAIN:END() )\n\n nHdc := GetDC( oSig:hWnd )\n\n\n oSig:bLButtonUp := { |x,y,z| DoDraw( nHdc, y+1, x+1,@noldx,@noldy ), nOldX := -1, nOldY := -1 }\n oSig:bMMoved := { |x,y,z| DoDraw( nHdc, y, x ,@noldx,@noldy) }\n oSig:bLClicked := { |x,y,z| DoDraw( nHdc, y, x ,@noldx,@noldy) }\n\n ACTIVATE WINDOW oMain MODAL\n\n return nil\n\n//----------------------------------------------------------------------------//\n\nSTATIC Function DoDraw( hDc, x, y, noldx, noldy )\n\n If nOldX == -1 .And. nOldY == -1\n nOldX := x\n nOldY := y\n MoveTo( hDC, x, y )\n Else\n LineTo( hDc,x,y )\n EndIf\n\nRETURN Nil\n\n//----------------------------------------------------------------------------//",
"time": "09:11",
"topic": "ActiveX problem",
"username": "Otto"
}
] |
ActiveX problem
|
[
{
"date": "2009-01-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Otto;\n\nThank you for your reply. I agree, that is an excellent example. However, not appropriate for a point of sale where you want to pick up a customer signature or a legal biding contract where you want the parties to sign some legal e-document.\n\nThe signature pad is used to pickup a customer signatures in stores and is widely used in the business world. You sign with a stylus which has a better feel than the mouse, and furthermore, the signing pad is on the other side of the desk easily available for the customer to sign. My intention is to store the signature in a blob field, so that it may be reproduced later.\n\nAgain, thank you for the reply; but I need to use a signing pad. \n\nIn case anyone is interested here is a link to some good signing pads that work with ocx controls:\n[url:2r8n78bs]http://www.interlinkelectronics.com/library/media/papers/pdf/epad-ink-datasheet-6-27.pdf[/url:2r8n78bs]\n\n\nReinaldo.",
"time": "20:30",
"topic": "ActiveX problem",
"username": "reinaldocrespo"
}
] |
ActiveX problem
|
[
{
"date": "2009-01-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Reinaldo,\n\nyou are right. I didn't thought on hardware.\nThank you for the link.\nRegards,\nOtto",
"time": "20:51",
"topic": "ActiveX problem",
"username": "Otto"
}
] |
ActiveX problem
|
[
{
"date": "2009-01-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio;\n\nDid as per your suggestion. Here is my new code:\n[code:1xrjixr5]\n//------------------------------------------------------------------------//\n\nMETHOD New( oOwner, oProcess ) CLASS TePad\nlocal lOk\t:= .t.\nlocal oErr\nlocal cEvents\t:= \"\"\n\t\n\tDEFINE WINDOW ::oWnd FROM -300, -300 TO -300, -300\t//hidden\n\nTRY\n\t::oActiveX := TActiveX():New( ::oWnd, \"esW25COM.esCapture.1\" )\n\t::cDevice := ::oActiveX:GetProp( \"ConnectedDevice\" ) \n\t::oWnd:oClient := ::oActiveX\n\t::oActiveX:bOnEvent := { |e, a| cEvents += EventInfo( e, a ) }\nCATCH oErr\n\t::end()\n\tReturn Nil\nEND\n\n\tACTIVATE WINDOW ::oWnd\n\t\nRETURN Self \n\n//------------------------------------------------------------------------//\nMETHOD SetProp() CLASS TePad\n\n\t::oActiveX:SetProp( \"SignDlgCaption\", ::cCaption )\n\t::oActiveX:SetProp( \"DisplayName\", ::cDispName )\n\t::oActiveX:SetProp( \"ShowSignerName\", 1 )\t//true\n\t::oActiveX:SetProp( \"EnableAntiAliasing\", 1 ) \n\nRETURN NIL\n\n//------------------------------------------------------------------------//\nMETHOD PickUpSignature() CLASS TePad\nlocal nRet \n\nTRY\n\t::oActiveX:Do( \"StartSign\" , 0, 1 ) \nCATCH\n\tlogfile( \"trace.log\", {\"catched with errors\"})\nEND\n\nLogfile( \"trace.log\", { \"Just testing\", ::cDevice } )\n\nReturn nRet\n\n//------------------------------------------------------------------------//\nstatic function EventInfo( e, a )\nlocal cMsg \t:= \"Event:\" + cValToChar( e ) + CRLF\nlocal n \n\n\tcMsg += \"Parms:\"\n\tfor n:=1 to Len ( a ) \n\t\tcMsg += cValToChar( a[n] ) + CRLF\n\tnext n\n\t\nreturn cMsg + CRLF\n\n[/code:1xrjixr5]\nAnd here is the code that calls that code:\n[code:1xrjixr5]Local oSign := TePad():New()\n\n\tif oSign <> nil\n\t\n\t\toSign:cCaption := \"Get Patient Signature Dialog\"\n\t\t\n\t\toSign:cDispName := ProperPatName( odbf ) + \" Or Guardian\"\n\t\toSign:SetProp()\n\t\t\n\t\toSign:PickUpSignature()\n\t\toSign:End()\n\t\t\n\tendif\n[/code:1xrjixr5]\n\nThe standard signing dialog pops up and everything works as expected until I press the [ok] button. At that moment the application aborts and no messages are displayed. Nothing gets logged into trace.log either.\n\nAny other ideas?\n\n\nReinaldo",
"time": "21:04",
"topic": "ActiveX problem",
"username": "reinaldocrespo"
}
] |
ActiveX problem
|
[
{
"date": "2009-01-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio;\n\nI realized that I wasn't doing anything with bOnEvent, so I changed the line to this:\n[code:d96hxixx]\t::oActiveX:bOnEvent := { |e, a| logfile( \"trace.log\", {EventInfo( e, a ) } ) }\n[/code:d96hxixx]\n\nThe following information gets logged as soon as the signing begins:\n01/11/2009 15:48:34: Event:OnFirstTouch\nParms:\n\nBut after pressing [ok] nothing gets logged and the application aborts.\n\n\n\nReinaldo",
"time": "21:51",
"topic": "ActiveX problem",
"username": "reinaldocrespo"
}
] |
ActiveX problem
|
[
{
"date": "2009-01-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Reinaldo,\n\nAre you sure that you have to use it as an ActiveX ?\n\nMaybe you should create it using CreateObject() and manage it as an OLE object, not as an ActiveX.",
"time": "01:07",
"topic": "ActiveX problem",
"username": "Antonio Linares"
}
] |
ActiveX problem
|
[
{
"date": "2009-01-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Tried it. Same result. I only wish I could stop execution to see what's happening after the [ok] button on that dialog is doing. Here is my new code:\n[code:1le9z36q]\n//------------------------------------------------------------------------//\nMETHOD New() CLASS TePad\n\nTRY\n\t::oActiveX := GETACTIVEOBJECT( \"esW25COM.esCapture.1\" )\nCATCH\n\tTRY\n\t\t::oActiveX := CREATEOBJECT( \"esW25COM.esCapture.1\" )\n\tCATCH\n\t\tAlert( \"ERROR! SigningPad not avialable. [\" + Ole2TxtError()+ \"]\" )\n\t\t::end()\n\t\tReturn Nil\n\tEND\nEND\n\nRETURN Self \n\n//------------------------------------------------------------------------//\nMETHOD SetProp() CLASS TePad\n\n\t::oActiveX:SignDlgCaption := ::cCaption\n\t\nRETURN NIL\n\n//------------------------------------------------------------------------//\nMETHOD PickUpSignature() CLASS TePad\nlocal nRet \n\nTRY\n\t::oActiveX:ClearSign()\n\t::oActiveX:StartSign( 0, 1 )\nCATCH\n\tlogfile( \"trace.log\", {\"catched with errors\"})\nEND\n\nLogfile( \"trace.log\", { \"Just testing\", ::cDevice } )\n\nReturn nRet\n[/code:1le9z36q]\n\nThe dialog hast three buttons. [Clear], [Cancel], [Ok]. Clicking on any of these and it all work as expected, except when clicking on [Ok] after signing. The app simply aborts. \n\n\n\nReinaldo.",
"time": "21:28",
"topic": "ActiveX problem",
"username": "reinaldocrespo"
}
] |
ActiveX problem
|
[
{
"date": "2009-01-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Reinaldo,\n\nIs ::oActiveX:StartSign( 0, 1 ) the method to invoke the signature dialogbox ?\n\nWhat 0 and 1 mean ? \nDo you have any example of use in VB, C, etc. or docs for it ?",
"time": "22:10",
"topic": "ActiveX problem",
"username": "Antonio Linares"
}
] |
ActiveX problem
|
[
{
"date": "2009-01-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio;\n\nGood idea. Here is a link to the documentation and the actual ocx and dll needed for testing:\n\n[url:1i1tdceu]http://ssfl.dynalias.com/temp[/url:1i1tdceu]\n\nDownload the .pdf and the .ocx and the .dll for your own tests. [I think] The only thing you won't be able to do without the pad is the actual signing, therefore you won't be able to test the ok button.\n\nThe ocx is usable for different models. The model I'm testing is the ePad id. That first parameter does nothing with the ePad Id. On a ePad Ink, it would control the number of buttons to display on the pad. Here is a link to their devices:\n\n[url:1i1tdceu]http://www.interlinkelectronics.com/esign/products/epad/index.html[/url:1i1tdceu]\n\nThank you for your help.\n\n\nReinaldo.",
"time": "23:05",
"topic": "ActiveX problem",
"username": "reinaldocrespo"
}
] |
ActiveX problem
|
[
{
"date": "2009-01-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Reinaldo,\n\nWhat we need is that you locate some VB or C example code for it and post it here to review it, thanks",
"time": "01:14",
"topic": "ActiveX problem",
"username": "Antonio Linares"
}
] |
ActiveX problem
|
[
{
"date": "2009-01-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Ok. Here is the whole vb project and also the .exe build of the sample code:\n[url:569exesl]http://ssfl.dynalias.com/temp/epad_vb_sample[/url:569exesl]\n\nReinaldo.",
"time": "01:20",
"topic": "ActiveX problem",
"username": "reinaldocrespo"
}
] |
ActiveX problem
|
[
{
"date": "2009-01-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Reinaldo,\n\nIs your PRG code similar to this one ?\n[code:3dvk9a6o]\nPrivate Sub CmdStartSign_Click()\n SignData = vbNullString\n 'set the sign dialog caption\n IntegriSign1.SignDlgCaption = \"IntegriSign Signature Capture\"\n 'set the data to be associated with the signature\n IntegriSign1.HashData = txtHashData.Text\n 'set whether cross mark needs to be displayed if content is modified\n If chkAppOptions(5).Value = 0 Then\n IntegriSign1.Cross = Cross_OFF\n Else\n IntegriSign1.Cross = Cross_ON\n End If\n 'initiate the act of signing\n IntegriSign1.StartSign cmbBut.ListIndex, chkAppOptions(6).Value\n If chkAppOptions(6).Value = 1 Then\n lblft.Caption = vbNullString\n End If\nEnd Sub\n[/code:3dvk9a6o]",
"time": "01:30",
"topic": "ActiveX problem",
"username": "Antonio Linares"
}
] |
ActiveX problem
|
[
{
"date": "2009-01-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Well... I'm skipping some of the optional statements. According to the documentation you don't have to set hash data if you don't need signature validation. I'm not setting the .cross property either, since I'm not doing the hashing anyway. So actually, my code is much simpler. I first create the Ole instance object, set the dialog caption, and proceed to StartSign().\n\nSo basically my code is:\n\n[code:1zeoppbs]\n\t::oActiveX := CREATEOBJECT( \"esW25COM.esCapture.1\" )\n\t::oActiveX:SignDlgCaption := ::cCaption\n\t::oActiveX:StartSign( 0, 1 )\n[/code:1zeoppbs]\n\nFor some reason it all works well in their sample apps. But pressing [ok] after taking the signature breaks my app. I'll continue to investigate.\n\nThank you,\n\n\nReinaldo",
"time": "01:50",
"topic": "ActiveX problem",
"username": "reinaldocrespo"
}
] |
ActiveX problem
|
[
{
"date": "2010-06-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi \n I am also having the same problem while using VBScript with integrisign. Did you find out the solution for this...if so could you please share it\nThanks & Regard\nSukesh",
"time": "06:27",
"topic": "ActiveX problem",
"username": "sukesh"
}
] |
ActiveX problem
|
[
{
"date": "2010-06-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Sukes;\n\nNope. No luck. I lost that potential customer. But, I would still love to find a signing pad that can be used and controlled from FW. Please get back if you are able to make any progress.\n\nthank you,\n\n\n\nReinaldo.",
"time": "13:39",
"topic": "ActiveX problem",
"username": "reinaldocrespo"
}
] |
ActiveX problem
|
[
{
"date": "2010-06-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Try this way:\n\n[code=fw:2rgmeips]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"Fivewin.ch\"</span><br /><br /><span style=\"color: #00C800;\">function</span> main<br /><br /><span style=\"color: #00C800;\">local</span> oAct, oWnd<br /><br /><span style=\"color: #0000ff;\">define</span> <span style=\"color: #0000ff;\">window</span> ownd<br /><br /> oAct:=TActiveX<span style=\"color: #000000;\">(</span>oWnd,<span style=\"color: #ff0000;\">\"esW25COM.esCapture\"</span><span style=\"color: #000000;\">)</span><br /> oAct:<span style=\"color: #000000;\">bOnEvent</span>:=<span style=\"color: #000000;\">{</span>|e,a| Evento<span style=\"color: #000000;\">(</span>e,a<span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span><br /> oAct:<span style=\"color: #000000;\">SignDlgCaption</span><span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"IntegriSign Signature Capture\"</span><span style=\"color: #000000;\">)</span><br /> oAct:<span style=\"color: #000000;\">HashData</span><span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"string txthashdata\"</span><span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">// txtHashData.Text</span><br /> oAct:<span style=\"color: #0000ff;\">Cross</span> = Cross_ON <span style=\"color: #B900B9;\">// you need know value of cross_on</span><br /> oAct:<span style=\"color: #000000;\">StartSign</span><span style=\"color: #000000;\">(</span> cA,cB <span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">// cmbBut.ListIndex, chkAppOptions(6).Value</span><br /><br /><span style=\"color: #0000ff;\">activate</span> <span style=\"color: #0000ff;\">window</span> ownd<br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #00C800;\">function</span> Evento<span style=\"color: #000000;\">(</span> wEvent, aParams <span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">local</span> i<br /><br /> <span style=\"color: #0000ff;\">msginfo</span><span style=\"color: #000000;\">(</span> wEvent , <span style=\"color: #ff0000;\">\"Evento\"</span> <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">if</span> <span style=\"color: #000000;\">(</span> valtype<span style=\"color: #000000;\">(</span> aParams <span style=\"color: #000000;\">)</span> == <span style=\"color: #ff0000;\">\"A\"</span> <span style=\"color: #000000;\">)</span><br /> <br /> <span style=\"color: #00C800;\">for</span> i = <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">to</span> len<span style=\"color: #000000;\">(</span> aParams <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #0000ff;\">Msginfo</span><span style=\"color: #000000;\">(</span>aParams<span style=\"color: #000000;\">[</span>i<span style=\"color: #000000;\">]</span>,<span style=\"color: #ff0000;\">\"Params\"</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">next</span> i<br /><br /> elseif <span style=\"color: #000000;\">(</span> ValType<span style=\"color: #000000;\">(</span> aParams <span style=\"color: #000000;\">)</span> == <span style=\"color: #ff0000;\">\"C\"</span> <span style=\"color: #000000;\">)</span><br /> <br /> <span style=\"color: #0000ff;\">Msginfo</span><span style=\"color: #000000;\">(</span>aParams,<span style=\"color: #ff0000;\">\"Params\"</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">endif</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span></div>[/code:2rgmeips]\n\n <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D -->",
"time": "16:18",
"topic": "ActiveX problem",
"username": "lailton.webmaster"
}
] |
ActiveX problem
|
[
{
"date": "2011-04-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "All:\n\nI'm testing an activex and having some problems. I an activate it with\n\n oSmtp = TActiveX():New(oWnd, \"SocketTools.InternetMail.7\" ) \n\nbut I cannot access any of the properties or methods. I get an error message 'Error description: Error 11944840/3 DISP_E_MEMBERNOTFOUND: TO\n Args:' \n \nI can access the methods/properties if I create the object with: \n\n oSmtp := CreateObject(\"SocketTools.InternetMail.7\")\n\nbut I want to use it as an activex so I can process events. Does anyone have any idea what the problem may be? I can create/use other activex controls without a problem.\n\nI asked the author and this was their response:\n\nIf the Initialize method returns any value other than 0, that’s a failure; the error that you’re getting indicates an invalid procedure call. There can be one of two general causes for this. First, all of the method arguments must be passed as variants or the language must be capable of converting its native data types into variants before invoking the method. Second, when an instance of the control is created, its container must flag it as being in \"user mode\" (i.e.: a running application, not in design mode). If the development tool that you're using doesn't set the ambient UserMode property to true, then initialization will fail and you won't be able to access most properties.\n\nI'm afraid I can't offer any specific details because I'm not familiar with xHarbour, but generally speaking, our controls expect that they're going to be running in an environment that fully supports the ActiveX control standard and in essence handles controls in exactly the same way that Visual Basic does. \n\nI\"m using FHW 10.9 / xHarbour 10.9\n\nThanks,\nRandal",
"time": "19:54",
"topic": "ActiveX problem",
"username": "Randal"
}
] |
ActiveX problem
|
[
{
"date": "2016-05-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I have FiveWin 15.01 and xHarbour 1.2.3 Intl. (SimpLex) (Build 20151110) and I cant run any example with ActiveX.\nProgram hand at this point:\n\nActivex.prg (line 77): ::hActiveX = CreateActiveX( ::hWnd, cProgID, Self )\n\nThanks ...",
"time": "10:08",
"topic": "ActiveX problem",
"username": "dpesic"
}
] |
ActiveX problem
|
[
{
"date": "2016-05-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Please try to build this in fwh\\samples folder:\n\nbuildx.bat webexp\n\nHere it is working fine using FWH 16.03\n\nWhat Windows version are you using ?",
"time": "11:33",
"topic": "ActiveX problem",
"username": "Antonio Linares"
}
] |
ActiveX problem
|
[
{
"date": "2016-05-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "It's same ... program just stop. Hothing happens.\n\nI have Win10.",
"time": "17:00",
"topic": "ActiveX problem",
"username": "dpesic"
}
] |
ActiveX problem
|
[
{
"date": "2016-05-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Could you consider using Harbour ?",
"time": "18:10",
"topic": "ActiveX problem",
"username": "Antonio Linares"
}
] |
ActiveX problem
|
[
{
"date": "2016-05-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I'm using SQLRDD xHarbour in my app for PostgreSQL access.\n\nAs far I can see this is faster then ADORDD. Em I wrong maybe ?",
"time": "18:59",
"topic": "ActiveX problem",
"username": "dpesic"
}
] |
ActiveX problem
|
[
{
"date": "2016-05-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Nobody has compared their speeds yet, as far as I know.\n\nIf you already have your app coded with SQLRDD then there is no sense in using ADORDD.\n\nYesterday I tested samples\\webexp.prg (ActiveX) with xHarbour and FWH 16.03 and worked fine",
"time": "20:04",
"topic": "ActiveX problem",
"username": "Antonio Linares"
}
] |
ActiveX problem
|
[
{
"date": "2007-04-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Antonio,\n\nLook it below:\n\n[code:ey2wwkbz]\nDEFINE WINDOW oWnd TITLE \"Test ActiveX\"\n\n oActX := TActiveX():New( oWnd, \"Codejock.ReportControl.10.4.2\" )\n oWnd:oClient = oActX\nACTIVATE WINDOW oWnd\n[/code:ey2wwkbz]\n\n[url=http://img153.imageshack.us/my.php?image=fwhwndau9.jpg:ey2wwkbz][img:ey2wwkbz]http://img153.imageshack.us/img153/1268/fwhwndau9.th.jpg[/img:ey2wwkbz][/url:ey2wwkbz]\n\n[code:ey2wwkbz]\nDEFINE DIALOG oDlg RESOURCE \"Test_ACTIVEX\"\n\noActX := TActiveX():ReDefine( 100, oDlg, \"Codejock.CalendarControl.10.4.2\" )\nACTIVATE DIALOG oDlg\n[/code:ey2wwkbz]\n\n[url=http://img217.imageshack.us/my.php?image=fwhdlgjs3.jpg:ey2wwkbz][img:ey2wwkbz]http://img217.imageshack.us/img217/3719/fwhdlgjs3.th.jpg[/img:ey2wwkbz][/url:ey2wwkbz]\n\nRegards,\n\nRichard",
"time": "12:31",
"topic": "ActiveX problem?",
"username": "Taiwan"
}
] |
ActiveX problem?
|
[
{
"date": "2007-04-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Antonio,\n\nAdd a method below:\n\n[code:23u5p5g7]\nDEFINE WINDOW oWnd TITLE \"Test ActiveX\" \n\n oActX := TActiveX():New( oWnd, \"Codejock.ReportControl.10.4.2\" ) \n oWnd:oClient = oActX \n\n oActX:Do( \"SetVirtualMode\", 1000 )\n\nACTIVATE WINDOW oWnd \n\n[/code:23u5p5g7]\n\nWork fine. Please look Message 1 of picture 1\n\n[code:23u5p5g7]\nDEFINE DIALOG oDlg RESOURCE \"Test_ACTIVEX\" \n\noActX := TActiveX():ReDefine( 100, oDlg, \"Codejock.CalendarControl.10.4.2\" ) \n\noActX:Do( \"SetVirtualMode\", 1000 )\n\nACTIVATE DIALOG oDlg \n[/code:23u5p5g7]\n\nI got error message.\n\n[url=http://img99.imageshack.us/my.php?image=fwherrorjg8.jpg:23u5p5g7][img:23u5p5g7]http://img99.imageshack.us/img99/8620/fwherrorjg8.th.jpg[/img:23u5p5g7][/url:23u5p5g7]\n\nRegards,\n\nRichard",
"time": "13:02",
"topic": "ActiveX problem?",
"username": "Taiwan"
}
] |
ActiveX problem?
|
[
{
"date": "2007-04-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[code:tpeqo1o6]\nDEFINE DIALOG oDlg RESOURCE \"Test_ACTIVEX\"\n\nREDEFINE ACTIVEX oActX ID 100 OF oDlg PROGID \"Codejock.CalendarControl.10.4.2\"\n\nACTIVATE DIALOG oDlg ;\n ON INIT ( oActX:nTop := 0, oActX:nLeft := 0, oActX:nWidth := oDlg:nWidth, oActX:nHeight := oDlg:nHeight, oActX:Do( \"SetVirtualMode\", 1000 )\n[/code:tpeqo1o6]",
"time": "16:42",
"topic": "ActiveX problem?",
"username": "Antonio Linares"
}
] |
ActiveX problem?
|
[
{
"date": "2007-04-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Richard or Antonio,\n\nI don't know much about ADO, but unlike Word or Excel, the calendar control is not (I presume) already installed on the users computer. So how does this work; is the control linked into the app as a library?\n\nJames",
"time": "20:01",
"topic": "ActiveX problem?",
"username": "James Bott"
}
] |
ActiveX problem?
|
[
{
"date": "2007-07-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello All,\n\nI was wondering if it is possible to make FWH program listen and respond to another programs activex calls to it?\n\nThanks",
"time": "13:02",
"topic": "ActiveX program",
"username": "Dave Zowasky"
}
] |
ActiveX program
|
[
{
"date": "2007-07-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dave,\n\nWithout having further details about what you need to do, you may review Windows msg WM_COPYDATA. There is a working sample at samples\\copydata_16_32\n\nthe WM_COPYDATA message is sent when an application passes data to another application\n\nWM_COPYDATA \nwParam = (WPARAM) (HWND) hwnd; // handle of sending window \nlParam = (LPARAM) (PCOPYDATASTRUCT) pcds; // pointer to structure with data \n\nParameters\n\nhwnd\nIdentifies the window passing the data. \n\npcds\nPoints to a COPYDATASTRUCT structure that contains the data to be passed. \n\nReturn Values\n\nIf the receiving application processes this message, it should return TRUE; otherwise, it should return FALSE. \n\nRemarks\n\nAn application must use the SendMessage function to send this message, not the PostMessage function. \nThe data being passed must not contain pointers or other references to objects not accessible to the application receiving the data. \nWhile this message is being sent, the referenced data must not be changed by another thread of the sending process. \nThe receiving application should consider the data read-only. The pcds parameter is valid only during the processing of the message. The receiving application should not free the memory referenced by pcds. If the receiving application must access the data after SendMessage returns, it must copy the data into a local buffer. \n\nSee Also\n\nPostMessage, SendMessage, COPYDATASTRUCT",
"time": "15:52",
"topic": "ActiveX program",
"username": "Antonio Linares"
}
] |
ActiveX program
|
[
{
"date": "2007-07-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Also, you can use sockets.\n\nPlease review samples\\sockserv.prg and sockcli.prg",
"time": "15:53",
"topic": "ActiveX program",
"username": "Antonio Linares"
}
] |
ActiveX program
|
[
{
"date": "2007-07-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\n\nI will give a good look at the program you mentioned.\n\nIt may be what I am looking for.\n\nThanks",
"time": "11:52",
"topic": "ActiveX program",
"username": "Dave Zowasky"
}
] |
ActiveX program
|
[
{
"date": "2007-07-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "OK \n\nI think I can pose my question better.\n\n\nI looked at the fwcopy16 program and it may be a part of the answer to my question.\n\nIf I have an application (A) that is residing on the C drive as an exe and I wanted to make an activex call to that application from another application (B) that I am running.\n\n Two questions.\n\n Does application (A) need to be running or registered with operating system in any way?\n\n And in application (B) what syntax would I use to call it?\n\n\nexample like:\n\n oActiveX1 = TActiveX():New( oWnd, \"Shell.Explorer\" )\n\n oPdf = TActiveX():New( oWnd, \"AcroPDF.PDF\" ) \n\n\n\nLet me know if I am way off.\n\nThanks",
"time": "13:26",
"topic": "ActiveX program",
"username": "Dave Zowasky"
}
] |
ActiveX program
|
[
{
"date": "2007-07-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dave,\n\nWhat you describe seems possible to be implemented. \n\nIf you provide us some more exact details then we may be able to provide you more help",
"time": "13:59",
"topic": "ActiveX program",
"username": "Antonio Linares"
}
] |
ActiveX program
|
[
{
"date": "2007-07-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "PMJI, I remember I saw in xHarbour.com website that the commercial version of xHarbour support ActiveX server, I mean, that you can turn your xHabour application into an ActiveX server, not only an ActiveX client.\n\nTake a look into <!-- w --><a class=\"postlink\" href=\"http://www.xharbour.com\">www.xharbour.com</a><!-- w -->",
"time": "16:21",
"topic": "ActiveX program",
"username": "R.F."
}
] |
ActiveX program
|
[
{
"date": "2007-08-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rene,\n\nI will take a look, that sounds like what I am talking about.\n\nThanks",
"time": "19:20",
"topic": "ActiveX program",
"username": "Dave Zowasky"
}
] |
ActiveX program
|
[
{
"date": "2006-03-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "...\n oObj := TActiveX():New(oWnd, \"MyControl\")\n oPanels := oObj:GetProp(\"Panels\")\n oPanels:Do(\"Add\", \"Item 1\")\n oPanels:Do(\"Add\", \"Item 2\")\n ...\n\nCan I access to activex properties like this?\n\nRegards",
"time": "10:38",
"topic": "ActiveX properties",
"username": "Roberto Parisi"
}
] |
ActiveX properties
|
[
{
"date": "2006-03-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Roberto,\n\noPanels is not an ActiveX, so you have to do it this way:\n[code:titlllgr]\noObj := TActiveX():New(oWnd, \"MyControl\") \noPanels := oObj:GetProp( \"Panels\" ) \nOleInvoke( oPanels, \"Add\", \"Item 1\" ) \nOleInvoke( oPanels, \"Add\", \"Item 2\" ) \n[/code:titlllgr]",
"time": "13:45",
"topic": "ActiveX properties",
"username": "Antonio Linares"
}
] |
ActiveX properties
|
[
{
"date": "2006-03-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thx Antonio, now it works.\n\nWhat about a more simple access to propertyies and methods like xHarbour Activex?\n\noObj := TActiveX():New(oWnd, \"MyControl\") \noObj:Panels:Add(\"Item1\")\noObj:Panels:Add(\"Item2\")\n...\n\nRegards,\nRoberto Parisi",
"time": "14:59",
"topic": "ActiveX properties",
"username": "Roberto Parisi"
}
] |
ActiveX properties
|
[
{
"date": "2006-03-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Roberto,\n\nYes, we may implement it.",
"time": "20:39",
"topic": "ActiveX properties",
"username": "Antonio Linares"
}
] |
ActiveX properties
|
[
{
"date": "2006-09-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Antonio,\n\nIf I define window for ActiveX, work fine.\n\n[code:54oopnxy]\nDEFINE WINDOW oWnd TITLE \"FiveWin ActiveX Support\" \n\n oActiveX = TActiveX():New( oWnd, \"oa.oactrl.1\" )\n\n oWnd:oClient = oActiveX \n\n oActiveX:Do( \"ShowToolBars\", .t. )\n oActiveX:Do( \"Open\", \"c:\\計算.xls\" )\n \n ACTIVATE WINDOW ownd on init oActiveX:Do( \"Open\", \"c:\\計算.xls\" )\n[/code:54oopnxy]\n\nIf I define Dialog for ActiveX, work. but disappear any action.\n\n[code:54oopnxy]\nDEFINE DIALOG oDlg RESOURCE \"D_DR_WIN_TestActiveX\"\n\n REDEFINE ACTIVEX oActiveX ID 10000 OF oDlg ; PROGID \"oa.oactrl.1\"\n \n ACTIVATE DIALOG oDlg CENTER on init init oActiveX:Do( \"Open\", \"c:\\計算.xls\" )\n[/code:54oopnxy]\n\nI use xHarbour 0.99.4+FWH2.6+BCC55\n\nRegards,\n\nRichard",
"time": "10:06",
"topic": "ActiveX question?",
"username": "Taiwan"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Richard,\n\nHave you defined the activex control in your RC as \"TActiveX\" ?",
"time": "10:32",
"topic": "ActiveX question?",
"username": "Antonio Linares"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Antonio,\n\nYes, I had define it as you said.\n\nRichard",
"time": "15:13",
"topic": "ActiveX question?",
"username": "Taiwan"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Antonio,\n\nThis is my Resource RC below:\n\n[code:2y0sotd2]\nD_DR_WIN_TESTACTIVEX DIALOG 4, 36, 458, 263\nSTYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU\nCAPTION \"ActiveX\"\nFONT 12, \"細明體\"\n{\n CONTROL \"\", 10000, \"TActiveX\", 0 | WS_CHILD | WS_VISIBLE, 3, 2, 454, 260\n}\n[/code:2y0sotd2]\n\nRichard",
"time": "15:16",
"topic": "ActiveX question?",
"username": "Taiwan"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Antonio,\n\nI found new question below:\n\n[code:390p1duf]\nDEFINE DIALOG oDlg RESOURCE \"D_DR_WIN_TestActiveX\"\n\n REDEFINE ACTIVEX oActiveX ID 10000 OF oDlg ;\n PROGID \"oa.oactrl.1\"\n\n oActiveX:Do( \"ShowToolBars\", .t. ) ==> New add\n oActiveX:Do( \"Open\", \"c:\\計算.xls\" ) ==> New add\n\nACTIVATE DIALOG oDlg CENTER ;\n on init ( oActiveX:Do( \"ShowToolBars\", .t. ),;\n oActiveX:Do( \"Open\", \"c:\\計算.xls\" ) )\n[/code:390p1duf]\n\nIf I New add two line code and get GPF occurred.\nCalled from ACTXPDISP(0)\nCalled from TACTIVEX:DO(297)\nCalled from TestActiveX(197)\n.......",
"time": "15:33",
"topic": "ActiveX question?",
"username": "Taiwan"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Richard,\n\nYou can not send msgs to the activex before the dialogbox has been initialized, as the activex has not been initialized yet too.",
"time": "16:51",
"topic": "ActiveX question?",
"username": "Antonio Linares"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Antonio,\n\nI see. \nBut why not appear in my Resource ActiveX? if I have not add New line.\n\nRichard",
"time": "02:15",
"topic": "ActiveX question?",
"username": "Taiwan"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Richard,\n\n> But why not appear in my Resource ActiveX? if I have not add New line.\n\nI don't understand what you mean, sorry.",
"time": "10:29",
"topic": "ActiveX question?",
"username": "Antonio Linares"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Antonio,\n\nLet's return first message. Please review my codes.\nMy code use 1.DEFINE WINDOW 2.REDEFINE DIALOG\n\nProblem is REDEFINE DIALOG .... REDEFINE ACTIVEX\nWhy not disappear ActiveX function?\n\nRegards,\n\nRichard",
"time": "01:47",
"topic": "ActiveX question?",
"username": "Taiwan"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Richard,\n\nDo you mean that oActiveX:Do( \"Open\", \"c:\\計算.xls\" ) \n does not work ?",
"time": "07:16",
"topic": "ActiveX question?",
"username": "Antonio Linares"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Richard,\n\nOnly DEFINE WINDOW can use with ActiveX\n\nthis is same with DEFINE TIMER\n\nTIMER CAN'T work with DIALOG\n\nBest Regard\nareang",
"time": "09:49",
"topic": "ActiveX question?",
"username": "areang"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "This is not true:\n\n[code:jcapplew]#include \"Fivewin.ch\"\n\n\nFUNCTION MAIN()\n\n LOCAL oDlg, oTmr\n\n DEFINE DIALOG oDlg\n\n DEFINE TIMER oTmr OF oDlg;\n INTERVAL 1000;\n ACTION TONE( 440, 1 )\n\n ACTIVATE DIALOG oDlg;\n ON INIT ( oTmr:hWndOwner := oDlg:hWnd,;\n oTmr:Activate() );\n CENTER\n\n RELEASE TIMER oTmr\n\n RETURN NIL[/code:jcapplew]\n\nEMG",
"time": "10:42",
"topic": "ActiveX question?",
"username": "Enrico Maria Giordano"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Antonio,\n\n[quote=\"Antonio Linares\":3gqv8ed6]Richard,\n\nDo you mean that oActiveX:Do( \"Open\", \"c:\\計算.xls\" ) \n does not work ?[/quote:3gqv8ed6]\n\nYes, it's not work(Disappear).\n\nRichard",
"time": "02:14",
"topic": "ActiveX question?",
"username": "Taiwan"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Richard,\n\nWhat do you mean with \"disappear\" ? Does the ActiveX gets hidden ?",
"time": "06:41",
"topic": "ActiveX question?",
"username": "Antonio Linares"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Antonio Linares\":1tb6kntx]Richard,\n\nWhat do you mean with \"disappear\" ? Does the ActiveX gets hidden ?[/quote:1tb6kntx]\n\nHello Antonio,\n\nLook it.\nDEFINE WINDOW OK.\n[url=http://imageshack.us:1tb6kntx][img:1tb6kntx]http://img222.imageshack.us/img222/5853/acxwndgu9.jpg[/img:1tb6kntx][/url:1tb6kntx]\n\nDEFINE DIALOG\nREDEFINE ACTIVEX not display\n[url=http://imageshack.us:1tb6kntx][img:1tb6kntx]http://img213.imageshack.us/img213/6762/acxdlgco5.jpg[/img:1tb6kntx][/url:1tb6kntx]\n\nRichard",
"time": "08:07",
"topic": "ActiveX question?",
"username": "Taiwan"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Richard,\n\nThat was fixed on a past FWH build.\n\nPlease email me your sample code and we will build it here.",
"time": "08:25",
"topic": "ActiveX question?",
"username": "Antonio Linares"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\n\nOk. I'll send to you.\n\nRichard",
"time": "08:58",
"topic": "ActiveX question?",
"username": "Taiwan"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Richard,\n\nTested and working ok using \"OWC11.Spreadsheet\"",
"time": "09:19",
"topic": "ActiveX question?",
"username": "Antonio Linares"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Antonio Linares\":pginkt4r]Richard,\n\nTested and working ok using \"OWC11.Spreadsheet\"[/quote:pginkt4r]\n\nAntonio,\n\nYes, it's working within Dialog.\n\nBut I use some 3rd party ActiveX to help my customer.\n\nAny idea or suggestion?\n\nRichard",
"time": "09:53",
"topic": "ActiveX question?",
"username": "Taiwan"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "What OCX is it ?",
"time": "11:03",
"topic": "ActiveX question?",
"username": "Antonio Linares"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\n\nThank to reply about timer on dialog\nI missing to add oTmr:hWndOwner := oDlg:hWnd\n\nNow work fine.\n\nHow about OCX with DIALOG ?\n\n\nBest Regard\nAreang",
"time": "13:28",
"topic": "ActiveX question?",
"username": "areang"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"areang\":13ne1bno]Enrico,\n\nThank to reply about timer on dialog\nI missing to add oTmr:hWndOwner := oDlg:hWnd\n\nNow work fine.\n\nHow about OCX with DIALOG ?\n\n\nBest Regard\nAreang[/quote:13ne1bno]\n\nI don't know, sorry.\n\nEMG",
"time": "14:08",
"topic": "ActiveX question?",
"username": "Enrico Maria Giordano"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Areang,\n\n> How about OCX with DIALOG ? \n\nWe have tested it and it works fine.",
"time": "16:53",
"topic": "ActiveX question?",
"username": "Antonio Linares"
}
] |
ActiveX question?
|
[
{
"date": "2006-09-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Antonio Linares\":e9pzjhhk]What OCX is it ?[/quote:e9pzjhhk]\n\nAntonio,\n\nPlease visit this web.\n[url:e9pzjhhk]http://www.officeocx.com/OfficeActiveX.htm[/url:e9pzjhhk]\n\nRichard",
"time": "09:24",
"topic": "ActiveX question?",
"username": "Taiwan"
}
] |
ActiveX question?
|
[
{
"date": "2006-10-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Antonio,\n\nCould you try Play GIF ActiveX within Resource Dialog?\nCould you fix this problem?\n\nRegards,\n\nRichard",
"time": "02:48",
"topic": "ActiveX question?",
"username": "Taiwan"
}
] |
ActiveX question?
|
[
{
"date": "2006-10-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Richard,\n\nThe animated GIF is properly working on a dialog, though the OCX control does not paint very well (it paints a strange border around).",
"time": "05:24",
"topic": "ActiveX question?",
"username": "Antonio Linares"
}
] |
ActiveX question?
|
[
{
"date": "2006-10-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Antonio Linares\":3lbpswzq]Richard,\n\nThe animated GIF is properly working on a dialog, though the OCX control does not paint very well (it paints a strange border around).[/quote:3lbpswzq]\n\nAntonio,\n\nSo how to do it? or any suggestion or solution?\n\nRichard",
"time": "05:54",
"topic": "ActiveX question?",
"username": "Taiwan"
}
] |
ActiveX question?
|
[
{
"date": "2006-10-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Richard,\n\nYou may ask the OCX manufacturer. We have noticed the same strange behavior with Visual Basic. This is the working code:\n[code:jnue6qo6]\n#include \"FiveWin.ch\"\n\nFunction TestActiveX_Dlg() \n\n LOCAL oDlg, oActiveX\n\n DEFINE WINDOW oDlg\n\n @ 1, 1 ACTIVEX oActiveX OF oDlg ;\n PROGID \"ANIMATEDGIF.AnimatedGifCtrl.1\" \n\n oActiveX:Do( \"AnimatedGif\", \"world.gif\" )\n oActiveX:Do( \"Play\" )\n \n ACTIVATE WINDOW oDlg\n \nRETURN NIL\n[/code:jnue6qo6]\nAnd here you have an AVI file:\n<!-- m --><a class=\"postlink\" href=\"http://hyperupload.com/download/0230e60253/world.zip.html\">http://hyperupload.com/download/0230e60 ... d.zip.html</a><!-- m -->",
"time": "06:03",
"topic": "ActiveX question?",
"username": "Antonio Linares"
}
] |
ActiveX question?
|
[
{
"date": "2006-10-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Here you have the EXE:\n<!-- m --><a class=\"postlink\" href=\"http://hyperupload.com/download/02ea275455/TestActX.zip.html\">http://hyperupload.com/download/02ea275 ... X.zip.html</a><!-- m -->",
"time": "06:08",
"topic": "ActiveX question?",
"username": "Antonio Linares"
}
] |
ActiveX question?
|
[
{
"date": "2006-10-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Antonio Linares\":2r1bk94x]Here you have the EXE:\n<!-- m --><a class=\"postlink\" href=\"http://hyperupload.com/download/02ea275455/TestActX.zip.html\">http://hyperupload.com/download/02ea275 ... X.zip.html</a><!-- m -->[/quote:2r1bk94x]\n\nAntonio,\n\nBut I test some ActiveX( maybe OCX ) components,\nDefine Window work OK, but Resource Dialog not work.\n\nI just think why Window OK, Resource Dialog not OK\n\nRichard",
"time": "06:30",
"topic": "ActiveX question?",
"username": "Taiwan"
}
] |
ActiveX question?
|
[
{
"date": "2006-10-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Richard,\n\nThe EXE we have provided you is a DIALOG and it works fine.",
"time": "06:49",
"topic": "ActiveX question?",
"username": "Antonio Linares"
}
] |
ActiveX question?
|
[
{
"date": "2006-10-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Antonio Linares\":tisr9k3j]Richard,\n\nThe EXE we have provided you is a DIALOG and it works fine.[/quote:tisr9k3j]\n\nAntonio,\n\nI look your sample code not Dialog.\nIt's Window. I want Resource Dialog and REDEFINE ActiveX oActiveX ..ID\n\nRichard",
"time": "15:10",
"topic": "ActiveX question?",
"username": "Taiwan"
}
] |
ActiveX question?
|
[
{
"date": "2011-11-07",
"forum": "All products support",
"text": "Fala Pessoal!\n\nEstou tendo um problema usando o activex shell.explorer.\nUso ele para abrir uma pagina web em uma window ou dialog.\nAcontece que, de forma intermitente, ocorre erro gpf ao abrir a pagina. \nAlguem tem idéia do que pode estar ocorrendo?\n\nExemplo do código:\n[code=fw:2mzn38hs]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00C800;\">Function</span> WebExe<span style=\"color: #000000;\">(</span>cLink<span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">Local</span> oDlg<br /><span style=\"color: #00C800;\">Local</span> oActiveX<br /><br /><span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">WINDOW</span> oDlg <span style=\"color: #0000ff;\">TITLE</span> <span style=\"color: #ff0000;\">\"Help Online\"</span><br /><br /> oActiveX := TActiveX<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #00C800;\">New</span><span style=\"color: #000000;\">(</span> oDlg, <span style=\"color: #ff0000;\">\"Shell.Explorer\"</span><span style=\"color: #000000;\">)</span><br /> <br /> oDlg:<span style=\"color: #000000;\">oClient</span> = oActiveX<br /> <br /> oActiveX&#<span style=\"color: #000000;\">058</span>;bOnEvent = <span style=\"color: #000000;\">{</span> | event, aParams, pParams | EventInfo<span style=\"color: #000000;\">(</span> event, aParams, pParams, oActiveX ,<span style=\"color: #ff0000;\">\"LINK DE ERRO\"</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span><br /> <br /> <br /><span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">WINDOW</span> oDlg <span style=\"color: #0000ff;\">MAXIMIZED</span> <span style=\"color: #0000ff;\">On</span> <span style=\"color: #0000ff;\">Init</span> <span style=\"color: #000000;\">(</span>Navega<span style=\"color: #000000;\">(</span>oActiveX,cLink<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span><br /><br /><br /><br /><span style=\"color: #00C800;\">Return</span><br /><br /><br /><span style=\"color: #00C800;\">Static</span> <span style=\"color: #00C800;\">Function</span> Navega<span style=\"color: #000000;\">(</span>oActiveX,cLink<span style=\"color: #000000;\">)</span><br /><br />oActiveX&#<span style=\"color: #000000;\">058</span>;Do<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">'Navigate2'</span>,cLink<span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">while</span> oActiveX&#<span style=\"color: #000000;\">058</span>;Document == <span style=\"color: #00C800;\">nil</span><br /> SysRefresh<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br />end<br /><br /><span style=\"color: #00C800;\">Return</span> .t.<br /><br /><br /><br /><br /><span style=\"color: #00C800;\">Static</span> <span style=\"color: #00C800;\">function</span> EventInfo<span style=\"color: #000000;\">(</span> event, aParams, pParams, oActiveX , cLinkPad <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">If</span> cValToChar<span style=\"color: #000000;\">(</span> event <span style=\"color: #000000;\">)</span>==<span style=\"color: #ff0000;\">\"NavigateError\"</span> .and. <span style=\"color: #000000;\">(</span>lWebError==<span style=\"color: #00C800;\">Nil</span> .or. !lWebError<span style=\"color: #000000;\">)</span><br /> lWebError := .t.<br /> oActiveX&#<span style=\"color: #000000;\">058</span>;Navigate<span style=\"color: #000000;\">(</span>cLinkPad<span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">EndIF</span><br /><span style=\"color: #00C800;\">return</span> <br /> </div>[/code:2mzn38hs]\n\n\nErro:\n[img:2mzn38hs]http://img406.imageshack.us/img406/483/gpfc.jpg[/img:2mzn38hs]",
"time": "17:28",
"topic": "ActiveX shell.explorer",
"username": "digordo"
}
] |
ActiveX shell.explorer
|
[
{
"date": "2011-12-04",
"forum": "All products support",
"text": "eu uso com janela.\nex:\n[code=fw:3btft0z1]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00C800;\">Function</span> AbreWebWin<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">Local</span> oWndWeb, oActiveX, cURL:=<span style=\"color: #ff0000;\">\"http://www.google.com.br\"</span><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWndWeb <span style=\"color: #0000ff;\">From</span> <span style=\"color: #000000;\">10</span>,<span style=\"color: #000000;\">10</span> <span style=\"color: #0000ff;\">To</span> <span style=\"color: #000000;\">43</span>,<span style=\"color: #000000;\">90</span> <span style=\"color: #0000ff;\">TITLE</span> <span style=\"color: #ff0000;\">\"teste web\"</span><br /><br /> oActiveX = TActiveX<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #00C800;\">New</span><span style=\"color: #000000;\">(</span> oWndWeb, <span style=\"color: #ff0000;\">\"Shell.Explorer\"</span> <span style=\"color: #000000;\">)</span><br /> oWndWeb:<span style=\"color: #000000;\">oClient</span> = oActiveX<br /> oActiveX&#<span style=\"color: #000000;\">058</span>;Do<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"Navigate\"</span>, cURL<span style=\"color: #000000;\">)</span><br /> oWndWeb:<span style=\"color: #0000ff;\">center</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWndWeb <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">INIT</span> BARRABOTOESMSN<span style=\"color: #000000;\">(</span>oWndWeb, oActiveX<span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">Return</span> <span style=\"color: #00C800;\">nil</span><br /><br /> </div>[/code:3btft0z1]",
"time": "06:24",
"topic": "ActiveX shell.explorer",
"username": "roberio"
}
] |
ActiveX shell.explorer
|
[
{
"date": "2011-12-04",
"forum": "All products support",
"text": "Aqui samples\\webexp.prg funciona bien y nunca ha dado ese problema.\n\nPuedes probar el ejemplo estandard webexp.prg que nosotros incluimos en FWH ? gracias",
"time": "13:07",
"topic": "ActiveX shell.explorer",
"username": "Antonio Linares"
}
] |
ActiveX shell.explorer
|
[
{
"date": "2007-04-11",
"forum": "FiveWin for Pocket PC",
"text": "ActiveX support is already working <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nNow we are building some tests and we will publish a new build asap",
"time": "07:15",
"topic": "ActiveX support!",
"username": "Antonio Linares"
}
] |
ActiveX support!
|
[
{
"date": "2007-04-17",
"forum": "FiveWin for Pocket PC",
"text": "Greetings Antonio,\n\nThis is great news!! I look forward to seeing some examples of to implement ActiveX.",
"time": "20:11",
"topic": "ActiveX support!",
"username": "Bill Simmeth"
}
] |
ActiveX support!
|
[
{
"date": "2007-04-18",
"forum": "FiveWin for Pocket PC",
"text": "Bill,\n\nWe use the same syntax as in FWH. Quite simple <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) --> :\n[code:3dzwdcj0]\n#include \"FWCE.ch\"\n\nfunction Main()\n\n local oWnd, oActiveX\n local cEvents := \"\"\n\n DEFINE WINDOW oWnd TITLE \"FiveWin ActiveX Support\"\n\n oActiveX = TActiveX():New( oWnd, \"WMPlayer.OCX\" )\n\n oWnd:oClient = oActiveX // To fill the entire window surface\n oActiveX:SetProp( \"url\", CurDir() + \"\\clapping.wav\" )\n\n oActiveX:bOnEvent = { | event, aParams, pParams | cEvents += EventInfo( event, aParams, pParams, oActiveX ) }\n\n ACTIVATE WINDOW oWnd ;\n VALID ( MsgInfo( cEvents ), .t. )\n\nreturn nil\n\nfunction EventInfo( event, aParams, pParams, oActiveX )\n\n local cMsg := \"Event: \" + cValToChar( event ) + CRLF\n local n\n \n cMsg += \"Params: \" + CRLF\n \n for n = 1 to Len( aParams )\n cMsg += cValToChar( aParams[ n ] ) + CRLF\n next\n \nreturn cMsg + CRLF\n[/code:3dzwdcj0]",
"time": "15:56",
"topic": "ActiveX support!",
"username": "Antonio Linares"
}
] |
ActiveX support!
|
[
{
"date": "2011-10-06",
"forum": "FiveWin for Pocket PC",
"text": "Dear Antonio,\n\nI am getting an illegal operation trying to perform the following ActiveX call on Win CE 4. What am I doing wrong?\n\n//--------------------------------------------------------------------\nDEFINE WINDOW oWnd2 TITLE Ptitle + \" - Transmit\"\n\noActiveX = TActiveX():New( oWnd2, \"Shell.Explorer\" )\n\noWnd2:oClient = oActiveX\n\noActiveX:SetProp( \"url\", , Pdd + cPost + \".HTM\" )\n\nACTIVATE WINDOW oWnd2",
"time": "02:58",
"topic": "ActiveX support!",
"username": "cdmmaui"
}
] |
ActiveX support!
|
[
{
"date": "2007-09-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I am having a problem with the following code. When the window is activated it displays for a brief second then goes to the task bar (minimized); I then need to click the task bar item for the window to reappear. What can I do so the window does not run minimized? I have tried the following with no luck.\n\nACTIVATE WINDOW oWnd2 ON INIT BringWindowToTop( oWnd2:hWnd )\nACTIVATE WINDOW oWnd2 ON INIT ShowWindow( oWnd2, 1)\nACTIVATE WINDOW oWnd2 ON INIT ShowWindow( oWnd2, 5 )\nACTIVATE WINDOW oWnd2 ON INIT ShowWindow( oWnd2, 9)\nACTIVATE WINDOW oWnd2 NORMAL\n\n// Source below...\nMENU oMenu\n MENUITEM \"&Close\" ACTION ( oWnd2:End() )\nENDMENU\n\nDEFINE WINDOW oWnd2 FROM 0, 0 TO 40, 85 MENU oMenu\n\noActiveX = TActiveX():New( oWnd2, \"Shell.Explorer\" )\noWnd2:oClient = oActiveX\noActiveX:Do( \"Navigate2\", cAesdd + cHan )\n\nACTIVATE WINDOW oWnd2 NORMAL\n\nThank you,",
"time": "18:32",
"topic": "ActiveX window runs minimized",
"username": "cdmmaui"
}
] |
ActiveX window runs minimized
|
[
{
"date": "2007-09-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Darrell,\n\nI don't know if either of these will work, but you can try:\n\n SetForeGroundWindow( hWnd ) \n\nOr,\n\n SetActiveWindow( hWnd )\n\nYou might also try a sysRefresh() afterward.\n\nJames",
"time": "19:12",
"topic": "ActiveX window runs minimized",
"username": "James Bott"
}
] |
ActiveX window runs minimized
|
[
{
"date": "2007-09-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi James,\n\nThank you, I will try to use these two with ON INIT",
"time": "19:37",
"topic": "ActiveX window runs minimized",
"username": "cdmmaui"
}
] |
ActiveX window runs minimized
|
[
{
"date": "2007-09-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Darrell,\n\nYou may also try:\n\nACTIVATE WINDOW oWnd2 NORMAL ;\nON INIT SetFocus( oWnd2:hWnd )",
"time": "21:27",
"topic": "ActiveX window runs minimized",
"username": "Antonio Linares"
}
] |
ActiveX window runs minimized
|
[
{
"date": "2007-09-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thank you James and Antonio; I tried all three with and without sysrefresh() and it did not work. Any chance it has something to do wiht IE7?",
"time": "21:37",
"topic": "ActiveX window runs minimized",
"username": "cdmmaui"
}
] |
ActiveX window runs minimized
|
[
{
"date": "2007-09-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Darrell,\n\nCould you provide a small and self contained sample to test it here ? thanks",
"time": "21:40",
"topic": "ActiveX window runs minimized",
"username": "Antonio Linares"
}
] |
ActiveX window runs minimized
|
[
{
"date": "2007-09-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Darrell,\n\nThis works for fine here (and it is visible):\n\n[code:31lhq8qs]// Test ActiveX\n\n#include \"fivewin.ch\"\n\nfunction main()\n local oWnd,oActiveX\n\n DEFINE WINDOW oWnd\n\n oActiveX = TActiveX():New( oWnd, \"Shell.Explorer\" )\n oWnd:oClient = oActiveX\n oActiveX:Do( \"Navigate2\", \"www.microsoft.com\" )\n\n ACTIVATE WINDOW oWnd\n\nreturn nil[/code:31lhq8qs]",
"time": "23:46",
"topic": "ActiveX window runs minimized",
"username": "James Bott"
}
] |
ActiveX window runs minimized
|
[
{
"date": "2006-04-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi.\n\nI need help interfacing to a signature capture device. The device has an lcd where you can display text using an activex component and another activex to capture a signature. My objective is to display contract information and then gather someone's signature. Store the form and the signature for later printing.\n\n<!-- m --><a class=\"postlink\" href=\"http://www.ingenico-us.com/products/pdfs/tch1000.pdf\">http://www.ingenico-us.com/products/pdfs/tch1000.pdf</a><!-- m -->\n\nI simply have no idea how to get started on this. I can email all the documentation and ocxs. Can someone help?\n\nThank you,\n\n\nReinaldo Crespo-Bazán.",
"time": "18:05",
"topic": "ActiveX with eN-Touch 1000",
"username": "reinaldocrespo"
}
] |
ActiveX with eN-Touch 1000
|
[
{
"date": "2006-04-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "You can send me the info if you want and i will check it\nthis weekend.\n\ni've work with many OCX, so maybe i can help you.\n\nRegards.\n\n\n<!-- e --><a href=\"mailto:jcso@esm.com.mx\">jcso@esm.com.mx</a><!-- e -->",
"time": "21:32",
"topic": "ActiveX with eN-Touch 1000",
"username": "VeRCE"
}
] |
ActiveX with eN-Touch 1000
|
[
{
"date": "2006-04-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Verce!\n\nThank you very much. \n\nI've just emailed you the zipped file with documentation and ocxs. The zipped file is 10mb. If it doesn't reach you, please let me know. ok?\n\nYou can write to me at:\nreinaldocrespo arroba structuredsystems punto com\n\nReinaldo.",
"time": "21:44",
"topic": "ActiveX with eN-Touch 1000",
"username": "reinaldocrespo"
}
] |
ActiveX with eN-Touch 1000
|
[
{
"date": "2006-02-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "You may download samples\\webexp.prg with events support from here:\n\n<!-- m --><a class=\"postlink\" href=\"http://hyperupload.com/download/83ddff56/webexp.zip.html\">http://hyperupload.com/download/83ddff5 ... p.zip.html</a><!-- m -->\n\nSource code and EXE included.",
"time": "09:47",
"topic": "ActiveX with events - demo!",
"username": "Antonio Linares"
}
] |
ActiveX with events - demo!
|
[
{
"date": "2006-02-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Another sample from samples\\media.prg using events:\n\n<!-- m --><a class=\"postlink\" href=\"http://hyperupload.com/download/cc868225/media.zip.html\">http://hyperupload.com/download/cc868225/media.zip.html</a><!-- m -->",
"time": "09:53",
"topic": "ActiveX with events - demo!",
"username": "Antonio Linares"
}
] |
ActiveX with events - demo!
|
[
{
"date": "2006-02-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "This is great .Will it be inside May fwh upgrade?",
"time": "16:03",
"topic": "ActiveX with events - demo!",
"username": "ask"
}
] |
ActiveX with events - demo!
|
[
{
"date": "2006-02-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Ask,\n\nIt will be available on early days of March.",
"time": "16:32",
"topic": "ActiveX with events - demo!",
"username": "Antonio Linares"
}
] |
ActiveX with events - demo!
|
[
{
"date": "2006-02-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Antonio Linares\":2egjd316]Ask,\n\nIt will be available on early days of March.[/quote:2egjd316]\n\nAntonio <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> \n\nExcellent ! \n\nThis is a great job,\n\nCongrats,\n\nRichard",
"time": "21:08",
"topic": "ActiveX with events - demo!",
"username": "Richard Chidiak"
}
] |
ActiveX with events - demo!
|
[
{
"date": "2006-12-15",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Estimado\n\nEstoy compilando el ejemplo fwh\\samples\\word y me mando error de memoria no se puede leer...blabla..\n\npero compilo los otros ejemplos y funcionan bien\n\n[code:1nwewdhe]#include \"FiveWin.ch\"\n\nfunction Main()\n\n local oWnd, oActiveX\n\n DEFINE WINDOW oWnd TITLE \"FiveWin ActiveX Support\"\n\n oActiveX = TActiveX():New( oWnd, \"Word.Application.8\" )\n\n\talert( oActivex:Classname )\n\n\n oWnd:oClient = oActiveX // To fill the entire window surface\n\n ACTIVATE WINDOW oWnd\n\nreturn nil\n[/code:1nwewdhe]\n\nahora el nombre \"Word.Application.8\", depende de alguna version en especial?, ya que tengo office2003\n\nBueno en realidad lo que quiero hacer es enviar un documento y luego que lo impriman\n\n\nsaludos\nPatricio",
"time": "21:50",
"topic": "ActiveX y Word",
"username": "Patricio Avalos Aguirre"
}
] |
ActiveX y Word
|
[
{
"date": "2006-12-15",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Baje el ejemplo que antonio puso en el post\n\n[url:xqfcyyrt]http://fivetechsoft.com/forums/viewtopic.php?t=4404&postdays=0&postorder=asc&start=0[/url:xqfcyyrt]\n\n[url:xqfcyyrt]http://hyperupload.com/download/0287ba6816/pdf.zip.html[/url:xqfcyyrt]\n\ny me salio el mismo error\n\n[url:xqfcyyrt]http://img457.imageshack.us/my.php?image=activexeo9.jpg[/url:xqfcyyrt]\n\nAhora la pregunta, al utilizar activeX y cambien de version los usuarios, puede provocar que salga este error??\n\n\nSaludos\nPatricio",
"time": "22:34",
"topic": "ActiveX y Word",
"username": "Patricio Avalos Aguirre"
}
] |
ActiveX y Word
|
[
{
"date": "2006-12-16",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hello\n\nWhat's version of FWH and xHarbour?\n\nRichard",
"time": "04:20",
"topic": "ActiveX y Word",
"username": "Taiwan"
}
] |
ActiveX y Word
|
[
{
"date": "2006-12-16",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Amiguinho\n\nTentas antes:\n\n[code:11cq790m]\nif IsActivex( \"Word.Application.8\" )\n cString := \"Word.Application.8\"\nendif\nif IsActivex( \"Word.Application.9\" )\n cString := \"Word.Application.9\"\nendif\nif IsActivex( \"Word.Application.10\" )\n cString := \"Word.Application.10\"\nendif\nif IsActivex( \"Word.Application.11\" )\n cString := \"Word.Application.11\"\nendif\noActiveX = TActiveX():New( oWnd, cString )\n[/code:11cq790m]",
"time": "05:18",
"topic": "ActiveX y Word",
"username": "Rochinha"
}
] |
ActiveX y Word
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.