smartclient

.NET ClickOnce deployment and wrong assemblies called after updated version

痞子三分冷 提交于 2019-12-04 09:34:44
I have a ClickOnce application (app1) that calls DLL files from another solution (app2). I recently updated this application at one customer and a strange thing occurred. He got the new version (publish version was correct in Control Panel / Add or Remove Programs ) of app1 and the application version was correct as manually inspected in the application. But the DLL files called from the referenced solution (app2) was still the old ones. We deleted all files in C:\Documents and Settings\username\Local Settings\Apps\2.0 and installed again. This time there was no problem, the correct DLL files

GWT or not for enterprise apps

独自空忆成欢 提交于 2019-12-04 08:12:55
问题 I am working on an tool to create enterprise level applications on app-engine. This needs to be cross browser (also including IE8), works on mobile, and at a later point of time also supports desktop clients through (Qt4/GTK/etc) The problem that I consistently face is this: For my web-application - should I use GWT(GoogleWebToolkit) or not? I am pretty good at using "EXT-JS", but its not a choice due to its open-source policy. There is another framework "SmartClient" which has a better

create smart device cab through msbuild

試著忘記壹切 提交于 2019-12-04 05:22:26
问题 Is it possible to use an msbuild task to build a smart device project into a cab file for deployment. I've seen a couple of pages on the web: http://guystarbuck.blogspot.com/#115584006223003606 http://blog.opennetcf.com/ctacke/2008/09/18/AutomatingCABFileGenerationWithMSBUILD.aspx but I can't believe that you have to go to that much trouble for something that should be simple! Thanks. 回答1: It is that difficult and, yes, that is lame. 回答2: You can use CAB42 in order to automate the build

Pitfalls/gotchas of ClickOnce/smart-client deployment in .NET [closed]

可紊 提交于 2019-12-03 01:58:32
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 6 years ago . I have several .NET Windows Forms applications that I'm preparing to convert into a ClickOnce/smart-client deployment scenario. I've

GWT or not for enterprise apps

别等时光非礼了梦想. 提交于 2019-12-02 21:29:43
I am working on an tool to create enterprise level applications on app-engine. This needs to be cross browser (also including IE8), works on mobile, and at a later point of time also supports desktop clients through (Qt4/GTK/etc) The problem that I consistently face is this: For my web-application - should I use GWT(GoogleWebToolkit) or not? I am pretty good at using "EXT-JS", but its not a choice due to its open-source policy. There is another framework "SmartClient" which has a better opensource license- Its pretty mature and better than EXT-JS (based on some POCs), but its documentation

Pitfalls/gotchas of ClickOnce/smart-client deployment in .NET [closed]

非 Y 不嫁゛ 提交于 2019-12-02 15:33:48
I have several .NET Windows Forms applications that I'm preparing to convert into a ClickOnce /smart-client deployment scenario. I've read the isn't-this-great tutorials, but are there pitfalls or "gotchas" that I should be aware of? There are several minor applications used off and on, but the main application is in C#, runs 24/7, is quite large, but only changes every few weeks. It also writes to a log file locallly and talks to local hardware devices. Darrel Miller Here are a few that I am aware of. Can't put an icon on the desktop. You can now. I can't install for all users. I need to jump

Is smartclient suitable?

我的梦境 提交于 2019-12-02 10:24:19
How does the waiting time for SmartClient scale across thousands of users editing grids? I have received warnings before that ExtJS would not be suitable. SmartClient has a single grid component that does both horizontal and vertical incremental rendering, so it handles a very very large number of both rows (several million) and columns (several hundred) without degradation in performance. All of the grid features supported by SmartClient - inline editing, grouping, filtering, dynamic frozen columns, sorting, reordering fields, drag and drop .. (too long to list) are supported by this single,

Can I create a desktop icon for a ClickOnce application?

断了今生、忘了曾经 提交于 2019-11-27 06:42:06
问题 I have read in some of the ClickOnce posts that ClickOnce does not allow you to create a desktop icon for you application. Is there any way around this? 回答1: In Visual Studio 2005, ClickOnce does not have the ability to create a desktop icon, but it is now available in Visual Studio 2008 SP1. In Visual Studio 2005, you can use the following code to create a desktop icon for you when the application starts. I have used this code over several projects for a couple of months now without any