Live-Forum - Die aktuellen Beiträge
Anzeige
Anzeige
HERBERS
Excel-Forum (Archiv)
20+ Jahre Excel-Kompetenz: Von Anwendern, für Anwender Navigationstipps
Inhaltsverzeichnis

F-Tasten

F-Tasten
11.03.2005 10:58:30
Dirk
Hallo,
gibt es eine Möglichkeit Makros nicht nur der üblichen Tastenkombination Strg+__, sondern einer der F-Tasten zuzuordnen?
Danke,
Dirk

1
Beitrag zum Forumthread
Beitrag zu diesem Forumthread

Betreff
Datum
Anwender
Anzeige
AW: F-Tasten
11.03.2005 11:11:54
u_
Hallo,
kannst du mit OnKey zuweisen

Private Sub Workbook_Open()
Application.OnKey "{F1}", "test1"
Application.OnKey "{F2}", "test2"
Application.OnKey "{F3}", "test3"
End Sub


Private Sub Workbook_BeforeClose(Cancel As Boolean)
Application.OnKey "{F1}"
Application.OnKey "{F2}"
Application.OnKey "{F3}"
End Sub

in ein Modul:
Sub test1()
MsgBox "Hallo 1"
End Sub
Sub test2()
MsgBox "Hallo 2"
End Sub
Sub test3()
MsgBox "Hallo 3"
End Sub
Gruß

Beliebteste Forumthreads (12 Monate)

Anzeige

Beliebteste Forumthreads (12 Monate)

Anzeige
Anzeige
Anzeige