Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

Track changes in system time and display resolution
[ All Languages » VB »  Windows]

Total Hit ( 3433)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


Whenever the system time or the display resolution changes, Windows sends all the top-level windows (forms, in VB jargon) the WM_TIMECHANGE or WM_DISPLAYCHANGE message, respectively. Therefore, you can easily determine when these system-wide settings change by subclassing any form in your application, which is especially useful with the MsgHook DLL.

Using the same method you can also trap other system-wide messages, such as the WM_COMPACTING message, which Windows sends when it's short on memory:

Click here to copy the following block
' REQUIRES THE MSGHOOK.DLL COMPONENT

' you can omit the following constant definitions,
' because they are defined in the MsgHook type library
Const WM_TIMECHANGE = &H1E
Const WM_DISPLAYCHANGE = &H7E
Const WM_COMPACTING = &H41

Dim WithEvents FormHook As MsgHook

Private Sub Form_Load()
  ' start form subclassing with events
  Set FormHook = New MsgHook
  FormHook.StartSubclass hWnd
End Sub

Private Sub FormHook_AfterMessage(ByVal uMsg As Long, ByVal wParam As Long, _
  ByVal lParam As Long, retValue As Long)
  Select Case uMsg
    Case WM_DISPLAYCHANGE
      ' The screen resolution has changed.
      ' ...
      ' ... (add here your procedure to resize your forms) ...
      ' ...
    Case WM_TIMECHANGE
      ' System date/time has changed.
      ' ...
    Case WM_COMPACTING
      ' Windows is low in memory (release resources if possible).
      ' ...
      ' ... (release as many resources as possible) ...
      ' ...
  End Select
End Sub

Note that you can indirectly trap this messages also by using the SysInfo.Ocx control, which exposes them as events. Using the subclassing technique outlined here you don't need any additional component except MsgHook.Dll (which you can use for other subclassing jobs).


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.