Tagged Questions

3
votes
7answers
595 views

Self deletable application in C# in one executable

Is it possible to make an application in C# that will be able to delete itself in some condition. I need to write an updater for my application but I don't want the executable to be left after the …
0
votes
3answers
269 views

Updating time in iphone sdk

Hi, I'm using the code provided below to display time and date. can anyone help me with atuomatically changing the time by seconds and the date by the day? NSDateFormatter *dateFormat = …
3
votes
5answers
102 views

Run application from documents instead of program files.

I'm working on creating a self updating application and one issue I'm running into on Vista and Windows 7 is needing to have admin privileges in order to update the client. I've run into issues with …
2
votes
4answers
706 views

Executing and then Deleting a DLL in c#

I'm creating a self updating app where I have the majority of the code in a seperate DLL. It's command line and will eventually be run on Mono. I'm just trying to get this code to work in C# on …
0
votes
3answers
180 views

Is it possible to implement a self-updating ASP.NET web application?

Wordpress has the capability to update itself (on admin user's request). Is it possible to implement something similar using ASP.NET? I can see web.config and bin folder causing problems.