Hi All, One of my users asked why my app does not support semi-colons in filenames. I stepped through my code, seems Windows function GetOpenFileName truncates any filename containing a semi-colon. e.g. "one;two.wav" -> "one".
Microsoft says colons are not allowed, but don't mention semi-colons...
http://msdn.microsoft.com/en-us/library/aa365247(VS.85).aspx
Are they legal or not?
EDIT: ..and how to GetOpenFileName() to work with semi-colons in filename?
OH!, Weird - Filename is correct, except 'scrolled' off to the left. So "one;two.wav" looks like "two.wav" until I click it and press left-arrow (then it's fine). So it's not a bug as such, only weird behaviour.