查看: 407  |  回复: 0
  VB6 使用API确定TextBox的文本的行数
楼主
发表于 2023年4月18日 15:37

新建From1,新建Command1(按钮CommandButton),Text1(TextBox)代码:

Private Declare Function SendMessageLong Lib _
"user32" Alias "SendMessageA" _
( _
  ByVal hwnd As Long, _
  ByVal wMsg As Long, _
  ByVal wParam As Long, _
  ByVal lParam As Long _
  ) As Long
Private Const EM_GETLINECOUNT = &HBA

Private Sub Command1_Click()
    Dim lineCount As Integer
    lineCount = SendMessageLong(Text1.hwnd, EM_GETLINECOUNT, 0&, 0&)
    MsgBox Str(lineCount), vbInformation + vbOKOnly, "行数"
End Sub


您需要登录后才可以回帖 登录 | 立即注册
【本版规则】请勿发表违反国家法律的内容,否则会被冻结账号和删贴。
用户名: 立即注册
密码:
2020-2024 MaNongKu.com