[RESOLVED] Why the error occured? It was working fine yesterday.
Dear Friends,
My VB6 Project file was working fine yesterday. And today when I tried to open it, it gives an error "C:\Accounts.vbp could not be loaded". I tried even creating new Project with another name and tried open one of the forms importing from the previous folder. The error reads "C:\DailyAccounts.frm could not be loaded" What could be problem and how to handle it. I have no back for this work but lots of frames I designed.
Any help please.
Re: Why the error occured? It was working fine yesterday.
Did you see any log files in your folder...??? (eg: DailyAccounts.log)... If so, see what it contains... And post it here...
Re: Why the error occured? It was working fine yesterday.
Quote:
Originally Posted by
akhileshbc
Did you see any log files in your folder...??? (eg: DailyAccounts.log)... If so, see what it contains... And post it here...
No log file is there? Any way to get my vbp file work.
Re: Why the error occured? It was working fine yesterday.
Open it up in notepad and if it looks like this...
Code:
VERSION 5.00Begin VB.Form Form1 Caption = "Form1" ClientHeight = 3060 ClientLeft = 120
Then you will need to add the carriage returns back into the form definition...
If it looks like a bunch of squares, you have lost the file and will need to start over.
Good Luck
Re: Why the error occured? It was working fine yesterday.
Quote:
Originally Posted by
vb5prgrmr
Open it up in notepad and if it looks like this...
Code:
VERSION 5.00Begin VB.Form Form1 Caption = "Form1" ClientHeight = 3060 ClientLeft = 120
Then you will need to add the carriage returns back into the form definition...
If it looks like a bunch of squares, you have lost the file and will need to start over.
Good Luck
Thanks for the reply. It works fine on another computer.
Regards,
Vblearner6