Created
May 31, 2012 15:15
-
-
Save aubreylouw/2844076 to your computer and use it in GitHub Desktop.
VBA - Excel - Widen NamedRange Listbox
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" _ | |
(ByVal lpClassName As String, _ | |
ByVal lpWindowName As String) As Long | |
Public Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" _ | |
(ByVal hWnd1 As Long, ByVal hWnd2 As Long, _ | |
ByVal lpsz1 As String, ByVal lpsz2 As String) As Long | |
Public Declare Function SendMessage Lib "user32" Alias "SendMessageA" _ | |
(ByVal hwnd As Long, ByVal wMsg As Long, _ | |
ByVal wParam As Long, lParam As Any) As Long | |
Sub WidenNameBoxDrop2() | |
Dim Res As Long | |
Const CB_SETDROPPEDWIDTH = &H160 | |
Const cWidth = 400 '<<<< | |
Res = SendMessage( _ | |
FindWindowEx( _ | |
FindWindowEx( _ | |
FindWindow("XLMAIN", Application.Caption) _ | |
, 0, "EXCEL;", vbNullString) _ | |
, 0, "combobox", vbNullString), _ | |
CB_SETDROPPEDWIDTH, cWidth, 0) | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment