I have a UserControl which Inherits Listiview and I am tying to figure out how to localize the column headers.
I have looked at Localization at runtime, but it's not getting me where I need to go.
I create my inherited listviews at runtime, so I somewhow need to iterate the column collection and apply the appropriate localization.
Prior to the Form Intialize, I use Thread.CurrentThread.CurrentUICulture = New CultureInfo(sLang) and this works successfully on all the form's static controls in changing all the text, but not on my dynamically added listviews' columns.
???
Thanks