Exforsys
+ Reply to Thread
Results 1 to 2 of 2

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 ...

  1. #1
    ajeshjohn is offline Junior Member Array
    Join Date
    Sep 2006
    Answers
    1

    Post 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


  2. #2
    PortisHead is offline Junior Member Array
    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


Latest Article

Network Security Risk Assessment and Measurement

Read More...