Cleaner software code?

Cr34TiV3

New member
Joined
May 12, 2010
Messages
1
Programming Experience
3-5
i, im new to this forum, but i know hot to use
i have 2 question
1- i want to create a application that make the same job that do CCleaner software, but i don't know the full code
can anyone tell me?

2-hot to create a application that don't need to be install

sorry for my english
 
1. You want to create an application but you want us to write the code for you? Maybe you should consider exactly what the application is supposed to do and then narrow your questions down to something more specific than "please tell me the full code".

2. No applications need to be installed. An installer is simply a way to automate various configuration tasks required by an application to run. You can have the user perform those tasks manually if you want and there's no need for an installer. The more tasks there are though, the more tedious and error prone it becomes to do them manually. For simple .NET apps though, as long as the .NET Framework is already installed, there will be no tasks to perform so the only thing the user has to do is copy your EXE to an appropriate folder. That's known as XCOPY deployment.
 
Back
Top