CStr
Using the CStr Function
In this tutorial you will learn how to use the CStr Function.
The CStr function returns a String.
=CStr( expression )
expression the value you wish to convert to a string
FORM
In a Form you could set the Default Value of a Textbox to
=CSTR(12)
VBA
In a Form add a TEXTBOX control and rename it "txtCStr", then you could add the following in the Load Event.
Private Sub Form_Load()
txtCStr = CStr(12)
End Sub
Course
Access Expert 14
Seminars
Access Data Encryption
|
Access SQL 2
Search
You can find more about this by searching the website.
By: Alex Hedley
Click here to sign up for more FREE tips
|