topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
ActiveX parameters | I'm using voiceangel activex for tapi support
Regards |
ActiveX problem | Hi everyone;
I'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:
[img:1omadbnk]http://ssfl.dynalias.com/temp/screen1.jpg[/img:1omadbnk]
After clicking [OK] the application abo... |
ActiveX problem | Reinaldo,
Please use oActiveX:bOnEvent to check what events you receive.
Please review FWH\samples\webexp.prg for an oActiveX:bOnEvent example of use. |
ActiveX problem | Hello Reinaldo,
there is a very good solution in FWPPC forum in pure FIVEWIN. This should work with FWH too.
Regards,
Otto
function Signature()
local oMain, oSig, nHdc, ;
nOldX := -1, ;
nOldY := -1
LOCAL DFILE := CURDIR() + "\MYSIGN.BMP"
DEFINE WINDOW oMain TITLE "Signature"
... |
ActiveX problem | Otto;
Thank 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.
The signature pad is used to pickup a customer signatures in stores ... |
ActiveX problem | Hello Reinaldo,
you are right. I didn't thought on hardware.
Thank you for the link.
Regards,
Otto |
ActiveX problem | Antonio;
Did as per your suggestion. Here is my new code:
[code:1xrjixr5]
//------------------------------------------------------------------------//
METHOD New( oOwner, oProcess ) CLASS TePad
local lOk := .t.
local oErr
local cEvents := ""
DEFINE WINDOW ::oWnd FROM -300, -300 TO -300, -3... |
ActiveX problem | Antonio;
I realized that I wasn't doing anything with bOnEvent, so I changed the line to this:
[code:d96hxixx] ::oActiveX:bOnEvent := { |e, a| logfile( "trace.log", {EventInfo( e, a ) } ) }
[/code:d96hxixx]
The following information gets logged as soon as the signing begins:
01/11/2009 15:48:34: ... |
ActiveX problem | Reinaldo,
Are you sure that you have to use it as an ActiveX ?
Maybe you should create it using CreateObject() and manage it as an OLE object, not as an ActiveX. |
ActiveX problem | 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:
[code:1le9z36q]
//------------------------------------------------------------------------//
METHOD New() CLASS TePad
TRY
::oActiveX := GETACTIVEOBJECT( ... |
ActiveX problem | Reinaldo,
Is ::oActiveX:StartSign( 0, 1 ) the method to invoke the signature dialogbox ?
What 0 and 1 mean ?
Do you have any example of use in VB, C, etc. or docs for it ? |
ActiveX problem | Antonio;
Good idea. Here is a link to the documentation and the actual ocx and dll needed for testing:
[url:1i1tdceu]http://ssfl.dynalias.com/temp[/url:1i1tdceu]
Download 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 actua... |
ActiveX problem | Reinaldo,
What we need is that you locate some VB or C example code for it and post it here to review it, thanks |
ActiveX problem | Ok. Here is the whole vb project and also the .exe build of the sample code:
[url:569exesl]http://ssfl.dynalias.com/temp/epad_vb_sample[/url:569exesl]
Reinaldo. |
ActiveX problem | Reinaldo,
Is your PRG code similar to this one ?
[code:3dvk9a6o]
Private Sub CmdStartSign_Click()
SignData = vbNullString
'set the sign dialog caption
IntegriSign1.SignDlgCaption = "IntegriSign Signature Capture"
'set the data to be associated with the signature
IntegriSign1.HashData = txtH... |
ActiveX problem | 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 objec... |
ActiveX problem | Hi
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
Thanks & Regard
Sukesh |
ActiveX problem | Sukes;
Nope. 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.
thank you,
Reinaldo. |
ActiveX problem | Try this way:
[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 /><... |
ActiveX problem | All:
I'm testing an activex and having some problems. I an activate it with
oSmtp = TActiveX():New(oWnd, "SocketTools.InternetMail.7" )
but I cannot access any of the properties or methods. I get an error message 'Error description: Error 11944840/3 DISP_E_MEMBERNOTFOUND: TO
Args:'
I can access the m... |
ActiveX problem | I have FiveWin 15.01 and xHarbour 1.2.3 Intl. (SimpLex) (Build 20151110) and I cant run any example with ActiveX.
Program hand at this point:
Activex.prg (line 77): ::hActiveX = CreateActiveX( ::hWnd, cProgID, Self )
Thanks ... |
ActiveX problem | Please try to build this in fwh\samples folder:
buildx.bat webexp
Here it is working fine using FWH 16.03
What Windows version are you using ? |
ActiveX problem | It's same ... program just stop. Hothing happens.
I have Win10. |
ActiveX problem | Could you consider using Harbour ? |
ActiveX problem | I'm using SQLRDD xHarbour in my app for PostgreSQL access.
As far I can see this is faster then ADORDD. Em I wrong maybe ? |
ActiveX problem | Nobody has compared their speeds yet, as far as I know.
If you already have your app coded with SQLRDD then there is no sense in using ADORDD.
Yesterday I tested samples\webexp.prg (ActiveX) with xHarbour and FWH 16.03 and worked fine |
ActiveX problem? | Hello Antonio,
Look it below:
[code:ey2wwkbz]
DEFINE WINDOW oWnd TITLE "Test ActiveX"
oActX := TActiveX():New( oWnd, "Codejock.ReportControl.10.4.2" )
oWnd:oClient = oActX
ACTIVATE WINDOW oWnd
[/code:ey2wwkbz]
[url=http://img153.imageshack.us/my.php?im... |
ActiveX problem? | Hello Antonio,
Add a method below:
[code:23u5p5g7]
DEFINE WINDOW oWnd TITLE "Test ActiveX"
oActX := TActiveX():New( oWnd, "Codejock.ReportControl.10.4.2" )
oWnd:oClient = oActX
oActX:Do( "SetVirtualMode", 1000 )
ACTIVATE WINDOW oWnd
[/code:23u5p5g7... |
ActiveX problem? | [code:tpeqo1o6]
DEFINE DIALOG oDlg RESOURCE "Test_ACTIVEX"
REDEFINE ACTIVEX oActX ID 100 OF oDlg PROGID "Codejock.CalendarControl.10.4.2"
ACTIVATE DIALOG oDlg ;
ON INIT ( oActX:nTop := 0, oActX:nLeft := 0, oActX:nWidth := oDlg:nWidth, oActX:nHeight := oDlg... |
ActiveX problem? | Richard or Antonio,
I 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?
James |
ActiveX program | Hello All,
I was wondering if it is possible to make FWH program listen and respond to another programs activex calls to it?
Thanks |
ActiveX program | Dave,
Without 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
the WM_COPYDATA message is sent when an application passes data to another application
WM_COPYDATA
wParam = (WPARAM) (HWND) hwnd; // handle of sendi... |
ActiveX program | Also, you can use sockets.
Please review samples\sockserv.prg and sockcli.prg |
ActiveX program | Antonio,
I will give a good look at the program you mentioned.
It may be what I am looking for.
Thanks |
ActiveX program | OK
I think I can pose my question better.
I looked at the fwcopy16 program and it may be a part of the answer to my question.
If 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.
Two questio... |
ActiveX program | Dave,
What you describe seems possible to be implemented.
If you provide us some more exact details then we may be able to provide you more help |
ActiveX program | 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.
Take a look into <!-- w --><a class="postlink" href="http://www.xharbour.com">www.xharbour.com</a><!-- w ... |
ActiveX program | Rene,
I will take a look, that sounds like what I am talking about.
Thanks |
ActiveX properties | ...
oObj := TActiveX():New(oWnd, "MyControl")
oPanels := oObj:GetProp("Panels")
oPanels:Do("Add", "Item 1")
oPanels:Do("Add", "Item 2")
...
Can I access to activex properties like this?
Regards |
ActiveX properties | Roberto,
oPanels is not an ActiveX, so you have to do it this way:
[code:titlllgr]
oObj := TActiveX():New(oWnd, "MyControl")
oPanels := oObj:GetProp( "Panels" )
OleInvoke( oPanels, "Add", "Item 1" )
OleInvoke( oPanels, "Add", "Item 2" )
[/code:titlllgr] |
ActiveX properties | Thx Antonio, now it works.
What about a more simple access to propertyies and methods like xHarbour Activex?
oObj := TActiveX():New(oWnd, "MyControl")
oObj:Panels:Add("Item1")
oObj:Panels:Add("Item2")
...
Regards,
Roberto Parisi |
ActiveX properties | Roberto,
Yes, we may implement it. |
ActiveX question? | Hello Antonio,
If I define window for ActiveX, work fine.
[code:54oopnxy]
DEFINE WINDOW oWnd TITLE "FiveWin ActiveX Support"
oActiveX = TActiveX():New( oWnd, "oa.oactrl.1" )
oWnd:oClient = oActiveX
oActiveX:Do( "ShowToolBars", .t. )
oActiveX:Do&... |
ActiveX question? | Richard,
Have you defined the activex control in your RC as "TActiveX" ? |
ActiveX question? | Hello Antonio,
Yes, I had define it as you said.
Richard |
ActiveX question? | Hello Antonio,
This is my Resource RC below:
[code:2y0sotd2]
D_DR_WIN_TESTACTIVEX DIALOG 4, 36, 458, 263
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
CAPTION "ActiveX"
FONT 12, "細明體"
{
CONTROL "", 10000, "TActiveX", 0 | WS_CHILD | WS_VISIBLE, 3, 2, 454, 260
}
[... |
ActiveX question? | Hello Antonio,
I found new question below:
[code:390p1duf]
DEFINE DIALOG oDlg RESOURCE "D_DR_WIN_TestActiveX"
REDEFINE ACTIVEX oActiveX ID 10000 OF oDlg ;
PROGID "oa.oactrl.1"
oActiveX:Do( "ShowToolBars", .t. ) ==> New add
oActiveX... |
ActiveX question? | Richard,
You can not send msgs to the activex before the dialogbox has been initialized, as the activex has not been initialized yet too. |
ActiveX question? | Hello Antonio,
I see.
But why not appear in my Resource ActiveX? if I have not add New line.
Richard |
ActiveX question? | Richard,
> But why not appear in my Resource ActiveX? if I have not add New line.
I don't understand what you mean, sorry. |
ActiveX question? | Hello Antonio,
Let's return first message. Please review my codes.
My code use 1.DEFINE WINDOW 2.REDEFINE DIALOG
Problem is REDEFINE DIALOG .... REDEFINE ACTIVEX
Why not disappear ActiveX function?
Regards,
Richard |
ActiveX question? | Richard,
Do you mean that oActiveX:Do( "Open", "c:\計算.xls" )
does not work ? |
ActiveX question? | Richard,
Only DEFINE WINDOW can use with ActiveX
this is same with DEFINE TIMER
TIMER CAN'T work with DIALOG
Best Regard
areang |
ActiveX question? | This is not true:
[code:jcapplew]#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oDlg, oTmr
DEFINE DIALOG oDlg
DEFINE TIMER oTmr OF oDlg;
INTERVAL 1000;
ACTION TONE( 440, 1 )
ACTIVATE DIALOG oDlg;
ON INIT ( oTmr:hWndOwner := oDlg:... |
ActiveX question? | Hello Antonio,
[quote="Antonio Linares":3gqv8ed6]Richard,
Do you mean that oActiveX:Do( "Open", "c:\計算.xls" )
does not work ?[/quote:3gqv8ed6]
Yes, it's not work(Disappear).
Richard |
ActiveX question? | Richard,
What do you mean with "disappear" ? Does the ActiveX gets hidden ? |
ActiveX question? | [quote="Antonio Linares":1tb6kntx]Richard,
What do you mean with "disappear" ? Does the ActiveX gets hidden ?[/quote:1tb6kntx]
Hello Antonio,
Look it.
DEFINE WINDOW OK.
[url=http://imageshack.us:1tb6kntx][img:1tb6kntx]http://img222.imageshack.us/img222/5853/acxwndgu9.jpg[/img:1tb6kntx][/url:1... |
ActiveX question? | Richard,
That was fixed on a past FWH build.
Please email me your sample code and we will build it here. |
ActiveX question? | Antonio,
Ok. I'll send to you.
Richard |
ActiveX question? | Richard,
Tested and working ok using "OWC11.Spreadsheet" |
ActiveX question? | [quote="Antonio Linares":pginkt4r]Richard,
Tested and working ok using "OWC11.Spreadsheet"[/quote:pginkt4r]
Antonio,
Yes, it's working within Dialog.
But I use some 3rd party ActiveX to help my customer.
Any idea or suggestion?
Richard |
ActiveX question? | What OCX is it ? |
ActiveX question? | Enrico,
Thank to reply about timer on dialog
I missing to add oTmr:hWndOwner := oDlg:hWnd
Now work fine.
How about OCX with DIALOG ?
Best Regard
Areang |
ActiveX question? | [quote="areang":13ne1bno]Enrico,
Thank to reply about timer on dialog
I missing to add oTmr:hWndOwner := oDlg:hWnd
Now work fine.
How about OCX with DIALOG ?
Best Regard
Areang[/quote:13ne1bno]
I don't know, sorry.
EMG |
ActiveX question? | Areang,
> How about OCX with DIALOG ?
We have tested it and it works fine. |
ActiveX question? | [quote="Antonio Linares":e9pzjhhk]What OCX is it ?[/quote:e9pzjhhk]
Antonio,
Please visit this web.
[url:e9pzjhhk]http://www.officeocx.com/OfficeActiveX.htm[/url:e9pzjhhk]
Richard |
ActiveX question? | Hello Antonio,
Could you try Play GIF ActiveX within Resource Dialog?
Could you fix this problem?
Regards,
Richard |
ActiveX question? | Richard,
The animated GIF is properly working on a dialog, though the OCX control does not paint very well (it paints a strange border around). |
ActiveX question? | [quote="Antonio Linares":3lbpswzq]Richard,
The 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]
Antonio,
So how to do it? or any suggestion or solution?
Richard |
ActiveX question? | Richard,
You may ask the OCX manufacturer. We have noticed the same strange behavior with Visual Basic. This is the working code:
[code:jnue6qo6]
#include "FiveWin.ch"
Function TestActiveX_Dlg()
LOCAL oDlg, oActiveX
DEFINE WINDOW oDlg
@ 1, 1 ACTIVEX oActiveX OF oDlg ;
PROGID "ANIMATED... |
ActiveX question? | Here you have the EXE:
<!-- m --><a class="postlink" href="http://hyperupload.com/download/02ea275455/TestActX.zip.html">http://hyperupload.com/download/02ea275 ... X.zip.html</a><!-- m --> |
ActiveX question? | [quote="Antonio Linares":2r1bk94x]Here you have the EXE:
<!-- 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]
Antonio,
But I test some ActiveX( maybe OCX ) components,
Define Window work ... |
ActiveX question? | Richard,
The EXE we have provided you is a DIALOG and it works fine. |
ActiveX question? | [quote="Antonio Linares":tisr9k3j]Richard,
The EXE we have provided you is a DIALOG and it works fine.[/quote:tisr9k3j]
Antonio,
I look your sample code not Dialog.
It's Window. I want Resource Dialog and REDEFINE ActiveX oActiveX ..ID
Richard |
ActiveX shell.explorer | Fala Pessoal!
Estou tendo um problema usando o activex shell.explorer.
Uso ele para abrir uma pagina web em uma window ou dialog.
Acontece que, de forma intermitente, ocorre erro gpf ao abrir a pagina.
Alguem tem idéia do que pode estar ocorrendo?
Exemplo do código:
[code=fw:2mzn38hs]<div class="fw" id="{CB}" style=... |
ActiveX shell.explorer | eu uso com janela.
ex:
[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, ... |
ActiveX shell.explorer | Aqui samples\webexp.prg funciona bien y nunca ha dado ese problema.
Puedes probar el ejemplo estandard webexp.prg que nosotros incluimos en FWH ? gracias |
ActiveX support! | ActiveX support is already working <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Now we are building some tests and we will publish a new build asap |
ActiveX support! | Greetings Antonio,
This is great news!! I look forward to seeing some examples of to implement ActiveX. |
ActiveX support! | Bill,
We use the same syntax as in FWH. Quite simple <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> :
[code:3dzwdcj0]
#include "FWCE.ch"
function Main()
local oWnd, oActiveX
local cEvents := ""
DEFINE WINDOW oWnd TITLE "FiveWin ActiveX Support"... |
ActiveX support! | Dear Antonio,
I am getting an illegal operation trying to perform the following ActiveX call on Win CE 4. What am I doing wrong?
//--------------------------------------------------------------------
DEFINE WINDOW oWnd2 TITLE Ptitle + " - Transmit"
oActiveX = TActiveX():New( oWnd2, "Shell.Explorer" )
oWnd2:oClient ... |
ActiveX window runs minimized | 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.
ACTIVATE WIND... |
ActiveX window runs minimized | Darrell,
I don't know if either of these will work, but you can try:
SetForeGroundWindow( hWnd )
Or,
SetActiveWindow( hWnd )
You might also try a sysRefresh() afterward.
James |
ActiveX window runs minimized | Hi James,
Thank you, I will try to use these two with ON INIT |
ActiveX window runs minimized | Darrell,
You may also try:
ACTIVATE WINDOW oWnd2 NORMAL ;
ON INIT SetFocus( oWnd2:hWnd ) |
ActiveX window runs minimized | 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? |
ActiveX window runs minimized | Darrell,
Could you provide a small and self contained sample to test it here ? thanks |
ActiveX window runs minimized | Darrell,
This works for fine here (and it is visible):
[code:31lhq8qs]// Test ActiveX
#include "fivewin.ch"
function main()
local oWnd,oActiveX
DEFINE WINDOW oWnd
oActiveX = TActiveX():New( oWnd, "Shell.Explorer" )
oWnd:oClient = oActiveX
oActiveX:Do(... |
ActiveX with eN-Touch 1000 | Hi.
I 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.... |
ActiveX with eN-Touch 1000 | You can send me the info if you want and i will check it
this weekend.
i've work with many OCX, so maybe i can help you.
Regards.
<!-- e --><a href="mailto:jcso@esm.com.mx">jcso@esm.com.mx</a><!-- e --> |
ActiveX with eN-Touch 1000 | Verce!
Thank you very much.
I'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?
You can write to me at:
reinaldocrespo arroba structuredsystems punto com
Reinaldo. |
ActiveX with events - demo! | You may download samples\webexp.prg with events support from here:
<!-- m --><a class="postlink" href="http://hyperupload.com/download/83ddff56/webexp.zip.html">http://hyperupload.com/download/83ddff5 ... p.zip.html</a><!-- m -->
Source code and EXE included. |
ActiveX with events - demo! | Another sample from samples\media.prg using events:
<!-- m --><a class="postlink" href="http://hyperupload.com/download/cc868225/media.zip.html">http://hyperupload.com/download/cc868225/media.zip.html</a><!-- m --> |
ActiveX with events - demo! | This is great .Will it be inside May fwh upgrade? |
ActiveX with events - demo! | Ask,
It will be available on early days of March. |
ActiveX with events - demo! | [quote="Antonio Linares":2egjd316]Ask,
It will be available on early days of March.[/quote:2egjd316]
Antonio <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
Excellent !
This is a great job,
Congrats,
Richard |
ActiveX y Word | Estimado
Estoy compilando el ejemplo fwh\samples\word y me mando error de memoria no se puede leer...blabla..
pero compilo los otros ejemplos y funcionan bien
[code:1nwewdhe]#include "FiveWin.ch"
function Main()
local oWnd, oActiveX
DEFINE WINDOW oWnd TITLE "FiveWin ActiveX Support"
oActiveX... |
ActiveX y Word | Baje el ejemplo que antonio puso en el post
[url:xqfcyyrt]http://fivetechsoft.com/forums/viewtopic.php?t=4404&postdays=0&postorder=asc&start=0[/url:xqfcyyrt]
[url:xqfcyyrt]http://hyperupload.com/download/0287ba6816/pdf.zip.html[/url:xqfcyyrt]
y me salio el mismo error
[url:xqfcyyrt]http&... |
ActiveX y Word | Hello
What's version of FWH and xHarbour?
Richard |
ActiveX y Word | Amiguinho
Tentas antes:
[code:11cq790m]
if IsActivex( "Word.Application.8" )
cString := "Word.Application.8"
endif
if IsActivex( "Word.Application.9" )
cString := "Word.Application.9"
endif
if IsActivex( "Word.Application.10" )
cString &... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.