Sql client problem (ressource missing on some PPC)

L

Lloyd Dupont

I recently install our application (using SqlServer & Sql client) on our
alpha tester/customer. (on its PocketPC)

I install my app's cab & netcf.core.ppc3 & sql.ppc3 cab files too.
I had an SqlException (so far nothing extraordinary), however the program
was not able to find the exception text and my exception dialog says:
"Ressource Assembly missing"

However when I try at the office, with client database, after hard resetting
my PPC and installing the same cab files as him, I get the same SqlException
however, the resource is not missing and instead of "resource missing" I had
a comprehensive sql error message.

How could this be ? (i.e. how could I install the missing ressource ? which
missing ressource ?)
Any ideas ?
 
A

Asheesh

Hi Lloyd.

Most likely System.SR.dll assembly seems to be missing from your device.
Error messages associated with exceptions thrown in device projects are
contained in the string resource library System.SR.dll
You need to install this assembly in order to get a more detailed
description of error messages.

If you install your app using VS.NET, then this assembly is copied by the
VS.NET itself, however if you'd like to distribute it with your cab file,
then include this library with the solution, add it as a project reference
so that it will be included in the generated CAB file.

HTH,
Asheesh
 
L

Lloyd Dupont

thanks ;-)
I go check that ...

Asheesh said:
Hi Lloyd.

Most likely System.SR.dll assembly seems to be missing from your device.
Error messages associated with exceptions thrown in device projects are
contained in the string resource library System.SR.dll
You need to install this assembly in order to get a more detailed
description of error messages.

If you install your app using VS.NET, then this assembly is copied by the
VS.NET itself, however if you'd like to distribute it with your cab file,
then include this library with the solution, add it as a project reference
so that it will be included in the generated CAB file.

HTH,
Asheesh
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top