Virtualbox removes shared units
Posted: 23. May 2009, 12:33
I posted a similar post in the past , but now I have found an easy pattern to replicate the problem.
The problem is that Virtualbox removes the shared units where I have any Builder C++ application placed in the shared unit.
To replicate it:
Create a "Hello World" console application with Builder C++ 6.0 like the above:
Save the project in a shared unit of Virtualbox.
Now, click "Run" to execute the program.
The first time, it usually works fine, execute it several times (between 4 and 10). Finally, an error message appears: "Could not find program: E:\MyApp\Myapp.exe"
Now, if I start the Windows Explorer, I can see my shared unit, but I cannot open it. Also, I can see my other shared units and I can access without problems.
The only way that I have to open it again is to shutdown the guest Windows and start it again.
Does somebody have a similar problem? How can I solve it?
Thank you
The problem is that Virtualbox removes the shared units where I have any Builder C++ application placed in the shared unit.
To replicate it:
Create a "Hello World" console application with Builder C++ 6.0 like the above:
Code: Select all
#include <iostream>
int main(int argc, char* argv[])
{
using namespace std;
cout<< "Hello World";
return 0;
}
Now, click "Run" to execute the program.
The first time, it usually works fine, execute it several times (between 4 and 10). Finally, an error message appears: "Could not find program: E:\MyApp\Myapp.exe"
Now, if I start the Windows Explorer, I can see my shared unit, but I cannot open it. Also, I can see my other shared units and I can access without problems.
The only way that I have to open it again is to shutdown the guest Windows and start it again.
Does somebody have a similar problem? How can I solve it?
Thank you