can i change my mouse icon in froms?

kekewong

Registered User.
Local time
Today, 06:07
Joined
Apr 9, 2008
Messages
24
can i change my mouse cursor in froms??? And i want to ask another question , When input a data in forms, i want the result to be the first word to be uppercase.. Example, i write "kekewong", then result will be "Kekewong".
 
Simple Software Solutions

In answer to your second question : on the after update event of your text box enter:

Code:
Me.ActiveContol = StrConv(Me.ActiveControl,3)

For you first question what do you want to change your to? and why?

CodeMaster::cool:
 
For the first question, i just want to customize the forms with changing the mouse cursor inside the forms . Just for beautifying purpose n_n
 
Just a dumb question, does ActiveControl mean the name of the field where you are netering the data?? So you need to rename.

Me.ActiveContol = StrConv(Me.ActiveControl,3)
 
Simple Software Solutions

ActiveControl is a psuedonom for the current field you ar coding. You can name the field if you like but by using the ActiveControl naming convention you can easily cut and paste the code to different text boxes and it works for them all

CodeMaster:cool:
 

Users who are viewing this thread

Back
Top Bottom