Hello,
I'm lacking sincere help with my vbscript class. I'm behind, and need to catch up on some really basic stuff. I hope I don't bug you guys too much, but I feel like a large forum such as this may be my only hope of getting quick, intelligent answers.
1st Question...
I'm creating a basic windows application, but I need to combine the existing title bar text... "Sale Calculator" as identified in the properties field, with a LongDateString in the title bar. I'm now able to do just the LongDateString using this code:
Dim BookSalesForm As DateTime= date.now
Me.Text = CStr(BookSalesForm.ToLongDateString)
This provides a title bar of "Sunday, March 01, 2009"
I would like it to Display "Sale Calculator, Sunday, March 01, 2009" But using the text in the form properties as the reference for "Sale Calculator"
2nd Question...
How does one set access keys to particular buttons in the properties field? Basically I want the sales "btncalculator" to be automated by pressing the button "C"
Thanks!
P.S.
I'm not super familiar with these forums, so if I'm lacking in question etiquette please direct me to the appropriate question format or forum to pose these questions. Thanks again.