Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 24
Default TextBox Coding Help

HI Tom,

Thanks SO much for your reply. In the interim I got just about as far
as you described. I can get it to display when I run it but not when I
File menu, New and create a new workbook based on my template.

Here is the code so far:

In Module 1:
Sub ShowForm()
UserForm1.Show
End Sub

In UserForm:
Private Sub CommandButton1_Click()

'Insert text from textboxes into cells
With ActiveDocument
Worksheets("Sheet1").Range("A1") = TextBox1.Text
Worksheets("Sheet1").Range("A3") = TextBox2.Text

End With

UserForm1.Hide

End Sub
It works and enters the values into the cells but I can't get it to
launch the userform when I File menu, New, choose the templates and
click OK.

Any hints?

THANKS SO MUCH!!! Next I have to tackle combo boxes as I have to create
a purchase order workbook! Yikes.

Shauna


*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default TextBox Coding Help

in the vbe, look in the project explorer and find the ThisWorkboook item
under you project. Right click on that and select view code.

In the left dropdown, select workbook
in the right dropdown, select Open

Private Sub Workbook_Open()

End sub

Call you macro i this event - the workbook_open event

Private Sub Workbook_Open()
If ThisWorkbook.Path = "" then
ShowForm
end if
End sub


This event fires when the workbook is opened.

In your code, you don't need

With ActiveDocument


End With

1) you don't use it
2) there is no activedocument in Excel - this is a Word concept. there is
an activeSheet, but you have specified the sheet already.

--
Regards,
Tom Ogilvy



Shauna Koppang wrote in message
...
HI Tom,

Thanks SO much for your reply. In the interim I got just about as far
as you described. I can get it to display when I run it but not when I
File menu, New and create a new workbook based on my template.

Here is the code so far:

In Module 1:
Sub ShowForm()
UserForm1.Show
End Sub

In UserForm:
Private Sub CommandButton1_Click()

'Insert text from textboxes into cells
With ActiveDocument
Worksheets("Sheet1").Range("A1") = TextBox1.Text
Worksheets("Sheet1").Range("A3") = TextBox2.Text

End With

UserForm1.Hide

End Sub
It works and enters the values into the cells but I can't get it to
launch the userform when I File menu, New, choose the templates and
click OK.

Any hints?

THANKS SO MUCH!!! Next I have to tackle combo boxes as I have to create
a purchase order workbook! Yikes.

Shauna


*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 24
Default TextBox Coding Help


Hi Tom,

Again THANKS SO MUCH for your help. Got it working now. My next task
today is to develop a listbox or ComboBox that then links to a VLookup
table in the same workbook on another sheet. I remember glimpsing some
coding in my search for text box coding. Any hints on this or where to
look?

I will dilligently be searching for this coding this morning. Just for
a background I have been given a project to create a combination
Purchase Order/Accounts Payable Voucher workbook where the purchasing
agent fills in most of the information on the Purchase order and it
links to fields in the AP Voucher. Lots of pick lists and VLookup tables
which I can do, but they would like it automated with a Userform to help
the fill-in process. Hence my struggles... particularly seeing I an a
rank VB beginner. So thanks for your patience:-)

Shauna


*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
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
Calculate Textbox value based on another textbox value.doc Tdungate Excel Discussion (Misc queries) 1 February 12th 09 07:11 PM
Calculate Textbox value based on another textbox value Tdungate Excel Discussion (Misc queries) 0 February 12th 09 07:03 PM
sum by coding [email protected] New Users to Excel 1 February 27th 08 01:12 PM
TextBox Coding Help Shauna Koppang Excel Programming 2 August 20th 03 01:46 AM
UserForm TextBox to ActiveSheet TextBox over 256 characters Dan E[_2_] Excel Programming 1 July 28th 03 07:36 PM


All times are GMT +1. The time now is 01:55 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"