|
-
Jun 21st, 2000, 03:22 PM
#1
Thread Starter
Member
What's the best way to backup a whole project? so that I can have an earlier version if I ran in unrecoverable errors. Thanks!
Please Visit My WebCam!!
http://www.hmcheung.com
-
Jun 21st, 2000, 03:50 PM
#2
PowerPoster
Duplicate the entire project folder and store it in somewhere else.
-
Jun 22nd, 2000, 08:55 AM
#3
Thread Starter
Member
thanks. but I'm encountering a case like this:
when i open the project file in the new directory, it is accessing the forms in the old directory.
Is there any way that I can do a backup and then when I need to use that backup again, it will automatically work within its own directory?
Please Visit My WebCam!!
http://www.hmcheung.com
-
Jun 22nd, 2000, 09:10 AM
#4
PowerPoster
Modified your project file
You can resolve it by open your project file (*.vbp) with Notepad.exe and try to locate the following line:
Code:
Type=Exe
Form=C:\My Project\Project 1\frmMain.frm
Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#C:\WINNT\SYSTEM32\STDOLE2.TLB#OLE Automation
Startup="frmMain"
Command32=""
and change it to
Code:
Type=Exe
Form=frmMain.frm
Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#C:\WINNT\SYSTEM32\STDOLE2.TLB#OLE Automation
Startup="frmMain"
Command32=""
Then you will bypass the message that you mention.
Have a nice try.
-
Jun 22nd, 2000, 09:40 AM
#5
Addicted Member
Select the folder that contains the project files and CTRL+C, CTRL+V that *****.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|