CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: berkov

Search: Search took 0.03 seconds.

  1. Re: EN_UPDATE / EN_CHANGE how to use Notyfication Code - validation on control

    OK,, thanks for this info., guess i might need to use it for combo!
  2. Re: EN_UPDATE / EN_CHANGE how to use Notyfication Code - validation on control

    i checked my previous code and it also works as well
    The problem was that IDC_example cannot be a COMBOBOX but EDIT.
    This notification does not work with COMBOBOXES.
  3. Re: EN_UPDATE / EN_CHANGE how to use Notyfication Code - validation on control

    Brilliant!
    Seems to be working.

    case WM_COMMAND:
    {

    switch( LOWORD( wParam ) )
    {

    case IDC_save: {somesavingcode} break;
  4. Re: EN_UPDATE / EN_CHANGE how to use Notyfication Code - validation on control

    Hi

    I just realized so i made the following:
    BOOL CALLBACK DlgProcModalless( HWND hwnd, UINT Msg, WPARAM wParam, LPARAM lParam )
    {
    switch( Msg )
    {
    case WM_COMMAND:
    {
  5. EN_UPDATE / EN_CHANGE how to use Notyfication Code - validation on control

    hey ho!


    I've got a Dialog with various Controls on it. Just for the need of this example, let's say we talk about:
    #define IDC_example 1001

    IDC_example to EDITTEXT.

    The Dialog where...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured