Change the caption of SIebel Control
This is a discussion on Change the caption of SIebel Control within the Siebel forums, part of the ERP category; Hello All, I have a requirement to change the caption of a siebel control. Can anyone please tell me how ...
-
Change the caption of SIebel Control
Hello All,
I have a requirement to change the caption of a siebel control. Can anyone please tell me how to do that using an ActiveX Control/DLL?
Thanks,
Ajesh
-
11-24-2006, 03:55 AM #2
- Join Date
- Nov 2006
- Answers
- 1
Answer
Hello,
you can use the windows API functions CharLower or CharUpper
I send you a little example of how to use them....
'In general section
Private Declare Function CharLower Lib "user32" Alias "CharLowerA" (ByVal lpsz As String) As Long
Private Declare Function CharUpper Lib "user32" Alias "CharUpperA" (ByVal lpsz As String) As Long
Sub xxxx()
Dim strSave As String, Upper As String, Lower As String
'This is the string we're going to use
strSave = "This is a test !"
'Print the original
Msgbox "Original: " + strSave
'Convert all the characters to uppercase (like the UCase$-function from VB)
CharUpper strSave
Msgbox "Upper Case:" + strSave
'Convert all the characters to lowercase (like the LCase$-function from VB)
CharLower strSave
Msgbox "Lower Case:" + strSave
End Sub
Ok ?
Hope I helped you
«
adding Date
|
Implementation
»


Reply With Quote





