View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Frank Kabel Frank Kabel is offline
external usenet poster
 
Posts: 3,885
Default InputBox Screen Position

Hi
have a look i the VBA help at 'Inputbox'. there're the parameters xpos
and ypos to do just this

--
Regards
Frank Kabel
Frankfurt, Germany

"James Montgomery" schrieb im Newsbeitrag
...
Hi,

Can position X & Y screeen positions be added to the InputBox code

below the
way it's written.

userExciseTaxNo = InputBox("Enter sales tax number. Example

Format:" &
Chr(13) & _
"Enter .06125 for 6.125% " & Chr(13) & Chr(13) & _
"Press enter Or Click 'OK'", "Enter Tax Amonut",
startExciseTaxNo)

Thanks