PDA

Click to See Complete Forum and Search --> : asp, activex, c++ vb guru needed desperately


skunk
Nov 7th, 2001, 01:05 PM
Hi,
I am in desperate desperate need of a c++, asp guru who can help me with accessing a ocx file.

I have the ocx file source code. A document describing it. And the software it talks to.

What I need is an asp page that talks to the ocx and gets data from it.

I have a vb project that talks to the ocx and gets the data.

I can pay $200. (all I have :(

I am in desperate desperate need.

*starts to beg*...LOL
please contact me if interested.
I need to get this done this afternoon. It should be simple for someone who knows what they are doing. Should only be 1 page of asp.

skunk1975@hotmail.com

jorge rigol
Nov 8th, 2001, 11:06 AM
let me try to explain you what veryjonny wrote you :
1-) Your ocx file should be registered. You can use the RegSvr32.exe program for that.This ocx file gives you the hability
to create objects.
2-) You create an object inside your asp page..using the <object> tag.....something like this :
<OBJECT id=ControlName style="LEFT: 0px; TOP: 0px" codeBase="Where the browser can find the information about this file" classid=CLSID:75C0D00F-7DCA-452B-86FD-81EF6326B12D VIEWASTEXT>
<PARAM NAME="_ExtentX" VALUE="19738">
<PARAM NAME="_ExtentY" VALUE="4286"></OBJECT>
3-) Then, ..give values to the parameters ....using vbscript.......................
something like this :
<script language="vbscript">
ControlName.ParameterName1="Some Value"
ControlName.ParameterName2="Other Value"
ControlName.MethodName1="Different Value"
............................
</script>
4-)........................pray...........
Good Luck!