How can i put my destop application online - vb.net

I am writing codes on Vb.Net. I am curious about if i write my desktop on VB.Net then is it possible to convert it as a web application.
To be more specific: I am writing a CRM software on VB with Crystal Reports. But i want to carry my desktop app to my web site.

Related

Does Microsoft Store support apps that are made with VB.Net in Winforms? And VB.Net in WPF?

So, does Microsoft Store support apps that are made with VB.Net in Winforms?
I know the Microsoft Store supports UWP (Universal Windows Platform) apps, but I don't know whether the store supports apps that are made with Vb.Net in Winforms.
Also does Microsoft Store support WPF (Windows Presentation Foundation) apps that are made with VB.Net?
According to this page, Winforms apps are not allowed:
WinForms applications are not allowed at Windows Store, only UWP apps are allowed in the Microsoft Store. UWP provides a more secure ecosystem than other runtimes.
If you want to publish winform app to windows store, the first step would be to convert your WinForms application to UWP.
MS put out an app to convert Winforms/WPF apps into UWP apps though:
https://developer.microsoft.com/en-us/windows/bridges/desktop
For a whole lot more info on that than I could ever post here, here's a good page:
https://www.telerik.com/blogs/tips-for-publishing-winforms-wpf-apps-to-microsoft-store

Advice about windows phone 8 and SharePoint 2010 application?

I want to develop a windows phone 8 application that will communicate with sharepoint 2010 server. I’m familiar with windows phone 8 development. But no previous experience about sharepoint. While start searching information regarding this issue, I found windows phone 7 and sharepoint 2010 related info. Again windows phone 8 and sharepoint 2013 related info.
So is it a right chose to develop an application for windows phone 8 and sharepoint 2010? I guess it must be possible. Please advice where can I find more information about this combination.
Thanks in advance!
I assume you want to pull data from Sharepoint and render it in some way in your mobile app.
If that is the case depending of the technologies you use to develop your app you can choose between using Sharepoint Client Object Model, or alternatively Sharepoint exposes a lot of webservices to query data.
What I have been doing lately is I actually deploy own api using service stack which allows my client to consume json data, if you dont have experience with Sharepoint I would avoid this method and stick with what its in the box.

Visual Basic .Net Programming in Application Engine

Is it possible to create web-application using VB.Net in Google Application space or at least importing an application already created by VB.Net to Google Application Engine in order to run it in our Google domain?
I'm afraid not - the App Engine supports Java, Python or Go. Your easiest option for running a VB.Net app on the internet is going to be leasing your own (possibly shared) server.

Convert an ASP.NET application on production in II6, back to Solution

I have to modify an ASP.NET Web Forms application which is currently on production on a Windows Server 2003 in II6.
The problem is that I didn't develop the application and there is not anymore the Visual Studio solution used to develop the application. Moreover the application lies under a website where other applications are running and the connection strings are stored in the global web config file.
I want to modify the application without compromising the version that is actually online.
How can I bring the production version back into a solution file? Many thanks

how to sync the offline database with online database using an application built in adobe air

I am a newbie and would like to ask a question regarding adobe air.
My client wants an desktop based application. He wants the application to be run standalone on the machine of any user who has downloaded that application from his website.
He also requires that what so ever data that has been stored in the desktop application can be synced with online database, if required.
i want to build the desktop application in adobe air.
Can you please guide me that how can i sync the offline and online data using an application built in adobe air?? Is it possible??
As i have studied that adobe air uses sqlite by defult, so do i have to use the same as server as well or can i go with mysql also.
I am a newbie.
My client wants an desktop based application. He wants the application to be run standalone on the machine of any user who has downloaded that application from his website.
He also requires that what so ever data that has been stored in the desktop application can be synced with online database, if required.
i want to build the desktop application in adobe air.
Can you please guide me that how can i sync the offline and online data using an application built in adobe air?? Is it possible??
As i have studied that adobe air uses sqlite by defult, so do i have to use the same as server as well or can i go with mysql also.
Can you please guide me that how can i
sync the offline and online data using
an application built in adobe air?? Is
it possible??
Possible via URLRequest - send your desktop data to server handler (with POST method), then put it into database there. Handler is a page that can be created with any web technology - PHP, ASP.NET, Python, whatever.
As i have studied that adobe air uses
sqlite by defult, so do i have to use
the same as server as well or can i go
with mysql also. I am a newbie.
You don't need to use same DB engine. All data needs to be transferred in intermediate format anyway. For format, I would choose XML - it has good support in AIR.