Try the IDOK message.. you are using a dialog, aren't you? You could also try the WM_KEYDOWN message.
Baafie
Posts
-
Capture the Enter key -
Debug v. ReleaseI have the same problem, and I don't know what to do about it. Accessing the registry, that is. Are you using the OpenRegKeyEx or the function(I forgot its name)? Baaf.
-
How can I use a CRgn to draw on a CBitmap?This looks kind of familiar.. You must be in a hurry, codeguru.com??
-
Removing ActiveX of resource !!!select it and press 'delete'.
-
Enter touch kills dialog base windowHandle OnOk() for enter and OnCancel() for escape, in which you prevent the program from terminating.
-
just a question...What exactly do you need explained? You can order books via the internet, you know..
-
just a question...yes. I suggest that you read a book about visual c++.
-
finding a string in a CStringwell isn't this nice...
-
finding a string in a CStringCString strCoffee = "coffee smells terrible"; int iSearch = strCoffee.find("err"); if (iSearch != -1) { //found it. } else { //couldn't find it. }
-
Thread Client\Serveurhee hee.. Nous ne parlons pas Français bien. (or was it meilleur?..) Voulez-vous parler en Anglais s'il vous plait? Merci beaucoup! Baaf. _________ So, what do you think of my French?
-
DuplicateHow about this: CFtpConnection *pFtp; .... pFtp = Session.GetFtpConnection(...); ... ... CFtpConnection& hFtp = *pFtp;
-
CRichEditView::Stream()Don't use stream(). Use CRichEditDoc::OnFileSave("C:/yada.txt").
-
Changing static splitter layoutYou can use the DeleteColumn(), DeleteView() and DeleteRow() to remove them. See MSDN.
-
Sending a message though a Win32 programSendMessage(hwnd, WM_LBUTTONDOWN, (WPARAM)(fill this out, use your help),(LPARAM)(same here..)); Piece of cake.