topic
stringlengths
1
63
text
stringlengths
1
577k
ActiveX VB with xHarbour
Antonio ! FUNCTION Main() LOCAL oWnd, oFrames DEFINE Window oWnd oWnd:setText( "Use JcFrames from CoolControls.ocx" ) oFrames := Framesx():New( oWnd,,10,20,200,200 ) --> It's work fine @100,100 BUTTON "Save" size 60,20 of oWnd pixel action MsgAlert("Save") --> When I click the button, no action b...
ActiveX VB with xHarbour
Areang, > @100,100 BUTTON "Save" size 60,20 of oWnd pixel action MsgAlert("Save") That control is a child control of oWnd so oWnd should get notified when it gets clicked and the ACTION clause should work.
ActiveX VB with xHarbour
Antonio. oWnd:setText( "Use JcFrames from CoolControls.ocx" ) oFrames := Framesx():New( oWnd,,10,20,200,200 ) @100,100 BUTTON "Save" size 60,20 of oWnd pixel action MsgAlert("Save") -> This Button draw on area oFrames, when I clicked "Save" button still no action. By the way ! This is my first class to learn more ...
ActiveX VB with xHarbour
Areang, You should change Method HandleEvent() in Class TActiveX and check if WM_COMMAND value is received when the button is clicked.
ActiveX VB with xHarbour
Antonio, Is this that you mean ? METHOD OnEvent( nEvent, aParams, pParams ) CLASS TActiveX local nAt := AScan( ::aEvents, { | aEvent | aEvent[ 2 ] == nEvent } ) local cEvent := If( nAt != 0, ::aEvents[ nAt ][ 1 ], "" ) if ! Empty( ::bOnEvent ) Eval( ::bOnEvent, If( ! Empty( cEvent ), cEvent, nEven...
ActiveX VB with xHarbour
Oskar, Yes I Can see on TRMChartX class. This is not handle event for the control of windows, just for drawing. Is'nt it ? <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> Thanks Best Regard Areang
ActiveX VB with xHarbour
Areang, > 1. I have xHB from xHarbour.com patrick mask, Is your there too ? FWH is fully compatible with Harbour, xHarbour and xHarbour.com > 3. Can I use the others compiler ? Yes, > 4. When I used BCC55 or MSVC to many errors. What errors do you get ?
ActiveX VB with xHarbour
Antonio, Please Help me ! 1. I used xHB and xBuildW compiler, no Activex.lib get error : Application =========== Path and name: D:\NewHarbour\OCX\codejock\test.exe (32 bits) Size: 1,546,240 bytes Time from start: 0 hours 0 mins 0 secs Error occurred at: 08/20/06, 14:46:13 Error description: Error BA...
ActiveX VB with xHarbour
Areang, Use this at the top of your main PRG: REQUEST TACTIVEX
ActiveX VB with xHarbour
Antonio, <!-- s:cry: --><img src="{SMILIES_PATH}/icon_cry.gif" alt=":cry:" title="Crying or Very sad" /><!-- s:cry: --> my eye tires is empty for this. --> Please Help me, to understand ActiveX viewed by Oleview: [ uuid(555E8FCC-830E-45CC-AF00-A012D5AE7451), version(10.1), helpstring("Xtreme CommandBars Active...
ActiveX VB with xHarbour
Areang, Have you placed REQUEST TACTIVEX at the top of your main PRG ? Are you using xHarbour builder ?
ActiveX VB with xHarbour
Antonio, REQUEST TACTIVEX #include "FiveWin.ch" #define ID_TAB_WRITE 5004 #define ID_GROUP_CLIPBOARD 5001 function Main() local oWnd, oCommandBars, oRibbonBar, oTabWrite, oGroups, oGroupClipborad LOCAL cOriginal, cDestination IF !IsActiveX( "{555E8FCC-830E-45CC-AF00-A012D5AE7451}" ) ...
ActiveX VB with xHarbour
Areang, Are you using xHarbour builder ?
ActiveX VB with xHarbour
Antonio, I used xBuildW from xHarbour.com Areang
ActiveX VB with xHarbour
Areang, "XtremeCommandBars.CommandBarsFrame" is a very complex ActiveX. We would suggest you to start with easier ones, and try with this one later on.
ActiveX con El Explorador Web por defecto
Muy buenas, estoy utilizando el activex que abre el explorador web, este es el codigo: oActiveX = TActiveX():New( oWnd, "Shell.Explorer" ),pero me interesaría saber si se puede utilizar el explorador web que se tenga por defecto, es decir, si tengo firefox pues que utilice este. Lo hago esto por que a veces me dá error...
ActiveX con El Explorador Web por defecto
Saludos Cordiales Colegas!! Bueno pieso yo que si usas ShellExecute el archivo se abrira en la Capa del Sistema Operativo y en esa capa tomara en cuenta cual es el Explorardor por defecto que tengas en uso [code:jbcbiazm]LOCAL cHtml&#58;="Archivo&#46;html" ShellExecute&#40;0,"open",cHtml&#41;&#125; [/code:jbcbiazm]
ActiveX con El Explorador Web por defecto
Hasta donde tengo entendido, FireFox no es proveedor ActiveX, por lo tanto no se puede utilizar con la clase ActiveX de Fw.
ActiveX con El Explorador Web por defecto
Hola gente, No es muy nuevo, pero se puede. <!-- m --><a class="postlink" href="http://www.iol.ie/~locka/mozilla/control.htm">http://www.iol.ie/~locka/mozilla/control.htm</a><!-- m --> Saludos, Carlos.
ActiveX con eventos - demo!
Podeis descargar samples\webexp.prg con soporte de eventos desde: <!-- m --><a class="postlink" href="http://hyperupload.com/download/83ddff56/webexp.zip.html">http://hyperupload.com/download/83ddff5 ... p.zip.html</a><!-- m --> Código fuente y EXE incluidos.
ActiveX con eventos - demo!
Otro ejemplo de samples\media.prg usando eventos: <!-- m --><a class="postlink" href="http://hyperupload.com/download/cc868225/media.zip.html">http://hyperupload.com/download/cc868225/media.zip.html</a><!-- m -->
ActiveX con eventos - demo!
Antonio, ¿ En que build tienes implementado lo de los eventos ? Saludos
ActiveX con eventos - demo!
Fernando, Se publicará en el build de Marzo 2006.
ActiveX con eventos - demo!
Olá Antonio, Com estas mudanças em activex poderemos por exemplo usar o MsDataGrid / MsFlexGrid ? Mirem neste site e vejam este documentador de activex&#058; <!-- m --><a class="postlink" href="http://www.vbaccelerator.com/codelib/actvxdoc/article.htm">http://www.vbaccelerator.com/codelib/ac ... rticle.htm</a><!-- m -...
ActiveX con eventos - demo!
Rossine, Habrá que probarlo <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->
ActiveX con eventos - demo!
OK Antonio, <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> Gracias Maestro, Rossine.
ActiveX ctrl de eventos y manejo de parametros
Tengo un ActiveX, del cual controlo sus eventos. Uno de dichos eventos, pasa tres parametros.El primero es un numero, y los dos siguientes son un objeto (OLE).Como puedo manejar dichos objetos, al revisar el array de parametros, me devuelve un numerico, puedo intuir que sea una dirección de memoria.De la doc. del activ...
ActiveX ctrl de eventos y manejo de parametros
Biel,>aParams[2]-->53158252 //Esto debiera ser Objeto Template?? aParams[3]-->18948684 //Esto debiera ser Objeto Status>Si, posiblemente. Para poder usarlos, haz esto:[code:20ptas09] local o &#58;= CreateObject&#40; "Shell&#46;Explorer" &#41; local hOldObj &#58;= o&#58;hObj local uRet o&#58;hObj = aParams...
ActiveX ctrl de eventos y manejo de parametros
Gracias Antonio,supongo que con lo que me indicas debe de funcionar. El objeto parece que queda bien definido, el problema que tengo ahora, es particular de este objeto OleAuto, y es que puedo acceder a los datas, pero no me reconoce ningun metodo.En VB, lo he probado y si funciona ok, tanto metodos como datas. Alguna ...
ActiveX ctrl de eventos y manejo de parametros
Hola Biel:Te envie a tu privado, algo que te va a servir !! Saludos,Juan
ActiveX ctrl de eventos y manejo de parametros
Gracias Juan,lo que realmente me interesaria es poder comprobar las existencias de los metdos desde dentro de Harbour.Los nombres de los metodos, los tengo en la documetación y ademas tambien los he comprobado con Oleview, el caso es que desde Harbour me retorna error, y por ejemplo desde VB funciona correctamente. Es ...
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
Estoy migrando mis aplicaciones desde xharbour+Bcc582 a Harbour+Visual Studio 2012 Tengo problemas con algunos ActiveX, en concreto con Crystal Report y con LeadTool. El problema es que no visualiza nada. Abre la ventana mdichild pero no muestra nada. Además me pasa en los equipos con Windows 7, Windows 8, Windows 20...
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
Fernando, Sencillamente excelente! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> Muchas gracias!
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
Fernando, No te genera error ? No lo muestra y no da error ? Prueba tambien a hacer: oActiveX&#058;Show()
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
No, no genera ningún error. Sólo abre la ventana MDI y dentro esta vacia (fondo blanco). oActiveX&#058;Show() -> No funciona. No parece que sea un tema de FWH o de Harbour, ya que cuando compilo con FHW+Harbour+BCC582 funciona bien. Mas parece un tema de las librerías que se incluyen de Visual Studio, que hace que es...
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
Buenas tardes, Yo tuve ese problema con MSVC 2010, prueba registrando los controles y/o DLL asociados. Slds
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
Muchas gracias por responder, Tampoco funciona Información de dll's a registrar para crystal report REGSVR32 CRVIEWER.DLL REGSVR32 REPORTPARAMETERDIALOG.DLL REGSVR32 SVIEWHLP.DLL REGSVR32 SWEBRS.DLL
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
Fernando, Podrias proporcionar el código fuente de un ejemplo muy simple para poder reproducirlo aqui ? Asi puedo hacer pruebas aqui, gracias <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
Antonio, gracias por tu tiempo. Preparo un ejemplo y te lo envío
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
he modificado el archivo tutor02.prg con lo siguiente: [code=fw:czdh4bjw]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">// Our first Window in FiveWin !!!</span><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br ...
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
Fernando, Donde se consiguen esas DLLs ? Son redistribuibles ? gracias
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
Antonio, Te ha llegado lo que te he enviado
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
Fernando, Si, y te acabo de responder por email, gracias <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
Fernando, he probado de todo lo que se me ha ocurrido sin ningún resultado positivo por el momento. Falla tanto con TActiveX como con THActiveX por el simple hecho de usar MSVC. Con Borland, funciona perfectamente. En el caso de THActiveX somos un simple wrapper de la implementación de Harbour. Como THActiveX deriva...
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
Muchas gracias Antonio. Las nuevas versiones están desarrolladas en framework. Se puede implementar?
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
Fernando, Te refieres a .NET ? Por supuesto lo más importante en esto es ayudarte a solucionar el problema técnico de alguna forma, pero para mi es mucho más interesante que compartieses con nosotros el por que usas Crystal Reports ? Que usas de Crystal Reports ? Que es lo bueno que tiene y que le sobra ? En breve ...
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
Antonio: Me alegra leer tu decisión de desarrollar un diseñador de reporte propio de FW y te felicito por esto creo que esto solidificará más a FW. Sugiero echarle una mirada, si es que no lo haz hecho, a FastReport, teniendo lo que FR aporta tendríamos un excelente diseñador. Te ánimo a hacerlo a la brevedad posibl...
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
Armando, Lo que me gustaria es que hagamos una especie de comparativa entre los diseñadores de reportes existentes. Que es lo mejor de cada uno de ellos, que hace falta realmente y que sobra <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> Y asi construimos un diseñador q...
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
Antonio: Entonces sugiero abrir un post apropiado para esto y que ahí vayamos poniendo nuestras sugerencias, tengo algunas ideas pero esperaré al nuevo post. Saludos
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
Antonio, Si me refiero a .net framework. En cuanto a porque Crystal Report; Lo uso tanto para los informes como para los modelos de impresión de ofertas/pedidos/albaranes/facturas, etc. facilidad de usarse en cualquier entorno de programación. Comunicación con casi todas las bases sude datos. Se diseña las tablas, v...
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
Fernando Puedes indicarme que incluye este producto que te indico y si merece la pena la descarga? En la página aparece como "Free Download" [url:17dy50r4]http&#58;//www54&#46;sap&#46;com/solution/sme/software/analytics/crystal-visual-studio/index&#46;html[/url:17dy50r4] [url:17dy50r4]http&#58;//www&#46;sap&#46;com/s...
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
El componente "Crystal Report for Visual Studio" sirve para poder implementar la impresión, visualización de los reportes creados (con otro software, de pago). Su desarrollo esta realizado en .net framework. No se si se puede implementar en Harbour+FWH
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
Fernando Gracias por la informacion y tu tiempo Saludos
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
Solucionado, El problema estaba en la prevención de ejecución de datos de Windows (DEP) Aún desactivando DEP del sistema operativo seguía sin ir Incluyendo a Crystal Report Viewer dentro de los compenentes DCOM del sistema operativo, tampoco. Comprobando los parametros a la hora de linkar, encontre este "/NXCOMPAT" ...
ActiveX en Harbour + Visual Studio 2012 (SOLUCIONADO)
Antonio, Muchas gracias por tu tiempo. Saber que siempre tenemos un apoyo a lo llevamos a cabo anima a seguir.
ActiveX for Word
Hi ! I'm searching a working solution for Word with ActiveX . Please send me directly <!-- e --><a href="mailto:rimantasu@gmail.com">rimantasu@gmail.com</a><!-- e --> lib , source or dll with which my application can work with Word through ActiveX . I'll be very thankfull ! <!-- s:) --><img src="{SMILIES_PATH}/ico...
ActiveX for Word
[quote="Rimantas":2rebsecl]Hi ! I'm searching a working solution for Word with ActiveX . Please send me directly <!-- e --><a href="mailto:rimantasu@gmail.com">rimantasu@gmail.com</a><!-- e --> lib , source or dll with which my application can work with Word through ActiveX . I'll be very thankfull ! <!-- s:) --><...
ActiveX for Word
Rimantas : I wrote TExcelS class and re-write TWord class using TOleAuto and xHarbour and works excelent. If you wish can I send you. [quote="Rimantas":2ckdspax][quote="Rimantas":2ckdspax]Hi ! I'm searching a working solution for Word with ActiveX . Please send me directly <!-- e --><a href="mailto:rimantasu@gma...
ActiveX for Word
[quote="Vikthor":cwx8x13h]Rimantas : I wrote TExcelS class and re-write TWord class using TOleAuto and xHarbour and works excelent. If you wish can I send you. [/quote:cwx8x13h] Vikthor , I'll be very thankfull for you . This solution isn't ActiveX , but it will be better than nothing ... <!-- s:-) --><img src="{...
ActiveX for Word
Vikthor, Could you send to me too please. (do you have any documentation or samples) <!-- e --><a href="mailto:ollie1@theoasis.co.za">ollie1@theoasis.co.za</a><!-- e --> Thanks in advance.
ActiveX formats
Hi, I am having some difficulty trying to figure out the format of the ActiveX commands. Is there a guide or something that can explain what and when you use items from an object list. I'm having a hard time explaining what I'm after ... maybe some examples will help... Playing with the codejock calendar controls I ...
ActiveX formats
Jeff, This may help you: [url:19vvtanp]https&#58;//forum&#46;codejock&#46;com/printer_friendly_posts&#46;asp?TID=6225[/url:19vvtanp] [url:19vvtanp]https&#58;//forum&#46;codejock&#46;com/printer_friendly_posts&#46;asp?TID=11425[/url:19vvtanp]
ActiveX formats
Hi Antonio, It looks like this is the way to solve the problem... [code=fw:3rh6lcbb]<div class="fw" id="{CB}" style="font-family: monospace;">Call DatePicker.AttachToCalendar<span style="color: #000000;">&#40;</span> CalendarObject.Object <span style="color: #000000;">&#41;</span></div>[/code:3rh6lcbb] I can get the ...
ActiveX formats
Jeff, Try it this way: oDate:AttachToCalendar( ActXPdisp( oAct:hActiveX ) ) or oDate:AttachToCalendar( TOleAuto():New( ActXPdisp( oAct:hActiveX ) ) )
ActiveX formats
Thanks Antonio ... I would never have figured this out without your help. The 2nd option works <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
ActiveX in FWH13.09
This function stop in Fwh13.09. Erro in line: [b:3tggz9h1]oActiveX&#058;SetProp( "FileName", cRadioTv )[/b:3tggz9h1] [code=fw:3tggz9h1]<div class="fw" id="{CB}" style="font-family: monospace;"><br />*-----------------------------------------------------------------------------<br /><span style="color: #00C800;">Func...
ActiveX in FWH13.09
Please do it this way: oActiveX&#058;FileName := cRadioTv
ActiveX in a dialog
I want to display a doc file or a xls sheet in a dialog . Is it possible with activex ? What is the syntax, have you some sample . Thanks
ActiveX in a dialog
Jack, There are many ActiveX examples in FWH\samples. Please make a search for "activex" in FWH\samples\*.prg
ActiveX memory leak - fixed!
There was a memory leak in Class TActiveX. It has been detected and fixed <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> Next FWH build will include this fix. In Class TActiveX this new Method has to be included: [code=fw:n6crdwte]<div class="fw" id="{CB}" style="font-f...
ActiveX memory leak - fixed!
Hi Antonio, Support any FWH version? Regards, Richard
ActiveX memory leak - fixed!
Richard, It is for FWH recent versions.
ActiveX no visuales con eventos
Hola,¿Hay forma de manejar eventos de ActiveX para objetos no visuales, como por ejemplo ADO?ADO tiene eventos para cuando nos movemos, tipo OnMove y cosas por el estilo, muy interesantes, o mientras se está ejecutando una consulta, podemos actualizar algo en la pantalla, peeeero no es un objeto visual, y TActiveX requ...
ActiveX no visuales con eventos
See my post<!-- m --><a class="postlink" href="http://www.fivetechsoft.com/forums/viewtopic.php?t=13356">http://www.fivetechsoft.com/forums/view ... hp?t=13356</a><!-- m -->Es muy lamentable que Harbout y xHarbour no soporta esta característica.Hubiera sido fantástico si hemos sido capaces de utilizar estas funcionesAn...
ActiveX no visuales con eventos
Hola Carlos, hasta donde yo se, parece que no es posible, ya lo comente en otro post, y la verdad es que nos vendria muy bien, tanto para ADO como otros.
ActiveX or OLE for WINWORD?
I would like to start using WINWORD from FWH. Do I have to use ActiveX or OLE? Which libs do I have to include to use ActiveX from Harbour? Thanks in advance Otto
ActiveX or OLE for WINWORD?
[quote="Otto":34d5l5ei]I would like to start using WINWORD from FWH. Do I have to use ActiveX or OLE?[/quote:34d5l5ei] OLE if you just want to use Word as an external application. ActiveX if you want to use Word as an embedded application. [quote="Otto":34d5l5ei]Which libs do I have to include to use ActiveX from Ha...
ActiveX or OLE for WINWORD?
Hello Otto, For Winword, You can use AutoOle, same like in Excel. I look in my archiv, to find some samples for you. Regards Uwe
ActiveX or OLE for WINWORD?
Hello Enrico, Thank you for your help. Now I tried the word.prg-sample from the FIVEWIN examples. I linked HBOLE.LIB (my lib is from 2004). But I get a Harbour exception error. Maybe you can give me some more help. Regards e Buona pasqua, Otto [code:1ky2rpps]// Using Microsoft Office Word ActiveX #include "Fiv...
ActiveX or OLE for WINWORD?
Otto, You have to link hbwin32.lib
ActiveX or OLE for WINWORD?
Antonio, thank you. I have echo %hdir%\lib\hbwin32.lib + >> b32.bc in my linkscript. But the error is still there. Could you compile the file and send me your exe for testing, please. Maybe there is something wrong on my PC. Thanks in advance Otto
ActiveX or OLE for WINWORD?
Otto, I guess you are testing Word 2007. It also GPFs here. It seems there is a conflict between Class TActiveX and Word 2007. We are googling for some info about it, and we have found that VB users are also having troubles: <!-- m --><a class="postlink" href="http://www.google.es/search?hl=es&q=%22Word.Application....
ActiveX or OLE for WINWORD?
I am not able to use Excel 2007 also with activex. My earlier code is not working with 2007.
ActiveX or OLE for WINWORD?
Nageswararao, What ProgID string are you using for Excel 2007 ?
ActiveX or OLE for WINWORD?
Hi Otto Not sure what you want to do with Word so hard to make recommendations. If you tell us a bit more about what you want to achieve we can possibly help more. I used Word from FiveWin code a number of times and it worked well. (I got off the Microsoft gravy train so I don't have 2007 so can't test that.) Amo...
ActiveX or OLE for WINWORD?
Doug, thank you for your answer. I only want to run the demo sample with ActiveX. Antonio, I tried the Exe now on a WINDOWS XP/WORD2003 PC and I get the same error: [img:krsagzuw]http&#58;//www&#46;atzwanger&#46;com/fw/wordActiveX&#46;jpg[/img:krsagzuw] Would you be so kind to compile the above code so I can test wi...
ActiveX paramaters as Byte
Biel, Try using a Harbour array of numbers, i.e.: { 1, 2, 3, ... } It gets converted into a SAFEARRAY which it is the way it is expected from the Activex side
ActiveX paramaters as Byte
I'm using an ActivexControl, and I need to call one method, but the parameter must be Array Byte, anyway to do it? For example this VB code runs ok [code=fw:1enjahkx]<div class="fw" id="{CB}" style="font-family: monospace;"><br />Dim blob<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</sp...
ActiveX paramaters as Byte
Antonio thanks for answering, Tested with array, but do not accept this kind of parameter, the program crash. [code=fw:33f7mzz0]<div class="fw" id="{CB}" style="font-family: monospace;"><br />xVar1:=oTmp:<span style="color: #000000;">Serialize</span><span style="color: #000000;">&#40;</span><span style="color: #00000...
ActiveX paramaters as Byte
Biel, This is obvious, but have you tried it in this order ? [code=fw:1db9oq8v]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oTmp:<span style="color: #000000;">Deserialize</span><span style="color: #000000;">&#40;</span> xVar2<span style="color: #000000;">&#41;</span> <span style="color: #B900B9;">//...
ActiveX paramaters as Byte
Yes I have tryed also, and not run. As no one else has answered, please Antonio swtich to the spanish post , more easy for me. [url:3lvoefsr]http&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=6&t=16732[/url:3lvoefsr]
ActiveX paramaters as Byte
Biel, ok <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
ActiveX parameters
I use FWH 2.7 Build June 2006... and I get activex parameters twice on events. This doesn't happened with FWH 2.6. May I change this behaviour? Thx in advance, Roberto Parisi
ActiveX parameters
Roberto, Its fixed and greatly enhanced on FWH 2.7 July 2006.
ActiveX parameters
Should I buy the newest version to keep updated with this fix? Regards
ActiveX parameters
Roberto, You have two months of free upgrades.
ActiveX parameters
Ok... but activex parameters was working in my FWH26. I patched activex.prg by myself. Regards
ActiveX parameters
Roberto The ActiveX events supplied parameters were wrong managed from low level (C++) not from PRG level. Also parameters by reference (BYREF AS ...) were not managed. So you can't fix that changing the PRG class. We have worked hard to improve the ActiveX support.
ActiveX parameters
To be clear: I buyed FWH27 only for activex events support and my 2 free upgrade months expired on 30/06/2006. In the May version activex events worked but in June version they don't work anymore. About my fix: I simply process parameters array deleting invalid elements and passing the right array to the event handler...
ActiveX parameters
Roberto, What ActiveX control are you using ?