![]() |
easy question : textbox
Hello there...
I want to use a textbox to make people enter their info into m worksheet. problem is : it been about 5 years since i last used vb AN i never used it in excell.... thus the question : How do you make a textbox in excell ? How do you make it appear wenever someone clik in the right cell ? thanks a lot Ya -- Message posted from http://www.ExcelForum.com |
easy question : textbox
hehe sorry i might not have been all that clear (as you probabl
figured now im not all that good in english) by text box i meant a box in wich the user can enter text... as i a able to get msgbox but not "textbox"... cause i dont know what it cal lo -- Message posted from http://www.ExcelForum.com |
easy question : textbox
Hi
use inputbox or application.inputbox -- Regards Frank Kabel Frankfurt, Germany hehe sorry i might not have been all that clear (as you probably figured now im not all that good in english) by text box i meant a box in wich the user can enter text... as i am able to get msgbox but not "textbox"... cause i dont know what it call lol --- Message posted from http://www.ExcelForum.com/ |
easy question : textbox
InputBox
ans = InputBox("Please enter your name") -- Regards, Tom Ogilvy "Yan Robidoux " wrote in message ... hehe sorry i might not have been all that clear (as you probably figured now im not all that good in english) by text box i meant a box in wich the user can enter text... as i am able to get msgbox but not "textbox"... cause i dont know what it call lol --- Message posted from http://www.ExcelForum.com/ |
easy question : textbox
Got it.... now i can make it appear wenever i open or close
worksheet... but i would like to make it appear wenever i select specific cell in the sheet... let say h3 ... how can i do that ? there must be a way but my vb programming is so far away..... thanks for the previous answer and thank ahead for the next answer ;-) PS: oh ! and tom you can post your answer only one time it enough :- just kidding..... thank it was of great hel -- Message posted from http://www.ExcelForum.com |
easy question : textbox
Hi
use the selection_change event (event procedures: see: http://cpearson.com/excel/events.htm). In your case try: Private Sub Worksheet_SelectionChange(ByVal Target As Range) Dim res If Intersect(Target, Me.Range("B3")) Is Nothing Then Exit Sub Application.EnableEvents = False res = InputBox("Enter a value") Target.Value = res Application.EnableEvents = True End Sub Put this in your worksheet module (not in a standard module) -- Regards Frank Kabel Frankfurt, Germany Got it.... now i can make it appear wenever i open or close a worksheet... but i would like to make it appear wenever i select a specific cell in the sheet... let say h3 ... how can i do that ? there must be a way but my vb programming is soo far away..... thanks for the previous answer and thank ahead for the next answer ;-) PS: oh ! and tom you can post your answer only one time it enough :-) just kidding..... thank it was of great help --- Message posted from http://www.ExcelForum.com/ |
easy question : textbox
|
All times are GMT +1. The time now is 02:52 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com