this time i will show you on how to capitalize every first letter of a word in a Text box Control,
follow the codes below:
This code will write on a module as a function just copy and paste on a module
Public capT As Object
Public Sub cap(frm As Form)
cr = vbCrLf
For Each capT In frm.Controls
If TypeOf capT Is vkTextBox Then
t = capT.Text
If t <> "" Then
...

0 Comments