Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default buttons on InputBox


Hi all,

I've spent a good portion of the day searching for an answer to my
question so I figured I'd just ask...

Is there a way to add additional buttons in an InputBox? Currently
there is only the 'OK' and 'Cancel' button.

What I'm trying to do is gather several different inputs to be entered
into different cells in my spreadsheet. I'd like to be able to go back
to the previous input if possible. If there's another way to create
something like this other than Inputboxes than those suggestions are
welcome as well.

Thanks in advance!

Joel


--
jojotherider
------------------------------------------------------------------------
jojotherider's Profile: http://www.excelforum.com/member.php...o&userid=24548
View this thread: http://www.excelforum.com/showthread...hreadid=386609

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 158
Default buttons on InputBox

One workaround would be to have Cancel take you back to the previous
inputbox and OK to the next.

That obviously doesn't allow the user to abort the entire process other
than "cancel" their way back to the first InputBox so if you have more
than a few boxes it would be very annoying.

I would suggest using a userform, since you are asking this I presume
you aren't familiar with them (apologies if I've completely
underestimated your level). You can set up a text box for entry along
with the required buttons, or indeed allow multiple entries (TextBoxes)
on the same form. Try reading the help file or maybe check out
www.cpearson.com (to name but one) for examples on forms.

As a final solution that's very simple (but possibly nor what you're
looking for) you may like to take a look at Data \ Form from the Excel
main menu bar.

HTH,
Gareth


jojotherider wrote:
Hi all,

I've spent a good portion of the day searching for an answer to my
question so I figured I'd just ask...

Is there a way to add additional buttons in an InputBox? Currently
there is only the 'OK' and 'Cancel' button.

What I'm trying to do is gather several different inputs to be entered
into different cells in my spreadsheet. I'd like to be able to go back
to the previous input if possible. If there's another way to create
something like this other than Inputboxes than those suggestions are
welcome as well.

Thanks in advance!

Joel


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 692
Default buttons on InputBox

The easiest way is to go into the VBE editor and construct a user form.
You can design in all kinds of inputs and buttons and selections, and .....

go here for some help on forms...
http://www.contextures.com/xlUserForm01.html

--
steveB

Remove "AYN" from email to respond
"jojotherider"
wrote in message
...

Hi all,

I've spent a good portion of the day searching for an answer to my
question so I figured I'd just ask...

Is there a way to add additional buttons in an InputBox? Currently
there is only the 'OK' and 'Cancel' button.

What I'm trying to do is gather several different inputs to be entered
into different cells in my spreadsheet. I'd like to be able to go back
to the previous input if possible. If there's another way to create
something like this other than Inputboxes than those suggestions are
welcome as well.

Thanks in advance!

Joel


--
jojotherider
------------------------------------------------------------------------
jojotherider's Profile:
http://www.excelforum.com/member.php...o&userid=24548
View this thread: http://www.excelforum.com/showthread...hreadid=386609



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default buttons on InputBox


Hello,

Thanks for your answers both of you. I was hoping there was anothe
way aside from UserForms as that is a pretty new piece to me. ;)
Sounds like that's probably what I'll be looking at.

I'll take a look into each of the websites you have suggested.
Hopefully I'll be able to figure it out. I do have one question thoug
(maybe I'll be able to find an answer within those websites), how ba
would it be to have multiple userforms in one workbook? Initially, I'
thinking there will be at least 18 .

Here's what I'm doing. I have a spreadsheet that people use to fil
out information, but a lot of the time, they leave out lots o
information. In order to simplify the process, I'm creating a macro t
'interview' the user for the information I need. Initially my plan wa
to use InputBoxes to get the info, but it seems that it's a bit mor
difficult than that. UserForms are most likely the way to go, but wil
having multiple userforms slow down opening my file? Most likely, I'l
end up combining some pieces into one form.

Thanks for your help!

Joe

--
jojotheride
-----------------------------------------------------------------------
jojotherider's Profile: http://www.excelforum.com/member.php...fo&userid=2454
View this thread: http://www.excelforum.com/showthread.php?threadid=38660

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 158
Default buttons on InputBox

Hi Joel,

18 user forms is fine. I wouldn't call it ideal for what is ostensibly
an information gathering tool but it shouldn't make your filesize too big.

I would vary your approach depending on what you're doing, type of
information etc. (do you need just text or dates, text and numbers for
example). A few options.

(1) Just one userform.
There's no reason why you can't have just one form with Previous and
Next buttons, an instructions label, a textbox and (maybe) a label
showing "Step X of 18".

When the user clicks next you update your counter (X) so you know what
to display, the instructions, the step label, where to store the entered
data, how to check an entry, how to reply should they enter something
unacceptable etc.

Obviously, when you get to step 18 you will change the Next button's
caption to "Finish".

(2) 18 userforms. Well, it's your original idea so I won't describe it
here, just be aware that... should you decide to, say, change the size
of the form, you have to change 18. That could end up being a real pain.
I wouldn't do this!

(3) Multiple field form. Personally, as an end user, I think I would
prefer this method. It's nice to be able to see everything you've
entered in one go. If you can't fit everything on one form then you
could always use, say, 3 different forms with 6 fields. Even the same
form but change it 3 times (a la Step 1).

Sounds like a fun project.

Good luck.

Gareth




jojotherider wrote:
Hello,

Thanks for your answers both of you. I was hoping there was another
way aside from UserForms as that is a pretty new piece to me. ;)
Sounds like that's probably what I'll be looking at.

I'll take a look into each of the websites you have suggested.
Hopefully I'll be able to figure it out. I do have one question though
(maybe I'll be able to find an answer within those websites), how bad
would it be to have multiple userforms in one workbook? Initially, I'm
thinking there will be at least 18 .

Here's what I'm doing. I have a spreadsheet that people use to fill
out information, but a lot of the time, they leave out lots of
information. In order to simplify the process, I'm creating a macro to
'interview' the user for the information I need. Initially my plan was
to use InputBoxes to get the info, but it seems that it's a bit more
difficult than that. UserForms are most likely the way to go, but will
having multiple userforms slow down opening my file? Most likely, I'll
end up combining some pieces into one form.

Thanks for your help!

Joel


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Option Buttons/Radio Buttons John Calder New Users to Excel 7 May 16th 08 03:51 AM
Form buttons vs. ActiveX Buttons GeorgeJ Excel Discussion (Misc queries) 3 August 11th 07 09:02 PM
have toggle buttons but everytime print preview buttons move TinSandhu Excel Discussion (Misc queries) 1 October 11th 06 02:57 PM
Inputbox and Application.InputBox Maria[_7_] Excel Programming 1 September 20th 04 11:36 AM
Control Buttons vs. Command Buttons Robert Gibson Excel Programming 1 October 13th 03 04:33 PM


All times are GMT +1. The time now is 10:28 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"