Hi,
I have difficulty to format my string with UltraWinGrid.UltraCombo
My column was type of "String"
Data is "405040" and I want to look like "40-5040" I want to add "-" after 2 digits.
I try .bands(0).Columns("Code").Format = "!!-!!!!" is don't work.
thank.
Francois.
Hello GIPFG,
Please refer to the following link below to manage custom filters.
decimal value = 405040;Console.WriteLine(value.ToString("##-####"));
http://msdn.microsoft.com/en-us/library/0c899ak8.aspx
Hi Michael,
I know this fonction.
But I fill my datasource with list of object and one column is a string value not decimal or integer.
I want to put mask to this column to add "-" after the second caracter.