IDE :: How To Make Backup Files
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
ADVERTISEMENT
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
Mar 25, 2009
what is the correct way to archive my work? That sound pretty dumb. Let me try again. I begin a new project and design a form and then start adding code then save my work.Tomorrow I want to make changes to the project an design - how do I save and keep track of my form and code versions?
View 2 Replies
Oct 29, 2009
Im trying to create an incremental backup utility on a web form using vb.net for code behind.
So far i can copy files from directories including sub directories and that part works fine, my main problem is copying only the most recent / modified files to the backup folder, currently it is moving all the files each time.
Below is my code so far.
CODE:
View 5 Replies
Apr 27, 2011
what is the best way to check if the files in a backup folder are older than the files in the reference folder?
View 4 Replies
Jan 12, 2010
How to create automate (or) schedule backup files in vb.net application using window services
View 5 Replies
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
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
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
Feb 27, 2009
A routinely used application suddenly became impossible to access, with and error code indicating that the "VB Backup\Backup" file cannot be found. When I click File Open, the projects display as always. I select the application, double click the .sln file--and nothing happens. When I try to access the .vb file in Solution Explorer, it says "Cannot find VB Backup\Backup Files."
What are the Backup Files, when are they created, and why would they suddenly be "gone?" Is there any way to rebuild the Backup Files? I used the application last night and it worked fine. Today it can't be opened because the Backup Files cannot be found.
I have backups of the application folders, but get the same error message. Cannot be opened because the Backup FIles cannot be found.
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
Dec 15, 2010
I have a ListBox that I drop files onto and it makes a backup "C:Test.txt.bak" I have been trying to do something like this
[Code]...
View 4 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
Feb 23, 2012
How do i make a code that unzips files and then move those files into another zip file?
View 2 Replies
Apr 25, 2009
I made an application that uses text files from a folder and i included that folder's path in the code, How can I make the VB take these files with the .exe file and make it work probably?
View 4 Replies
Apr 6, 2009
I was wondering if a project, program, could make .exe files with the stuff u add into it, so basicly another form on a diferent .exe
View 6 Replies
Jul 8, 2011
I want to make recovery app to recover my files?
View 3 Replies
Apr 2, 2011
I want to make an application that moves all files from 1 zip to another and deletes a folder.
It is a Minecraft mod manager, so i wanna move all files from one zip containing the mod, to the minecraft.jar (which is a zip with another extension) overwriting all files. Also, it should delete the META-INF folder in minecraft.jar to prevent black-screening.
View 3 Replies
Jul 15, 2008
I am currently trying to make an overview of certain files in a database. To make it easy to use I decided to use a tabcontrol so the user doesn't haveto click other buttons to go too another overview.My question now is, if i have 2 different datasources ( so 2 connections to a different acces database ) and I want to show detailed information about them, on 2 different tabs, using a bindingnavigator to scroll through the records. How do I do this? It's always just one tab working and the other doesn't.
View 4 Replies
Dec 2, 2011
How can i make so .avi (and other files) defaults to my program?I have some of it ready (i can right click open with my program) but not the rest.
View 11 Replies
Aug 5, 2011
I made a program that has mp3 files in resources when I published it I found that it doesn't work in other pcs only mine now what should I do?
View 1 Replies
Apr 26, 2009
My problem is that i am using a data base and every time i publish my project it keep giving me the error that the path is not correct, how can i over come this problem? how can I make the data base go with the installation files?
View 1 Replies
Apr 11, 2009
i am trying to make a small program to encrypt files using AES, and then have the password from the AES encrypted using RSA for its use of public keys. i've got the AES part working fine and i found a good RSA tutorial here url....but after i encrypt the AES password (which is saved in a .txt file) using RSA, then i try to decrypt it again, it comes out as an empty .txt file!
View 4 Replies
Feb 13, 2008
How do i make a program that can compress files, just like programs like winrar do? Every time i try via something as simple as text editor changing something, then changing it back, then it wont work anymore. Any suggestions on how i can make one of these kinds of compression programs?
View 9 Replies
May 4, 2011
I'm coding an application in VB express 2005 and want to access a sharepoint and make backups of several files I keep there. How to access a folder in a sharepoint, copy some files in it, and then paste these in a different folder inside the same sharepoint? I am working on a windows XP so can't install Sharepoint Services 3.0, as it requires windows server 2003.
View 4 Replies
Apr 15, 2012
I am trying to Make a Simple Login System using files
Dim response As System.Net.HttpWebResponse = request.GetResponse()
If response.StatusCode = HttpStatusCode.NotFound Then
MsgBox("Invalid Login")
Else
My Code Here
But When I Debug it, and test it, it still gives me the 404 error. and not the popup.
Here is My Code
Try
Dim response As HttpWebResponse = request.GetResponse()
MessageBox.Show("Allgood")
Catch ex As WebException
[Code] .....
View 2 Replies
Jun 28, 2010
I've a small home network and i want to make a program that's transforming files between two computer and make me chat with all computers.
View 1 Replies
Mar 20, 2010
I am trying to make an app which can send/receive files/pictures. I am trying to make a app which will get a picture of the users screen and send it to me, and display it in a picturebox at a set interval. With this, I will be able to sort of see what someone is looking at without having to have him send screenshots constantly.
Remote assistance does not seem to work for these apps, shows black, but I can make the program already get an accurate screenshot and display it of this program, I just need to know how to make it send it to me and display it to picturebox.
The thing I have been using is the MultiUser TCP chat application off MSDN's website, I don't know if this will work, but I need to make it send somehow and display it.
View 6 Replies
May 5, 2009
I want to create a login system. I want the username and the password to be in the same .txt file so the name is settings.txt and in side i have my username and password?All i know is how to make two seprate txt files and have a username in one and password in the other. I want it to read
Mike (Username)
Blue (Password) But in the same txt file.
View 3 Replies
Apr 30, 2010
I need to have my VB program look for two specific programs in the same folder it is running from. How do I do that?Here is the code for when I run my program. I need it to look for the files that are underlined. They are the tpfh20 and tphd20.
Private Sub btnRunRelap5_Click(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles btnRunRelap5.Click
Dim pathString As String = String.Format("relap5 -i {0} -o {1} -r {2}", txtInput.Text, txtOutput.Text, txtRestart.Text)Dim stripString As String = String.Format(" -s {0}", tbStripFile.Text)
Dim guiString As String = " -n gui"
Dim waterprop As String = " -w tpfh20 -d tphd20"
If Not lblChangeStripFile.Visible Then
[Code]...
View 5 Replies