Results 1 to 5 of 5

Thread: best way to backup?

  1. #1

    Thread Starter
    Member
    Join Date
    Jun 2000
    Location
    Hong Kong
    Posts
    62

    Question

    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

  2. #2
    PowerPoster Chris's Avatar
    Join Date
    Jan 1999
    Location
    K-PAX
    Posts
    3,238

    Red face

    Duplicate the entire project folder and store it in somewhere else.

  3. #3

    Thread Starter
    Member
    Join Date
    Jun 2000
    Location
    Hong Kong
    Posts
    62

    Unhappy

    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

  4. #4
    PowerPoster Chris's Avatar
    Join Date
    Jan 1999
    Location
    K-PAX
    Posts
    3,238

    Lightbulb 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.

  5. #5
    Addicted Member JasonGS's Avatar
    Join Date
    May 2000
    Location
    California
    Posts
    155
    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
  •  



Click Here to Expand Forum to Full Width