Uppercase text
-
I want the text that we key in in the vb form must in Uppercase.What is the method's?Help....................help............ Hi, i have create a program using VB6.The purpose of this program are for sales department person key in the data and then review by manager.Now, my problem is manager want me to create a command button to export the data from microsoft access to excel.What is the command button code and the step? Another Question,this program must set up in the office and all the staff can see and use this program at their own PC's!Thank for ur help!
-
I want the text that we key in in the vb form must in Uppercase.What is the method's?Help....................help............ Hi, i have create a program using VB6.The purpose of this program are for sales department person key in the data and then review by manager.Now, my problem is manager want me to create a command button to export the data from microsoft access to excel.What is the command button code and the step? Another Question,this program must set up in the office and all the staff can see and use this program at their own PC's!Thank for ur help!
hint : use
SetWindowLong
API passing the window handle of the text box andES_UPPERCASE
-
I want the text that we key in in the vb form must in Uppercase.What is the method's?Help....................help............ Hi, i have create a program using VB6.The purpose of this program are for sales department person key in the data and then review by manager.Now, my problem is manager want me to create a command button to export the data from microsoft access to excel.What is the command button code and the step? Another Question,this program must set up in the office and all the staff can see and use this program at their own PC's!Thank for ur help!
Why not just do it the simple way: in the keydown event just do a .toupper for the char and handle the event.