This file contains hidden or 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
Option Explicit | |
Public Type RECT | |
Left As Long | |
Top As Long | |
Right As Long | |
Bottom As Long | |
End Type | |
Public Type TAG_FIELD | |
Text As String |
This file contains hidden or 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
Option Compare Database | |
Option Explicit | |
Private Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" ( _ | |
ByVal hwndParent As Long, _ | |
ByVal hwndChildAfter As Long, _ | |
ByVal lpClassName As String, _ | |
ByVal lpWindowName As String) As Long | |
Public Declare Function SendMessageTimeout Lib "user32" Alias "SendMessageTimeoutA" _ | |
(ByVal hWnd As Long, _ | |
ByVal Msg As Long, _ |
This file contains hidden or 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
'########################################################################################### | |
' ClickCompactAndRepair | |
' | |
' データベースの最適化ボタンをクリック | |
' | |
' 引数:無し | |
' | |
' 戻り値:無し | |
' | |
' 備考:参照設定にてUIAutomationClientにチェックすること |
This file contains hidden or 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
Option Explicit | |
Public Type RECT | |
Left As Long | |
Top As Long | |
Right As Long | |
Bottom As Long | |
End Type | |
Public Type TAG_FIELD | |
Text As String |
This file contains hidden or 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
' ///////////////////////////////////////////////////////////////////////////////////// | |
' //#名称 SrcToString | |
' // | |
' //#概要 | |
' // | |
' //#引数 無し | |
' // | |
' //#戻値 無し | |
' // | |
' //#解説 |
This file contains hidden or 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
Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" ( _ | |
ByVal lpClassName As String, _ | |
ByVal lpWindowName As String) As Long | |
Private 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 | |
Private Declare Function GetCursorPos Lib "user32" ( _ |
This file contains hidden or 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
Option Explicit | |
Sub aaaa() | |
Dim lngArry() As Variant | |
ReDim lngArry(9) As Variant | |
Dim i As Long | |
For i = 0 To 9 | |
lngArry(i) = i | |
Next i |
This file contains hidden or 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
Option Explicit | |
Public Type RECT | |
Left As Long | |
Top As Long | |
Right As Long | |
Bottom As Long | |
End Type | |
Sub Test() |
This file contains hidden or 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
Option Compare Database | |
Option Explicit | |
Private lngSelectColumn As Long | |
Private Sub cmdCreateMail_Click() | |
Dim i As Long | |
Dim objOutlook As Outlook.Application | |
Dim objMail As Outlook.MailItem | |
Set objOutlook = New Outlook.Application |
This file contains hidden or 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
Option Compare Database | |
Option Explicit | |
Public objExcel As Object | |
Private mnu1 As clsMnuEvnt | |
Private mnu2 As clsMnuEvnt | |
Private Sub testIn() | |
Dim cb As CommandBar | |
Dim ctl1 As CommandBarControl | |
NewerOlder