Mit Form2.Show kannst Du ganz einfach ein zweites Fenster einbauen. Dessen Eigenschaft BorderStyle setzt Du auf 4, dann hast Du schon ein Werkzeugfenster. Und jetzt ist die Frage was Du weitermachen willst. Soll das Teil immer Oben auf dem Bildschirm zu sehen sein (Stay on Top) dann bau das ein:
Declare Function SetWindowPos Lib "User" (ByVal hWnd As Integer, ByVal
hWndInsertAfter As Integer, ByVal X As Integer, ByVal Y As Integer, ByVal
cx As Integer, ByVal cy As Integer, ByVal wFlags As Integer) As Integer
Global Const SWP_NOMOVE = 2
Global Const SWP_NOSIZE = 1
Global Const FLAGS = SWP_NOMOVE Or SWP_NOSIZE
Global Const HWND_TOPMOST = -1
Global Const HWND_NOTOPMOST = -2
SetWindowPos (Form2.hWnd, HWND_TOPMOST, 0, 0, 0, 0, FLAGS)