Make A Little Backup Program?
Jan 7, 2010
Is it possible to make a little backup program that can backup from one folder to another, is this much work? With a calender also that can be picked up so you can chose when the backup starts.
Im thinking about f.example 10 lines where you can chose where to backup from (different folderes) And one line where the backup shall be saved. All this with browse folder off course. And with a button backup now and a button backup from the date. A very little program with an easy use.
View 1 Replies
ADVERTISEMENT
Feb 23, 2012
im trying to make a auto mysql backup for my vb program. this code is working but i want to hide the console window so the user will never notice that something happened.
Process.Start("C:/wamp/bin/mysql/mysql5.5.16/bin/mysqldump.exe", "-uroot coop usertrails --skip-add-drop-table -r ""C:ackup.sql")
View 3 Replies
Jul 17, 2008
(VS.Net 2005/VB.Net)Why is it that VS.Net does not create LOCAL backup files of edits? Is there a way to make it do that?I accidentally overwrote a day's worth of changes by attempting to do a manual mergeoutside of VS.Net.Is there a way to make VS.Net create backup files of your changes each time you save?Delphi does it using an extension of .~pa for your source files and .~fm for your form files.This way, if your system crashes, which VS.Net is certainly going to do, you wouldn't lose the changes you made since your last save point.I know, I know, I shouldn't have been doing the merge outside of VS.Net but I had my reasons and now I[m paying the price.I just wished VS.Net was a little better IDE than it is because, frankly it sux. I am forever waitingfor something and not very productive using it. Hey, I'm getting good at watching paint dry because that is what developing in this tool seems like.
View 3 Replies
Oct 13, 2011
I'd like to know how to restore my database in visual basic. the code i used for backing up is[code]...
View 2 Replies
Dec 28, 2009
How to backup ms access database in vb.net?We're gonna make a system for a certain company but our teacher doesn't teach us at all
View 1 Replies
Nov 8, 2010
i have i problem when making some program to backup database sql server 2000. i have task to develop program with requirement like this:
1. this program must backup database from sql server 2000 (success).
2. this program must compress the backup to the smaller size (Not success,because the backup file is more than 3,9 Gb. i am using SharpZip Wrapper and not succes because the size exceeded.)
3.Copy the backup file or compress to another computer (Succes but take a long time because the size of file is more than 3,9 Gb. That's why I want compress the file.)
any one can give me solution for compress large file with size more than 3,9 Gb. This file will continue to grow in size,so i need compress it so i can copy more quickly?
or any one can reference some freeware can do the task?
View 5 Replies
Jun 12, 2011
How to take backup of database from sql server2005 using vb.net with the help of code
View 1 Replies
May 24, 2012
I'm been searching for a while for a way to create a vb 2010 program that automatically checks and compare the files you have at a specific location in your hard drive and backup/update them securely though a vpn when a button is clicked.
View 1 Replies
Sep 29, 2010
I developed a program using Vb.Net that is data based enabled, it has a field for serial number etc. its working fine but the serial number failed to update when a record is deleted, its always keeps tracks of its formal numbering, even when the program is restarted, unless reinstalled.How do i also backup the data stored in such program.
View 6 Replies
Nov 14, 2011
I have my desktop app, bound to an access database. I want now to improve a button so the user can make a backup of the *.mdb file.So i used this
If FolderBrowserDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then
If FolderBrowserDialog1.SelectedPath <> "" Then
FileCopy("BDGRACIA.mdb", FolderBrowserDialog1.SelectedPath & "/BDgracia.mdb")
End If
End If
It works fine when i try the app from within Visual Studio. But when i install it it won�t find the database because it was installed elsewhere.Is there a way to control where the DB is installed and follow that route? Does this depend on the OS the app is installed? Or did I face the problem wrong and i should do something completely different with my button?
View 3 Replies
Mar 18, 2009
How can i make my app execute some code at specified day/time (Day/minutes/secconds)?I need to make a scheduled app that will backup(copy) some files at specified time/date.
View 4 Replies
Feb 9, 2009
I am writing a backup program that zips files. Using some sample code I have the following that creates a zip file. Problem is it does not get any subdirectories or files. Where am i going wrong?
Dim azFileNames() As String = Directory.GetFiles(SourceFolder)
Dim objCrc32 As New Crc32()
Dim zipStream As ZipOutputStream
[CODE]...
Alternativley, there is another component to the zipping dll that I could probably bypass the above altogether. It is: FZ.CreateZip(DestFile, SourceFolder, True, "", "") Where DestFile is (Output stream as system.io.stream). I'm trying to read all the files, directories, sub dir and files, etc from a specific location, let's say 'My Documents' into Destfile in which the FZ.CreateZip zips the file. FZ is FastZip which is from icsharpcode.net. They have c# examples, but that's greek to me. I'm trying to just learn VB!
View 6 Replies
Oct 19, 2009
before re-inventing the wheel, i want to ask you how i can do this best: I have a VB.Net application that uses a database connection to MS SQL Server 2005 (express version). There are users that input data with the application into the database lets say once to 2x an hour to once a minute. I want to do backups like this: Once a day or once a week (in the evening) a full backup, and whenever the program/user is idle for lets say 10 Minutes, i want to do an incremental backup (so that it does not take so long until he can work on after the backup).
There are no big security issues, just copying the backup data files to a network share / a different computer or server would be fine. i guess the average db size may be 300MB, but the daily increments about 1MB.
[Code]...
View 2 Replies
Feb 27, 2011
how to make automatic backup from one computer to another computer ? I'm using vb.net. We are on the local network.
View 14 Replies
Jun 6, 2009
I cannot find a way to make a program that I write make a shortcut in the start menu for all users.My final goal is to make an MSI and deploy it in group policy to all users on a computers OU. Is this possible?
View 5 Replies
Aug 23, 2009
How do i make my button open a program and make it windows size?
View 6 Replies
Feb 25, 2010
If e.CommandLine.Count > 0 Then
Dim IncomingCommand As String = e.CommandLine.Item(0).ToString
If IncomingCommand.Substring(0, 2) = "-1" Then
form1.close()
End If
End If
I am trying to make the program close if the -1 string is sent with the program. See my installer allows for me to run certain programs before it actually installs, but it doesn't shut down copies of the program itself. So I have a next startup instance set to shut the program down if the -1 is received. But if the program is not running it starts up instead. This is not desired. form1.close doesn't work. e.cancel = true doesn't work, etc etc. What can I do to make the program not start during this instance.
View 1 Replies
Jun 1, 2010
I made vb.net program for 1440x900 resolution, if i run my program on 800x600 or 1024x768, my program's resolution is bigger then windows, so i have problem with resolution. Now i want to change my program's size and i am interested in, wich resolution is correct to make program, 800x600 such as minimum?
View 9 Replies
Aug 26, 2009
How do I make a program that opens a file in the folder the program is stored?
View 6 Replies
Apr 3, 2010
I want to make a program that searches for a RGB color and clicks on it, WITHIN the program.
View 2 Replies
Dec 30, 2010
what im trying to do= make a program that will make multiple accounts
[code]...
ok what i type in textbox(es) "1" i want it typed on a "3"{a website=www.justin.tv/signup} when i hit the "2"[button1]i really dont have any idea what im doing i know ill need to have a webrowser to load the justin.tv/signup but i have no clue what the name of the boxes are called on the webpage
View 4 Replies
Jun 9, 2011
Me and a friend are making an app which we need to play a sound when Form1 is started. How do we do this? I don't mind code.
View 2 Replies
Aug 15, 2011
How to make a computerized examination program using vb.net...
View 1 Replies
Oct 4, 2009
I am new the Visual Basic and just downloaded 2008, and I am wanting to make a program with a button that will run a .exe that is in the same location as the program/
View 2 Replies
Jun 9, 2011
Im having kind of trouble looking for this info, but i created a POS program that when i install it, it install under Local SettingsApps2.0labla
So what i want to know if how can i make my system install like any other program, "Under Program Files/POSystem/" like so
View 2 Replies
Jun 25, 2012
I am making trial version of my vb .net project but it is not counting the days , date and time . Can u plz give me any suggestions to make it correct. [code]...
View 1 Replies
Jun 10, 2009
Ok, so I'm trying to make a program in VB that will bring up another program (Like MSN Messenger, etc) and press a certain button on that interface (i.e. an "OK" button, or File on the menu at top). How would I be able to do this?
View 1 Replies
Aug 27, 2009
Is it possible to only make a program open when another program opens it? so when someone tries to open it themselfs by clicking on it, it pops up a error message?if so then how would someone go about doing this in VB 2008?
View 9 Replies
Apr 18, 2010
Does anyone know if you can initiate a backup remotely on SQL Server Express.
I am not wanting to copy the file to a different location, rather start it from some pc on the network and let it put itself on the pc that running SQL
View 4 Replies
Oct 29, 2011
in visual basic 2010 project with access 2007 database how can i use program to take a backup of database and restore a database
View 3 Replies