The MASM Forum

General => The Campus => Topic started by: ragdog on December 02, 2012, 05:18:35 AM

Title: Date control
Post by: ragdog on December 02, 2012, 05:18:35 AM
Hello

I have a question to a date control work this on a Messages Like En_Change or anything?

  invoke   SendDlgItemMessage, hWnd, 1001, DTM_GETSYSTEMTIME, 0, addr sSystemTime



    .elseif uMsg==WM_COMMAND
  mov eax,wParam
     .IF ax==1001
       shr eax,16
     .IF ax==EN_UPDATE
         movzx eax, sSystemTime.wYear
            movzx ebx, sSystemTime.wMonth
            movzx   edx ,sSystemTime.wDay
        invoke wsprintf,addr OutBuffer,addr form,eax,ebx,edx
        invoke SetDlgItemText,hWnd,1002,addr OutBuffer
        .endif
   .ENDIF



I have look on Msdn but not any solution Found

Regards..
Title: Re: Date control
Post by: fearless on December 02, 2012, 05:33:04 AM
Its WM_NOTIFY stuff, send as date time picker notifications. (http://msdn.microsoft.com/en-us/library/windows/desktop/bb761726%28v=vs.85%29.aspx#Date_notification_messages (http://msdn.microsoft.com/en-us/library/windows/desktop/bb761726%28v=vs.85%29.aspx#Date_notification_messages))

Notification code Description
DTN_CLOSEUP (http://msdn.microsoft.com/en-us/library/windows/desktop/bb761735%28v=vs.85%29.aspx) Indicates that the drop-down month calendar is about to be removed.
DTN_DATETIMECHANGE (http://msdn.microsoft.com/en-us/library/windows/desktop/bb761737%28v=vs.85%29.aspx) Signals a change within the DTP control.
DTN_DROPDOWN (http://msdn.microsoft.com/en-us/library/windows/desktop/bb761739%28v=vs.85%29.aspx) Indicates that the drop-down month calendar is about to be displayed.
DTN_FORMAT (http://msdn.microsoft.com/en-us/library/windows/desktop/bb761741%28v=vs.85%29.aspx) Requests text to display in a portion of the format string described as a callback field.
DTN_FORMATQUERY (http://msdn.microsoft.com/en-us/library/windows/desktop/bb761743%28v=vs.85%29.aspx) Requests information about the maximum allowable size of the text to be displayed in a callback field.
DTN_USERSTRING (http://msdn.microsoft.com/en-us/library/windows/desktop/bb761745%28v=vs.85%29.aspx) Signals the end of a user's edit operation within the control. This notification is sent only by DTP controls that use the DTS_APPCANPARSE (http://msdn.microsoft.com/en-us/library/windows/desktop/bb761728%28v=vs.85%29.aspx#DTS_APPCANPARSE) style.
DTN_WMKEYDOWN (http://msdn.microsoft.com/en-us/library/windows/desktop/bb761747%28v=vs.85%29.aspx) Signals that the user has pressed a key in a callback field of the DTP control.

DTN_DATETIMECHANGE looks closest to what your looking for i think
Title: Re: Date control
Post by: ragdog on December 02, 2012, 06:31:41 AM
WM_NOTIFY  ::)

My eyes oh oh :lol:

Thank you