A family of Microsoft relational database management systems designed for ease of use.
I applied your code to the Forms - which worded Great
Public Function ConvertToCaps(ByRef KeyAscii As Integer)
' Converts text typed into control to upper case
Dim strCharacter As String
' Convert ANSI value to character string.
strCharacter = Chr(KeyAscii)
' Convert character to upper case, then to ANSI value.
KeyAscii = Asc(UCase(strCharacter))
End Function
Then in the KeyPress event procedure of the control in question put:
ConvertToCaps KeyAscii
Below is From a Previous post of yours.
At table level the only way I can think of would be to execute a data macro which executes an SQL UPDATE statement when a new row is inserted into each table.
I like this idea! Not sure what to put in the SQL Update statement or can I use the Access provided builder - not sure how to make it happen her. I can do it in the After Insert and or After Update
but not sure of the next steps to Convert it to All Caps.
I am looking at the Design Ribbon(Tab) of the Table and see Create Data Macros with After Insert , After Update ... not sure how to Build it with the Macro Tools Screen that comes up after that.
Thanks for Helping!!!
bkel