Con l'input box non è possibile farlo perché si tratta di un aform già prerdefinita nelle librerie di VB.
Potresti però crearti una inputbox personalizzata (utilizzando una form comune) e poi renderla sempre in primo piano utilizzando la seguente chiamata alle API di Windows.
codice:
Private Declare Function SetWindowPos Lib "user32" _
(ByVal hWnd As Long, ByVal hWndInsertAfter As Long, ByVal X As Long, ByVal Y As Long, _
ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long
Const HWND_TOPMOST = -1
Const SWP_NOMOVE = &H2
Const SWP_NOSIZE = &H1
Private Sub Form_Load()
SetWindowPos Me.hWnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE Or SWP_NOSIZE
....
End Sub
Spero di essere stato abbastanza chiaro
Ciao