Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I want to make a splash screen with text box 1 showing the contents of cell
c 12 on my worksheet How do I code this please Thanks in advance Greg |
#2
![]() |
|||
|
|||
![]()
Create a userform, and add a textbox and this code
Private Sub UserForm_Activate() TextBox1.Text = Worksheets("Sheet1").Range("C12").Value Application.OnTime Now + TimeSerial(0, 0, 5), "CloseForm" End Sub and in a general code module add this Sub CloseForm() Unload UserForm1 End Sub This will display the form for 5 seconds -- HTH RP (remove nothere from the email address if mailing direct) "Greg B..." wrote in message ... I want to make a splash screen with text box 1 showing the contents of cell c 12 on my worksheet How do I code this please Thanks in advance Greg |
#3
![]() |
|||
|
|||
![]()
Thanks once again exactly what I needed to know
Greg |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Sort or Filter option? | Excel Worksheet Functions | |||
Converting Numbers to Text properly | Excel Discussion (Misc queries) | |||
Why is my text changing to pound signs? | Excel Discussion (Misc queries) | |||
Read Text File into Excel Using VBA | Excel Discussion (Misc queries) | |||
Macro or Function to make text size to suite text Length? | Excel Discussion (Misc queries) |