473,626 Members | 3,675 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

es-MX/snafu.resources .dll

I've run into a rather perplexing problem and unfortunately nobody has yet
been able to help me resolve it. I have built an application that supports
both English and Spanish text. When I compile, I get /bin/snafu.dll and
/bin/es-MX/snafu.resources .dll. When I run it on my workstation, everything
is fine; I can see both the English and Spanish versions. However, when I
copy the application to another machine, I can no longer see the Spanish
version of the verbiage. It is documented in the .Net API that
ResourceManager will default to the English if it is unable to find the
Spanish, however there's no reason (that I can figure out) that it can't
find the Spanish verbiage -- it's in the snafu.resources .dll file in the
es-MX subdirectory. Can somebody please explain this to me? This project
is reaching critical mass and if I don't resolve this problem I'm going to
need to build my own resource manager. Thanks!
Nov 20 '05 #1
4 1322
Hi Robert,

Just a couple of probably useless suggestions:

1. why is the .dll named with 2 dots in one case but not in the other?
Perhaps the system is looking for snafu.dll and only finding
snafu.resources . I would name one snafu_e.dll and the other snafu_s.dll.

2. Use the same directory structure - bin/snafu_e.dll and bin/snafu_s.dll.
If you have to have different locations, bin/s/etc and bin/e/etc

My guess is that item 1. above is more on track.

HTH,

Bernie Yaeger

"Robert Dobson" <tr****@hotmail .com> wrote in message
news:uW******** *****@tk2msftng p13.phx.gbl...
I've run into a rather perplexing problem and unfortunately nobody has yet
been able to help me resolve it. I have built an application that supports both English and Spanish text. When I compile, I get /bin/snafu.dll and
/bin/es-MX/snafu.resources .dll. When I run it on my workstation, everything is fine; I can see both the English and Spanish versions. However, when I
copy the application to another machine, I can no longer see the Spanish
version of the verbiage. It is documented in the .Net API that
ResourceManager will default to the English if it is unable to find the
Spanish, however there's no reason (that I can figure out) that it can't
find the Spanish verbiage -- it's in the snafu.resources .dll file in the
es-MX subdirectory. Can somebody please explain this to me? This project
is reaching critical mass and if I don't resolve this problem I'm going to
need to build my own resource manager. Thanks!

Nov 20 '05 #2
Visual Studio .Net named the files and placed them in that directory
structure without any input from me :-)
"Bernie Yaeger" <be*****@cherwe llinc.com> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
Hi Robert,

Just a couple of probably useless suggestions:

1. why is the .dll named with 2 dots in one case but not in the other?
Perhaps the system is looking for snafu.dll and only finding
snafu.resources . I would name one snafu_e.dll and the other snafu_s.dll.

2. Use the same directory structure - bin/snafu_e.dll and bin/snafu_s.dll. If you have to have different locations, bin/s/etc and bin/e/etc

My guess is that item 1. above is more on track.

HTH,

Bernie Yaeger

"Robert Dobson" <tr****@hotmail .com> wrote in message
news:uW******** *****@tk2msftng p13.phx.gbl...
I've run into a rather perplexing problem and unfortunately nobody has yet been able to help me resolve it. I have built an application that

supports
both English and Spanish text. When I compile, I get /bin/snafu.dll and
/bin/es-MX/snafu.resources .dll. When I run it on my workstation,

everything
is fine; I can see both the English and Spanish versions. However, when I copy the application to another machine, I can no longer see the Spanish
version of the verbiage. It is documented in the .Net API that
ResourceManager will default to the English if it is unable to find the
Spanish, however there's no reason (that I can figure out) that it can't
find the Spanish verbiage -- it's in the snafu.resources .dll file in the
es-MX subdirectory. Can somebody please explain this to me? This project is reaching critical mass and if I don't resolve this problem I'm going to need to build my own resource manager. Thanks!


Nov 20 '05 #3
Hi Robert,

I'm growing more confident that the name of the .dll is the problem.

I use several dlls in my vb .net apps. VS .Net never, never named them
anything but <classname>.dll . How did you create the .dll? Also, was it
managed code to begin with? Just for argument's sake, copy
snafu.resources .dll to snafu.dll and see if it can be found.

HTH,

Bernie Yaeger

"Robert Dobson" <tr****@hotmail .com> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
Visual Studio .Net named the files and placed them in that directory
structure without any input from me :-)
"Bernie Yaeger" <be*****@cherwe llinc.com> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
Hi Robert,

Just a couple of probably useless suggestions:

1. why is the .dll named with 2 dots in one case but not in the other?
Perhaps the system is looking for snafu.dll and only finding
snafu.resources . I would name one snafu_e.dll and the other snafu_s.dll.

2. Use the same directory structure - bin/snafu_e.dll and bin/snafu_s.dll.
If you have to have different locations, bin/s/etc and bin/e/etc

My guess is that item 1. above is more on track.

HTH,

Bernie Yaeger

"Robert Dobson" <tr****@hotmail .com> wrote in message
news:uW******** *****@tk2msftng p13.phx.gbl...
I've run into a rather perplexing problem and unfortunately nobody has

yet been able to help me resolve it. I have built an application that

supports
both English and Spanish text. When I compile, I get /bin/snafu.dll and /bin/es-MX/snafu.resources .dll. When I run it on my workstation,

everything
is fine; I can see both the English and Spanish versions. However, when I
copy the application to another machine, I can no longer see the
Spanish version of the verbiage. It is documented in the .Net API that
ResourceManager will default to the English if it is unable to find the Spanish, however there's no reason (that I can figure out) that it can't find the Spanish verbiage -- it's in the snafu.resources .dll file in the es-MX subdirectory. Can somebody please explain this to me? This
project is reaching critical mass and if I don't resolve this problem I'm
going to need to build my own resource manager. Thanks!



Nov 20 '05 #4
I just chose Build->Rebuild Solution from the toolbar and Visual Studio .Net
created a subdirectory under /bin named /es-MX and placed in it a DLL named
snaful.resource s.dll. And like I said in the original post, it works just
fine on my workstation. I tried renaming the DLL, and I also tried copying
it up into the /bin directory. Neither worked. Thanks for the suggestions.
"Bernie Yaeger" <be*****@cherwe llinc.com> wrote in message
news:uF******** ******@tk2msftn gp13.phx.gbl...
Hi Robert,

I'm growing more confident that the name of the .dll is the problem.

I use several dlls in my vb .net apps. VS .Net never, never named them
anything but <classname>.dll . How did you create the .dll? Also, was it
managed code to begin with? Just for argument's sake, copy
snafu.resources .dll to snafu.dll and see if it can be found.

HTH,

Bernie Yaeger

Nov 20 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

10
4447
by: Jean-David Beyer | last post by:
I have some programs running on Red Hat Linux 7.3 working with IBM DB2 V6.1 (with all the FixPacks) on my old machine. I have just installed IBM DB2 V8.1 on this (new) machine running Red Hat Enterplise Linux 3 ES, and applied FixPack fp5_mi00069.tar to it. After creating an instance, starting the database, creating a database, and entering the table definitions, all of which seems to work OK, I entered a tiny 8-row table and can do...
0
582
by: Jean-David Beyer | last post by:
I have some programs running on Red Hat Linux 7.3 working with IBM DB2 V6.1 (with all the FixPacks) on my old machine. I have just installed IBM DB2 V8.1 on this (new) machine running Red Hat Enterplise Linux 3 ES, and applied FixPack fp5_mi00069.tar to it. After creating an instance, starting the database, creating a database, and entering the table definitions, all of which seems to work OK, I entered a tiny 8-row table and can do...
5
11413
by: Stuart Norris | last post by:
Dear Readers, I am attempting to define an array of IPAddress-es in C#. I wish to have a array of address so I can try in order to connect to them in a loop to handle unavailable hosts. Todate since I do not know how to define an array of IPAddress-es. I have been defining variable like:
0
970
by: http://myblog.es/nisd http://myblog.es/nisd/art/51 | last post by:
http://myblog.es/nisd http://myblog.es/nisd/art/51162/ http://myblog.es/nisd/art/50934/ http://myblog.es/nisd/art/50706/ http://myblog.es/nisd/art/50478/ http://myblog.es/nisd/art/50250/ http://myblog.es/nisd/art/50022/ http://myblog.es/nisd/art/49794/
4
4678
by: goosfancito | last post by:
hola. Quiero saber como hacer para identificar de que tipo es un archivo, como ser: quiero que el usuario seleccione un archivo excel y despues poder verificar que asi es y que no es un archivo que se renombro con extension excel. Graicas.
0
8265
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8196
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8705
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8364
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
6125
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4092
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2625
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1808
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1511
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.