TWIAV - Tips & tricks

TWIAV - Tips & tricks

MapBasic Code Samples


On this page you will find some MapBasic code samples, both the program source and the compiled application. Everything on this page is offered "as is" without warranty of any kind, either expressed or implied, including limitation warranties of merchantability, fitness for a particular purpose, and noninfringement.


Unless otherwise stated MapBasic 9.0 has been used to compile the files - this means that the MBXs offered here will only run with MapInfo Professional 9.0 or higher. If you want to use the tools with another (an older) version of MapInfo Professional, you will have to compile the tool using the relevant version of the Mapbasic compiler.


The MapBasic Code Samples Project


The goal of this project is to provide some examples of how to use certain MapBasic functionality - not to offer full-blown applications. The applications below each focus on one 'trick'. You can study the source, modify it to suit your needs and implement it in your own apps.


The following code samples are available here:





EventHandler Sample Code


This application demonstrates how to use the event handlers WinFocusChangedHandler and WinClosedHandler.

The My Own Toolbutton Button on the EventHandler Toolbar will be enabled or disabled, depending on whether a Map Window has the focus or not.

Please note:

  • When you close a Map Window while there are still other document windows open, the focus will automatically shift to another document window and in this case the WinFocusChangedHandler procedure is called.

  • When you close a Map Window while there are no other document windows open the WinClosedHandler procedure is called. If you omit the WinClosedHandler procedure the ToolButton in this case will remain enabled without a Map Window being open/having the focus.

Please see the file below for EventHandler.MB and EventHandler.MBX.

 EventHandler.zip

Custom toolbar button and custom cursor


In the application a custom toolbar button and a custom cursor is used. This button and cursor are stored in the file Bird.dll (included in the zip file).


The file Bird.dll has been created with Pelles C. In this document you will find a step by step description on how to do this: from creating a new DLL from scratch, store bitmaps in it and call it from your MapBasic application.


The WinFocusChangedHandler and WinClosedHandler procedures







More code samples will follow...;-)



What do you think of these code samples? If you have any , please let me know.