Fix Pack

Roey

Junior Contributor
Joined
Oct 10, 2002
Messages
238
Location
Canada
I want to deploy a fix pack for my application that updates a table column in the database. I have only deployed Windows forms style projects in the past, and don't know how to create an .exe that can be downloaded and then just runs the code when executed.

Thanks in advance.
 
No takers on this one ??? Maybe I'm not explaining myself correctly.

I have the code that updates the database. All I need is the instructions to create an .exe that executes the code when it is double clicked, or a pointer in the right direction.

I'm thinking that maybe people use some sort of scripts to create this type of functionality.

Thanks
 
Just create a windows application. On load of the form execute your code and then exit the application. take the exe and give it to the users (the user will not have a chance to see the form)


Hope this helps...
 
Back
Top