Click here to Skip to main content
15,867,956 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: VC++ v6 Class Wizard Errors trying to add class... help!!! Pin
David Crow3-May-09 16:27
David Crow3-May-09 16:27 
GeneralRe: VC++ v6 Class Wizard Errors trying to add class... help!!! Pin
PBrama3-May-09 16:46
PBrama3-May-09 16:46 
Questionis there any decryption algorithm that uses a dictionary to decrypyt an encrypted file? Pin
Ha lee3-May-09 14:45
Ha lee3-May-09 14:45 
AnswerRe: is there any decryption algorithm that uses a dictionary to decrypyt an encrypted file? Pin
Member 41945933-May-09 17:59
Member 41945933-May-09 17:59 
GeneralRe: is there any decryption algorithm that uses a dictionary to decrypyt an encrypted file? Pin
Ha lee4-May-09 11:09
Ha lee4-May-09 11:09 
GeneralRe: is there any decryption algorithm that uses a dictionary to decrypyt an encrypted file? Pin
Member 41945934-May-09 13:24
Member 41945934-May-09 13:24 
GeneralRe: is there any decryption algorithm that uses a dictionary to decrypyt an encrypted file? Pin
Niklas L5-May-09 3:49
Niklas L5-May-09 3:49 
QuestionStrings Pin
bawratri3-May-09 11:47
bawratri3-May-09 11:47 
Hello, I'm not too experienced C coder, so I have a question:
Where I should define those strings I'll be using? In the header or where it's used? If I wrote them in the header, the result would be much like that string pooling flag in the compiler options, right? I'm trying to code a GUI (with WinAPI) and I started wondering this.

Here's an example:
main.h:
const TCHAR g_lpErrorText[] = TEXT("Error!");
main.c:
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
  MessageBox(NULL, g_lpErrorText, g_lpErrorText, MB_ICONEXCLAMATION|MB_OK);
  return 0;
}


OR


main.c:
WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
  MessageBox(NULL, TEXT("Error!"), TEXT("Error!"), MB_ICONEXCLAMATION|MB_OK);
  return 0;
}

AnswerRe: Strings Pin
Joe Woodbury3-May-09 14:08
professionalJoe Woodbury3-May-09 14:08 
GeneralRe: Strings Pin
bawratri4-May-09 2:36
bawratri4-May-09 2:36 
QuestionWhat is The Font??? For the Bottomless RicheditCtrl ??? Pin
ForNow3-May-09 9:03
ForNow3-May-09 9:03 
AnswerRe: What is The Font??? For the Bottomless RicheditCtrl ??? Pin
Randor 3-May-09 17:11
professional Randor 3-May-09 17:11 
GeneralRe: What is The Font??? For the Bottomless RicheditCtrl ??? Pin
ForNow3-May-09 22:58
ForNow3-May-09 22:58 
QuestionChanging FONT of CommandBar.MenuBar buttons in Windows Mobile Pin
Tili3-May-09 7:41
Tili3-May-09 7:41 
QuestionHow to create a CMFCListView that would replace the CListView that currently is not able to use new CMFCListCtrl Pin
Sorin Sbarnea3-May-09 7:08
Sorin Sbarnea3-May-09 7:08 
Questionvisual studio 2005 configuration Pin
Danzy833-May-09 4:03
Danzy833-May-09 4:03 
AnswerRe: visual studio 2005 configuration [modified] Pin
NeoAks0073-May-09 5:07
NeoAks0073-May-09 5:07 
GeneralRe: visual studio 2005 configuration Pin
Danzy833-May-09 6:57
Danzy833-May-09 6:57 
GeneralRe: visual studio 2005 configuration Pin
Cedric Moonen3-May-09 7:24
Cedric Moonen3-May-09 7:24 
Questiongenerate a file after specific time Pin
saif jee3-May-09 3:34
saif jee3-May-09 3:34 
AnswerRe: generate a file after specific time Pin
enhzflep3-May-09 3:45
enhzflep3-May-09 3:45 
AnswerRe: generate a file after specific time Pin
Joe Woodbury3-May-09 14:27
professionalJoe Woodbury3-May-09 14:27 
Questionsomething about the handle of process Pin
tyr20003-May-09 2:09
tyr20003-May-09 2:09 
AnswerRe: something about the handle of process Pin
Hamid_RT3-May-09 2:22
Hamid_RT3-May-09 2:22 
GeneralRe: something about the handle of process Pin
tyr20003-May-09 2:27
tyr20003-May-09 2:27 

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.