Skip to main content

Workflow Design Form Convert Case Textbox

Comments

4 comments

  • Permanently deleted user

    I believe you can use this below I think workflow just uses VB syntax 

    (StrConv([var],VbStrConv.UpperCase))

     

     
    0
  • Permanently deleted user

    Thanks,

    It seems like the logic place would be in the QueryTask where clause but I cannot get it to work trying various permutations.

    0
  • Permanently deleted user

    You could try using the A>B Assign method in the Common Server group.  It allows you to assign variables using VB.  But I still can't get it to work with the following expression:

    StrConv(DistrictName.ToString(), VbStrConv.LowerCase)

    DistrictName is an object

    I tried it with a string variable and that doesn't work either. 

     

    0
  • Permanently deleted user

    To convert a string's case just use:

    myString.ToUpper() or myString.ToLower()

    You can even convert an object to a string and change its case in one line -- no need to use an assignment step:

    myObject.ToString().ToUpper()

    0

Please sign in to leave a comment.