Common Development
-
Hi Friends, I wanted to have Common package that will work as stand alone, web and also for palm pilots. anyone suggest me a development platform, which can be used for development of packages Can .Net help me in this context? Thanks in advance for the suggestions Sudhakar
-
Hi Friends, I wanted to have Common package that will work as stand alone, web and also for palm pilots. anyone suggest me a development platform, which can be used for development of packages Can .Net help me in this context? Thanks in advance for the suggestions Sudhakar
.NET will make writing a common standalone/web app easier but it won't work for palm pilots as that isn't a supported .NET platform. A lot depends on what application you are going to write. Currently I use ATL/COM with ASP (web) and MFC (standalone windows app). The COM components containing the code that both applications require. Michael :-)
-
.NET will make writing a common standalone/web app easier but it won't work for palm pilots as that isn't a supported .NET platform. A lot depends on what application you are going to write. Currently I use ATL/COM with ASP (web) and MFC (standalone windows app). The COM components containing the code that both applications require. Michael :-)
Thanks Michael for the response. My work involves interaction with data base (MS Access / SQL Server / Oracle). Currently going with VB 6.0 and classes for interaction with DB. What actually I need is - I want make it work for web, Client/server and for Win CE with out much bothering. Kindly suggest a way thanks Sudhakar :) Sudhakar
-
Thanks Michael for the response. My work involves interaction with data base (MS Access / SQL Server / Oracle). Currently going with VB 6.0 and classes for interaction with DB. What actually I need is - I want make it work for web, Client/server and for Win CE with out much bothering. Kindly suggest a way thanks Sudhakar :) Sudhakar
I'd use VB and ADO for the Client/Server and Win CE applications. I'd use VBScript and ADO for the web side. If you use stored procedures on the database side then you should be able to re-use the vast majority of your code across the three platforms. .NET may make the job easier but the Win CE tools and framework aren't yet available. Michael :-)