Input box

O

Oldjay

Screwed up my first question. Here is the correct question

I have the following code

quotenumber = InputBox("Please enter QUOTE number to recall , "The Auld
Company", "C:\Quick Quotes3\")
QUOTE = quotenumber & ".XLS"

As shown it highlights " C:\Quick Quotes3\" in the input box. I want it to
place the cursor at the end of C:\Quick Quotes3\

oldjay
 
F

fredg

Screwed up my first question. Here is the correct question

I have the following code

quotenumber = InputBox("Please enter QUOTE number to recall , "The Auld
Company", "C:\Quick Quotes3\")
QUOTE = quotenumber & ".XLS"

As shown it highlights " C:\Quick Quotes3\" in the input box. I want it to
place the cursor at the end of C:\Quick Quotes3\

oldjay

That's not how to do it.
As "C:\Quick Quotes3\" is always used, try:

quotenumber = InputBox("Please enter QUOTE number to recall , "The
Auld Company")
QUOTE = "C:\Quick Quotes3\" & quotenumber & ".XLS"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Placing cursor in message box 1
ehandler 2
Ehandler 1
Input box 7
On Error 6
Name work sheet 2
Masking the character in input box 1
Print Value from Inputbox 0

Top