All articles with keyword "VB Forms"
Building a Most-Recently Used File List
One common feature in applications like Word and Excel is the Most Recently Used (MRU) list at the bottom of the File menu. This list shows the last four (typic...
Click for more...
Changing Form Title Bar Color
A user asked if there was a way to programmatically change the color of the form's title bar. The short answer to this is no. The color of the title bar is cont...
Getting a Form's Handle
Many API calls require the use of a window handle, or hWnd for short. If you need to pass a handle to the current form, use the hWnd property of the form. That ...