Hello!
I would like to know if normal VB application code can be run in a browser. Is this possible without translating into another language? If so, can someone please help with this?
Thanks!
Printable View
Hello!
I would like to know if normal VB application code can be run in a browser. Is this possible without translating into another language? If so, can someone please help with this?
Thanks!
Can you explain this a bit better. I didn't understand a thing.
Are you talking about running a Visual Basic desktop application from a website?
I want to know if I can have a windows form application open in a website.
Will it have to be translated into flash or html, or can it run on its own?
If there is a way to have it work without translating, I would like to know how it is done.
Ok it looks like NightWalker posted the same time I did. So I read the thread, but when a user runs the application through the website, does it uninstall after it is closed, or does it stay installed on the user's computer?
Edit: Never mind, I just read the part that it is uninstalled.
How can a application install itself from a browser? This would be highly regarded as Malware. What are you trying to do.
So what I understand, it is impossible to run a windows form through a web site.
Edit: Application installing itself? That's not what I was asking. But thanks anyway.
To ident: I've already explained, I just want to know if VB form application code can run in the browser, but apparently it can't. I only asked about the uninstall because the ClickOnce was suggested in the other thread.
A Windows Forms application is a Windows application, not a web application, so no, it can't be run IN a browser. You can run it FROM a browser though.
If you use the Publish functionality in VS then you can create a ClickOnce installer for your app. There are a number of options for ClickOnce configuration and one of those is for the app to be downloaded on demand, run locally and then deleted when closed. More usually though, the application would be downloaded and installed on first use and then remain installed for the user to run locally in future.
Again, depending on configuration, you can have your app update itself automatically when the user runs it. You can force the user to run only the latest version or give them the option of updating or running the version they already have installed. It's up to you how you configure it so you should do some reading on the subject to find out what's available and what works for you.
You might want to look at ASP.NET if your requirement is to run code server side.
Thank you - jmc and jay