How to create automate (or) schedule backup files in vb.net application using window services
How to create automated backup files in vb.net applicationHow to create automate (or) schedule backup files in vb.net applicatio
Page 1 of 1
5 Replies - 15190 Views - Last Post: 19 January 2010 - 01:11 PM
#1
How to create automated backup files in vb.net application
Posted 12 January 2010 - 11:23 AM
Replies To: How to create automated backup files in vb.net application
#2
Re: How to create automated backup files in vb.net application
Posted 12 January 2010 - 12:07 PM
Usually you want to back up the DATA not the actual executable.. which one do you want?
#3
Re: How to create automated backup files in vb.net application
Posted 12 January 2010 - 12:41 PM
Hi
I use this to backup an access database that i am using within my application. I place it in my form load so every time the app starts it backs up the database. So if they make a mess of the database they can go back to an earlier version
It may be not what you are looking for but I hope it helps.
I use this to backup an access database that i am using within my application. I place it in my form load so every time the app starts it backs up the database. So if they make a mess of the database they can go back to an earlier version
'Backup the database
FileCopy("c:\cutlassdatafile\Cutlasslathe.mdb", "c:\cutlassdatafile\backupdatabase\Cutlasslathe.mdb")
It may be not what you are looking for but I hope it helps.
#4
Re: How to create automated backup files in vb.net application
Posted 13 January 2010 - 07:37 AM
Nikhita, on 12 Jan, 2010 - 10:23 AM, said:
How to create automate (or) schedule backup files in vb.net application using window services
I want to backup the folder containing Data Files (.doc,.xls,.tiff,.pdf...) but not executable file.
modi123_1, on 12 Jan, 2010 - 11:07 AM, said:
Usually you want to back up the DATA not the actual executable.. which one do you want?
I want to backup the folder containing Data Files (.doc,.xls,.tiff,.pdf...) but not sql database.
Thankq
#5
Re: How to create automated backup files in vb.net application
Posted 13 January 2010 - 08:49 AM
Nikhita, on 13 Jan, 2010 - 08:37 AM, said:
Nikhita, on 12 Jan, 2010 - 10:23 AM, said:
How to create automate (or) schedule backup files in vb.net application using window services
I want to backup the folder containing Data Files (.doc,.xls,.tiff,.pdf...) but not executable file.
modi123_1, on 12 Jan, 2010 - 11:07 AM, said:
Usually you want to back up the DATA not the actual executable.. which one do you want?
I want to backup the folder containing Data Files (.doc,.xls,.tiff,.pdf...) but not sql database.
Thankq
Oh.. well the IO.File has information on getting a list of files in the directory as well as a 'copy' method to copy from one location to another.
START PROGRAM IF current date = date for backup THEN BEGIN us the file.io functions to copy each file in what ever directory supplied and to a new directory. END END PROGRAM
#6
Re: How to create automated backup files in vb.net application
Posted 19 January 2010 - 01:11 PM
Oh.. well the IO.File has information on getting a list of files in the directory as well as a 'copy' method to copy from one location to another.
[/quote]
Thank you, I will try.
START PROGRAM IF current date = date for backup THEN BEGIN us the file.io functions to copy each file in what ever directory supplied and to a new directory. END END PROGRAM
[/quote]
Thank you, I will try.
Page 1 of 1
|
|

New Topic/Question
Reply




MultiQuote






|