Okies, I've got a couple of questions this time.
1: How can I create keyboard "hotkey" shortcuts, you know, like Ctrl+S, Ctrl+O, that kind of thing.
2: After you've created a menu using CreateMenu(), is it possible to remove that menu later in the program's execution? So for instance:
In this example, is it possible to remove the menu item Menu_File_Open later in the program, and if so, how?
3: Is there any way to select/highlight certain blocks of a text in a Text Area gadget?
4: If the user selects a block of text inside a Text Area gadget, is it possible to "read" the highlighted text?
5: When checking to see if a key has been typed inside a Text Area gadget, is it possible to find out exactly which key was pressed?
Thanks in advance everyone; Ciao!
1: How can I create keyboard "hotkey" shortcuts, you know, like Ctrl+S, Ctrl+O, that kind of thing.
2: After you've created a menu using CreateMenu(), is it possible to remove that menu later in the program's execution? So for instance:
Global MainWindowMenu = CreateWindowMenu(MainWindow) Global Menu_File = CreateMenu("File",100,MainWindowMenu) Global Menu_File_Open = CreateMenu("Open File...",101,Menu_File)
In this example, is it possible to remove the menu item Menu_File_Open later in the program, and if so, how?
3: Is there any way to select/highlight certain blocks of a text in a Text Area gadget?
4: If the user selects a block of text inside a Text Area gadget, is it possible to "read" the highlighted text?
5: When checking to see if a key has been typed inside a Text Area gadget, is it possible to find out exactly which key was pressed?
Thanks in advance everyone; Ciao!