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 SetWindowTextW Lib "user32" (ByVal hwnd As Long, ByVal lpString As Long) As Long
Private Const EM_GETLINE = &HC4Private Sub Command1_Click()Dim ParentHandle As LongShell "NotePad", vbNormalFocus '打开记事本ParentHandle = FindWindow("Notepad", vbNullString) SetWindowTextW ParentHandle, StrPtr("xatire depter")
 
End Sub我用了这个API 修改了WinDows 记事本标题栏上的文字.
我还想修改Windows 记事本菜单上的文字.
用什么样的API可以获取/修改Windows 记事本菜单上的文字