Click here to Skip to main content
15,923,374 members
Home / Discussions / C#
   

C#

 
AnswerRe: How do i Charge Credit Cards for my Program? Pin
sreejith ss nair19-Sep-05 20:36
sreejith ss nair19-Sep-05 20:36 
AnswerRe: How do i Charge Credit Cards for my Program? Pin
seee sharp19-Sep-05 20:54
seee sharp19-Sep-05 20:54 
QuestionWindows Authentication Pin
pavan bhatara19-Sep-05 20:25
pavan bhatara19-Sep-05 20:25 
AnswerRe: Windows Authentication Pin
sreejith ss nair19-Sep-05 20:40
sreejith ss nair19-Sep-05 20:40 
QuestionOutput Caching Pin
Anonymous19-Sep-05 20:02
Anonymous19-Sep-05 20:02 
AnswerRe: Output Caching Pin
seee sharp19-Sep-05 20:09
seee sharp19-Sep-05 20:09 
Questionserialization in .Net Pin
Anonymous19-Sep-05 19:22
Anonymous19-Sep-05 19:22 
AnswerRe: serialization in .Net Pin
turbochimp19-Sep-05 19:34
turbochimp19-Sep-05 19:34 
AnswerRe: serialization in .Net Pin
seee sharp19-Sep-05 19:39
seee sharp19-Sep-05 19:39 
QuestionMemory usage in C# .Net Pin
ppp00119-Sep-05 17:53
ppp00119-Sep-05 17:53 
AnswerRe: Memory usage in C# .Net Pin
Christian Graus19-Sep-05 18:16
protectorChristian Graus19-Sep-05 18:16 
AnswerRe: Memory usage in C# .Net Pin
Andy Brummer19-Sep-05 20:39
sitebuilderAndy Brummer19-Sep-05 20:39 
AnswerRe: Memory usage in C# .Net Pin
Guffa19-Sep-05 22:29
Guffa19-Sep-05 22:29 
Questionthreading in networking Pin
ppp00119-Sep-05 17:48
ppp00119-Sep-05 17:48 
QuestionGDI+:How to clear the graphic? Pin
dreamwinter19-Sep-05 15:06
dreamwinter19-Sep-05 15:06 
AnswerRe: GDI+:How to clear the graphic? Pin
Dave Kreskowiak19-Sep-05 17:12
mveDave Kreskowiak19-Sep-05 17:12 
Questionchange folder permission during installation Pin
kani9819-Sep-05 13:07
kani9819-Sep-05 13:07 
AnswerRe: change folder permission during installation Pin
Dave Kreskowiak19-Sep-05 17:15
mveDave Kreskowiak19-Sep-05 17:15 
Questionlaunch dotnetfx.exe during installation Pin
kani9819-Sep-05 13:01
kani9819-Sep-05 13:01 
AnswerRe: launch dotnetfx.exe during installation Pin
Christian Graus19-Sep-05 14:09
protectorChristian Graus19-Sep-05 14:09 
GeneralRe: launch dotnetfx.exe during installation Pin
kani9820-Sep-05 13:35
kani9820-Sep-05 13:35 
GeneralRe: launch dotnetfx.exe during installation Pin
Christian Graus20-Sep-05 13:44
protectorChristian Graus20-Sep-05 13:44 
GeneralRe: launch dotnetfx.exe during installation Pin
kani9820-Sep-05 14:25
kani9820-Sep-05 14:25 
Questionperform drag&drop operation in listview Pin
Sasuko19-Sep-05 12:45
Sasuko19-Sep-05 12:45 
QuestionHow to Use satallite Assembly Pin
dwark10619-Sep-05 12:10
dwark10619-Sep-05 12:10 
Hi Everyone,

I am making an application for language specification and using satallite assembly.
If we use satallite assembly means there is no need to recompilation of application.

What I am doing that is given below step by step.

1. Created file like string.txt,string.de-DE.txt,string.ja.txt

2. compile all txt file with "resgen.exe" at command prompt like "resgen string.de-DE.txt string.de-DE.resources.

3. Again compile all resources file with "al.exe" like "al /t:lib /embed:strings.de-DE.resources /culture:de /out:myApp.resources.dll"
4. Created folder in my application for different language specification like "de-DE","ja"(Folder name)

5. Put file in this folder like for "de-DE" folder for myApp.resources.dll,string.de-DE.resources,string.de-DE.txt

6. In coding part "myapp.cs"

a) //static ResourceManager rm = new ResourceManager("myapp.string", Assembly.GetExecutingAssembly());//myapp is "namespace"
static ResourceManager rm = new ResourceManager("myapp.string",(typeof(Class1).Assembly));//string is "base name"
b) cultureinfo and switch case

7. Question is that if i don't make these resource file as satallite assembly then it works fine but if i make these resource file as
satallite assembly and put the resource file and dll in folder then it doesn't work.

8. If i run this application it pick up default one english language specification but not pick up german or any other language.

9. I am following each step that is given in MSDN.

Thanks

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.