![]() | |
![]() |
| | Thread Tools | Search this Thread | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Hi, I have many thousand lines of C# code that uses System.Windows.* frequently, so it has a lot of GUI. This program processes data that is located on the local machine and displays a graphical representation of this. I wish for users to be able to use this program through the internet, where the machine containing the data is the server. The code that processes the data and the code that displays the graphical interface is already written, but as a single program. Is there an easy way of getting the client-server functionality without splitting the program or writing too much code? Eg. executing the program through a web browser. Thanks, Magnus Gran-Jansen |
#3
| |||
| |||
|
|
"Magnus Gran-Jansen" <MagnusGranJansen (AT) discussions (DOT) microsoft.com> wrote in message news:783D7256-2C34-4DA0-90F5-AFFADC3BA629 (AT) microsoft (DOT) com... Hi, I have many thousand lines of C# code that uses System.Windows.* frequently, so it has a lot of GUI. This program processes data that is located on the local machine and displays a graphical representation of this. I wish for users to be able to use this program through the internet, where the machine containing the data is the server. The code that processes the data and the code that displays the graphical interface is already written, but as a single program. Is there an easy way of getting the client-server functionality without splitting the program or writing too much code? Eg. executing the program through a web browser. Thanks, Magnus Gran-Jansen You'll have to redesign the interface using the web controls, which will also entail quite a bit of interface handling code rewrite. AFAIK, there is no easy way to "convert" a Windows app to a web app. If the Windows app was properly designed, the data processing functionality (in separate methods from code involved with the GUI) should easily transfer. -- Peter [MVP Visual Developer] Jack of all trades, master of none. |
#4
| |||
| |||
|
|
Hi, First, thankyou for your answer! I just found something interesting called "Hosting Windows Forms controls in Internet Explorer", where I create a Windows Control Library. Have you heard about that? Do you know if it could be used for this? No, I haven't. Hopefully somebody else will jump in with more info. Do you |
#5
| |||
| |||
|
|
"Magnus Gran-Jansen" <MagnusGranJansen (AT) discussions (DOT) microsoft.com> wrote in message news:4F3111C7-3358-47E8-908C-C9A3783812E0 (AT) microsoft (DOT) com... Hi, First, thankyou for your answer! I just found something interesting called "Hosting Windows Forms controls in Internet Explorer", where I create a Windows Control Library. Have you heard about that? Do you know if it could be used for this? No, I haven't. Hopefully somebody else will jump in with more info. Do you have a link? -- Peter [MVP Visual Developer] Jack of all trades, master of none. |
#6
| |||
| |||
|
|
Here is some information on it: http://www.syncfusion.com/FAQ/Window...FAQ_c101c.aspx http://www.15seconds.com/issue/030610.htm I am currently having some problems getting just something basic of this to work, but it seems like it is similar to Java applets. "Peter van der Goes" wrote: "Magnus Gran-Jansen" <MagnusGranJansen (AT) discussions (DOT) microsoft.com> wrote in message news:4F3111C7-3358-47E8-908C-C9A3783812E0 (AT) microsoft (DOT) com... Hi, First, thankyou for your answer! I just found something interesting called "Hosting Windows Forms controls in Internet Explorer", where I create a Windows Control Library. Have you heard about that? Do you know if it could be used for this? No, I haven't. Hopefully somebody else will jump in with more info. Do you have a link? -- Peter [MVP Visual Developer] Jack of all trades, master of none. |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |