Click here to Skip to main content
15,907,001 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionhow to kill a process Pin
dvsr1-Feb-07 0:30
dvsr1-Feb-07 0:30 
AnswerRe: how to kill a process Pin
goodoljosh19801-Feb-07 0:52
goodoljosh19801-Feb-07 0:52 
AnswerRe: how to kill a process Pin
Hamid_RT1-Feb-07 0:55
Hamid_RT1-Feb-07 0:55 
AnswerRe: how to kill a process Pin
Stephen Hewitt1-Feb-07 12:08
Stephen Hewitt1-Feb-07 12:08 
QuestionProblem with Resource translation Pin
AbbyIndian1-Feb-07 0:20
AbbyIndian1-Feb-07 0:20 
AnswerRe: Problem with Resource translation Pin
Waldermort1-Feb-07 2:00
Waldermort1-Feb-07 2:00 
QuestionRe: Problem with Resource translation [modified] Pin
AbbyIndian1-Feb-07 7:41
AbbyIndian1-Feb-07 7:41 
AnswerRe: Problem with Resource translation Pin
Waldermort1-Feb-07 18:10
Waldermort1-Feb-07 18:10 
When you choose the language while adding resources, it will not perform any translation. Infact, all it will do is add the new resources under a different codepage. You will need to translate all the text strings yourself. Also, when using two languages and two codepages in the same resource, you will still need to add code to your exe to be able to switch between the two.

Whenever I build a multi language app, I will always create a dll for each language. All the dll's need to contain are the dialogs and strings, with the same ID's, translated into various languages. Then in the exe, I will add code to scan the dll folder hence checking for what languages are available. I then dynamicaly link to a single dll, depending on the OS's language.

This way, I can add more languages simply by creating a new dll. The exe is also able to hot switch between languages by simply unloading the dll and loading a new one in it's place.
GeneralRe: Problem with Resource translation Pin
AbbyIndian1-Feb-07 18:43
AbbyIndian1-Feb-07 18:43 
QuestionVideo Preview from Video Packets in VC6? Pin
Andy Rama31-Jan-07 23:41
Andy Rama31-Jan-07 23:41 
AnswerRe: Video Preview from Video Packets in VC6? Pin
Mark Salsbery1-Feb-07 8:10
Mark Salsbery1-Feb-07 8:10 
AnswerRe: Video Preview from Video Packets in VC6? Pin
Hamid_RT1-Feb-07 20:36
Hamid_RT1-Feb-07 20:36 
QuestionI want to call string from DLL and load it to static control Pin
Atul2331-Jan-07 23:23
Atul2331-Jan-07 23:23 
AnswerRe: I want to call string from DLL and load it to static control Pin
Nibu babu thomas31-Jan-07 23:52
Nibu babu thomas31-Jan-07 23:52 
AnswerRe: I want to call string from DLL and load it to static control Pin
Waldermort1-Feb-07 2:06
Waldermort1-Feb-07 2:06 
AnswerRe: I want to call string from DLL and load it to static control Pin
David Crow1-Feb-07 3:20
David Crow1-Feb-07 3:20 
AnswerRe: I want to call string from DLL and load it to static control Pin
Hamid_RT1-Feb-07 20:33
Hamid_RT1-Feb-07 20:33 
Questionerror C2248: 'CObject::operator =' : cannot access private member declared in class 'CObject'" Pin
sheetal_0631-Jan-07 23:08
sheetal_0631-Jan-07 23:08 
AnswerRe: error C2248: 'CObject::operator =' : cannot access private member declared in class 'CObject'" Pin
prasad_som1-Feb-07 0:38
prasad_som1-Feb-07 0:38 
AnswerRe: error C2248: 'CObject::operator =' : cannot access private member declared in class 'CObject'" Pin
prasad_som1-Feb-07 0:51
prasad_som1-Feb-07 0:51 
AnswerRe: error C2248: 'CObject::operator =' : cannot access private member declared in class 'CObject'" [modified] Pin
Mark Salsbery1-Feb-07 11:10
Mark Salsbery1-Feb-07 11:10 
GeneralRe: error C2248: 'CObject::operator =' : cannot access private member declared in class 'CObject'" [modified] Pin
sheetal_061-Feb-07 17:35
sheetal_061-Feb-07 17:35 
GeneralRe: error C2248: 'CObject::operator =' : cannot access private member declared in class 'CObject'" Pin
Mark Salsbery2-Feb-07 5:28
Mark Salsbery2-Feb-07 5:28 
GeneralRe: error C2248: 'CObject::operator =' : cannot access private member declared in class 'CObject'" Pin
sheetal_064-Feb-07 17:42
sheetal_064-Feb-07 17:42 
GeneralRe: error C2248: 'CObject::operator =' : cannot access private member declared in class 'CObject'" Pin
Mark Salsbery5-Feb-07 5:09
Mark Salsbery5-Feb-07 5:09 

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.