COM - Component Object Model for more Info, check the articles on this page regards WoodStock
W
W00dSt0ck
@W00dSt0ck
Posts
-
Communication between processes -
Edit Box from funtionHow can I make function() a member of my TestDlg class?????
-
Edit Box from funtionDoesnt work, GetDlgItem() asks for Window Hande (doesn't accept 1 Parameter)! How can I get this? WoodStock
-
Edit Box from funtionHello! I am new to MFC. I want to change an Edit Box from a function! The situation is the following (simplified):
int function(); //Prototype void TestDlg::OnGo() { SetDlgItemText(IDC_Output, "From OnGo!!!"); //Works fine function(); // Call my function } int function() { SetDlgItemText(IDC_Output, "From funtion()!!"); // ERROR }
So, the output from the function does not work. I know, I have to append something, but what?????