Open GoogleCodeExporter opened 9 years ago
Error codes 0x8007007f OR 0x8007007e can be the result of a problem during the
install of a service pack. After the service pack install you have missing
files,
file mismatches, and corrupted files.
To workaround this problem, uninstall the service pack that you recently
installed
and reinstall it.
MH
Original comment by mehr...@gmail.com
on 14 Apr 2008 at 4:08
I had a similar error that resulted from my attempting to use the csExWb
control
with an [MTAThread] instead of the COM interop appropriate [STAThread]. For me
the
problem emerged in a Console project since these are not [STAThread] by
default. The
fix was to declare the apartment threading:
static class Program
{
[STAThread] <--add this line
static void Main()
{
Application.Run(new SuperDuperCsExWbApp());
}
}
Similarly this kind of error can show up if initializing the csExWb control as
a
static object.
Hope that's helpful.
Original comment by vcolb...@gmail.com
on 1 Jul 2008 at 9:19
Thank you.
Regards,
MH
Original comment by mehr...@gmail.com
on 2 Jul 2008 at 10:15
Original issue reported on code.google.com by
sec....@gmail.com
on 14 Apr 2008 at 8:21