Click here to Skip to main content
15,894,179 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi,
I will create the windows App to get the file source and Designation and Timer for Windows Service. Finally i will save that details in MS Access.

In windows Service is fetch the details and move the files in specified Timer.

Here i want to install the windows application along with the Windows Service.

Any one help me to do this?
Posted
Comments
Leo Chapiro 29-Oct-14 4:30am    
What have you already achieved?
vinodhini sekar 29-Oct-14 4:37am    
I have completed the windows application and Save function. I am sucked with windows service and installation of App

1 solution

I hope this will help you.




Create Table in MS Access to save

filesource(varchar) | Designation(varchar) | Timer(time) | Finished(bit)
-----------------------------------------------------------------------
C:\ABCD.txt | xxxx | 10:50 AM | YES
C:\1234.txt | yyyy | 10:50 AM | NO


Windows form viewer save data into table

Windows service run every 5 min.

Your Windows service will read content from table

...
..

perform job.
..
...



.............
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900