View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
TomThumb TomThumb is offline
external usenet poster
 
Posts: 39
Default Application.InputBox screen position doesn't work.

I don't care about X in the following code, I just want to control where the
textbox appears onscreen. Changing the values of Left and Top has no effect.
Why? What am I missing?

Sub test()
Dim X
X = Application.InputBox(prompt:="Hello", Left:=10, Top:=10, Type:=5)
End Sub

--
TomThumb