PC Review


Reply
Thread Tools Rate Thread

ASP.NET ActiveX Object Windows API Access

 
 
StinkyDuck
Guest
Posts: n/a
 
      17th Jan 2008
I'm trying to determine if it is possible to create a ActiveX control which
would be deployed through IE that would provide access to the client
resources to control devices like barcode readers, printers, scales, mag
stripe readers etc. If the user is prompted to download and install the
ActiveX object that is ok.

Is this possible through .NET and ActiveX delivered via ASP.NET through a
browser? Do I need to look at some other technology to make this happen?
Any suggestions would be great.

-StinkyDuck


 
Reply With Quote
 
 
 
 
zzzxtreme@gmail.com
Guest
Posts: n/a
 
      17th Jan 2008
It doesnt matter if the delivery ASP.NET or PHP or HTML

to "execute" activeX dll (or .cab - compressed dll), u use <object>
tag in the HTML code

of course it can access barcode readers, printers, etcccc... , assume
activeX dll in the browser just like any other EXE application.

so, you'll need to write the DLL. I'm not sure if you could with .net,
but i've written some in the past with VB and Delphi. U need to lookup
how to write "ActiveX form" with .net

then, you may need to get digital signature for your dll. if not, by
default, IE will block the installation. Verisign digital signature is
about $400 (in the past) annually. I'm sure you can get cheaper from
others. it's something like ssl.

then when u have the dll, normally you must compress it as .cab. just
put on the webserver, and embed using <object> tag.

On Jan 17, 1:24*pm, "StinkyDuck" <stinkyd...@gmail.com> wrote:
> I'm trying to determine if it is possible to create a ActiveX control which
> would be deployed through IE that would provide access to the client
> resources to control devices like barcode readers, printers, scales, mag
> stripe readers etc. *If the user is prompted to download and install the
> ActiveX object that is ok.
>
> Is this possible through .NET and ActiveX delivered via ASP.NET through a
> browser? *Do I need to look at some other technology to make this happen?
> Any suggestions would be great.
>
> -StinkyDuck


 
Reply With Quote
 
StinkyDuck
Guest
Posts: n/a
 
      17th Jan 2008
Is there a different alternative to ActiveX. I understand that ActiveX is
only supported in IE. Is there a technology other than ActiveX that
supports a great variety of browsers?

-StinkyDuck

<(E-Mail Removed)> wrote in message
news:9974464e-9589-43f7-a8d1-(E-Mail Removed)...
It doesnt matter if the delivery ASP.NET or PHP or HTML

to "execute" activeX dll (or .cab - compressed dll), u use <object>
tag in the HTML code

of course it can access barcode readers, printers, etcccc... , assume
activeX dll in the browser just like any other EXE application.

so, you'll need to write the DLL. I'm not sure if you could with .net,
but i've written some in the past with VB and Delphi. U need to lookup
how to write "ActiveX form" with .net

then, you may need to get digital signature for your dll. if not, by
default, IE will block the installation. Verisign digital signature is
about $400 (in the past) annually. I'm sure you can get cheaper from
others. it's something like ssl.

then when u have the dll, normally you must compress it as .cab. just
put on the webserver, and embed using <object> tag.

On Jan 17, 1:24 pm, "StinkyDuck" <stinkyd...@gmail.com> wrote:
> I'm trying to determine if it is possible to create a ActiveX control
> which
> would be deployed through IE that would provide access to the client
> resources to control devices like barcode readers, printers, scales, mag
> stripe readers etc. If the user is prompted to download and install the
> ActiveX object that is ok.
>
> Is this possible through .NET and ActiveX delivered via ASP.NET through a
> browser? Do I need to look at some other technology to make this happen?
> Any suggestions would be great.
>
> -StinkyDuck


 
Reply With Quote
 
bruce barker
Guest
Posts: n/a
 
      17th Jan 2008
for most other browsers you create a plugin based on the netscape plugin api.

firefox:

http://www.mozilla.org/projects/plugins/

safari (webkit):

http://developer.apple.com/documenta...ginTopics.html

-- bruce (sqlwork.com)


"StinkyDuck" wrote:

> Is there a different alternative to ActiveX. I understand that ActiveX is
> only supported in IE. Is there a technology other than ActiveX that
> supports a great variety of browsers?
>
> -StinkyDuck
>
> <(E-Mail Removed)> wrote in message
> news:9974464e-9589-43f7-a8d1-(E-Mail Removed)...
> It doesnt matter if the delivery ASP.NET or PHP or HTML
>
> to "execute" activeX dll (or .cab - compressed dll), u use <object>
> tag in the HTML code
>
> of course it can access barcode readers, printers, etcccc... , assume
> activeX dll in the browser just like any other EXE application.
>
> so, you'll need to write the DLL. I'm not sure if you could with .net,
> but i've written some in the past with VB and Delphi. U need to lookup
> how to write "ActiveX form" with .net
>
> then, you may need to get digital signature for your dll. if not, by
> default, IE will block the installation. Verisign digital signature is
> about $400 (in the past) annually. I'm sure you can get cheaper from
> others. it's something like ssl.
>
> then when u have the dll, normally you must compress it as .cab. just
> put on the webserver, and embed using <object> tag.
>
> On Jan 17, 1:24 pm, "StinkyDuck" <stinkyd...@gmail.com> wrote:
> > I'm trying to determine if it is possible to create a ActiveX control
> > which
> > would be deployed through IE that would provide access to the client
> > resources to control devices like barcode readers, printers, scales, mag
> > stripe readers etc. If the user is prompted to download and install the
> > ActiveX object that is ok.
> >
> > Is this possible through .NET and ActiveX delivered via ASP.NET through a
> > browser? Do I need to look at some other technology to make this happen?
> > Any suggestions would be great.
> >
> > -StinkyDuck

>
>

 
Reply With Quote
 
Alvin Bruney [ASP.NET MVP]
Guest
Posts: n/a
 
      17th Jan 2008
Here is a walkthrough:
http://support.microsoft.com/kb/555685

--

Regards,
Alvin Bruney [MVP ASP.NET]

[Shameless Author plug]
The O.W.C. Black Book, 2nd Edition
Exclusively on www.lulu.com/owc $19.99
-------------------------------------------------------



"StinkyDuck" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Is there a different alternative to ActiveX. I understand that ActiveX is
> only supported in IE. Is there a technology other than ActiveX that
> supports a great variety of browsers?
>
> -StinkyDuck
>
> <(E-Mail Removed)> wrote in message
> news:9974464e-9589-43f7-a8d1-(E-Mail Removed)...
> It doesnt matter if the delivery ASP.NET or PHP or HTML
>
> to "execute" activeX dll (or .cab - compressed dll), u use <object>
> tag in the HTML code
>
> of course it can access barcode readers, printers, etcccc... , assume
> activeX dll in the browser just like any other EXE application.
>
> so, you'll need to write the DLL. I'm not sure if you could with .net,
> but i've written some in the past with VB and Delphi. U need to lookup
> how to write "ActiveX form" with .net
>
> then, you may need to get digital signature for your dll. if not, by
> default, IE will block the installation. Verisign digital signature is
> about $400 (in the past) annually. I'm sure you can get cheaper from
> others. it's something like ssl.
>
> then when u have the dll, normally you must compress it as .cab. just
> put on the webserver, and embed using <object> tag.
>
> On Jan 17, 1:24 pm, "StinkyDuck" <stinkyd...@gmail.com> wrote:
>> I'm trying to determine if it is possible to create a ActiveX control
>> which
>> would be deployed through IE that would provide access to the client
>> resources to control devices like barcode readers, printers, scales, mag
>> stripe readers etc. If the user is prompted to download and install the
>> ActiveX object that is ok.
>>
>> Is this possible through .NET and ActiveX delivered via ASP.NET through a
>> browser? Do I need to look at some other technology to make this happen?
>> Any suggestions would be great.
>>
>> -StinkyDuck

>


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Access 2007 Runtime: Activex can't create object. yanto Microsoft Access Reports 0 4th Mar 2009 09:22 AM
Cannot create ActiveX object (on Windows 2000) Verakso Microsoft C# .NET 0 23rd Aug 2006 10:13 PM
Access 2003 ActiveX component can't create object karl Microsoft Access Getting Started 1 21st Aug 2006 07:19 AM
Error activex component cannot create object in MS Access 2003 =?Utf-8?B?RGF2ZQ==?= Microsoft Access Forms 1 12th Sep 2005 01:34 PM
ActiveX component can't create object: Access.Application =?Utf-8?B?bWJfaG93YXJk?= Microsoft Access Macros 0 26th Oct 2004 05:31 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:25 AM.