Hi,
I am using a simple code that open a file open dialog and i am working in wxWidgets so i make a file test.mm file.
but i have problem here that when get open dialog and try to press / to paste a file path it do not allow me to paste path using key cmd+v
What may be the reason do not know ?
Please help
Yogesh
I am using a simple code that open a file open dialog and i am working in wxWidgets so i make a file test.mm file.
Code:
NSOpenPanel* openPanel = [NSOpenPanel openPanel];
// ask the user for file
[openPanel setAllowsMultipleSelection:YES];
[openPanel setDelegate:self];
[openPanel setTitle:@"Choose some AIFF files to burn onto CD."];
[openPanel setPrompt:@"Select"];
if ([openPanel runModalForTypes:nil] == NSOKButton)
{
/// Some code here
}
but i have problem here that when get open dialog and try to press / to paste a file path it do not allow me to paste path using key cmd+v
What may be the reason do not know ?
Please help
Yogesh
Last edited by a moderator: