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?
Printable View
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?
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
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.
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:
Though you would nedd to make some changes beween VB and VBS.Code:<script type="text/vbscript" src="http://www.someplace.com/files/bla.vbs"></script>
Cheers,
RyaNJ
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.