指定完成
Private Sub Workbook_Open()
Application.OnKey "^q", "工作表1.CommandButton1_Click"
End Sub
以下使用正確無誤,但是方便性欠佳,因此我想修。
Private Sub CommandButton1_Click()
Cells(2, ActiveCell.Column + 1).Select
Dim t
With TextBox1
If Not .Visible Then
t = 1 '或InputBox("輸入限制字元數", "WLZ", 3)
If IsNumeric(t) Then LenStr = t
If t < 1 Then t = 1
.Activate
End If
.Visible = CommandButton1
End With
End Sub
[attach]7056[/attach]
使用方法,點A1然後執行Private Sub CommandButton1_Click()
即可快速地填上數字,且會自動換行,方便性欠佳的部分就是,每次執行前都要按ESC,
所以我想將Call Form_KeyDown(27, 0)加入Private Sub CommandButton1_Click()
可是一放進去就會顯示錯誤,不知道還有沒有其他的方法使其更便利,我將持續上網搜尋中。