|
-
May 11th, 2005, 04:22 PM
#1
Thread Starter
Banned
Active X I guess?
I made a project to covert Bytes to Kb to mb to gb etc. How can i embed it in a website so they click run and it brings up that Active X thing or w/e it is and it runs the program?
-
May 11th, 2005, 04:38 PM
#2
Re: Active X I guess?
If its VB it can be converted to VBScript which can be easily used in web-pages.
Note: If you take this option it will only work in IE.
Cheers,
RyanJ
-
May 11th, 2005, 04:51 PM
#3
Thread Starter
Banned
Re: Active X I guess?
Im aware. So can I copy and paste my hole project into an Active X file? How would I link it? Any tutorials on how this is done? Yes it is vb6.
-
May 12th, 2005, 10:24 AM
#4
Re: Active X I guess?
There are a few methods but most are unreliable at best.
Most people have set their browsers to just disable activeX file downloads, so you would probably be better putting it in a .vbs file, which can be linked like so:
Code:
<script type="text/vbscript" src="http://www.someplace.com/files/bla.vbs"></script>
Though you would nedd to make some changes beween VB and VBS.
Cheers,
RyaNJ
-
May 12th, 2005, 03:25 PM
#5
Fanatic Member
Re: Active X I guess?
A more reliable solution would be to convert your project to sort of server side technology (such as ASP, PHP, etc..), or better yet, if you want to do your storage size conversions dynamically, you could convert your code to JavaScript which might be the best solution.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|