Hot answers tagged mapinfo
4
Have you checked the TAB file itself? Right click on the saved .TAB file and open in Notepad or another basic text editor and see what the version number it has saved in the top is. It should look something like this.
!table
!version 450
!charset WindowsLatin1
If it says !version1050 then it might be worth changing that to !version850 (make sure you make ...
3
A seamless table is an index table referencing other MapInfo tables (raster and/or vector) thru these tables MBR, Minimum Bounding Rectangle.
If you open a seamless table into a map window in MapInfo Professional you will not see the data from the table itself, but MapInfo Professional will open the tables which MBR is inside the current view of the map.
...
2
Open the MapBasic window (from the Option menu)
Select you polygon
Run these statements from the MapBasic window. Simple copy & paste them into the MapBasic window, hightlight all the lines and hit enter. Do replace "PIPES" with the name of your table.
Fetch First From Selection
Dim oSel As Object
oSel = Selection.OBJ
Select ...
2
Your dialog has at least three controls:
A Edit text control with an ID
A Button with the title "Browse"
A OKButton with the title "Upload"
When you click the Browse button you should call a handler (a sub procedure) where you use the FileOpenDlg() function to ask the user to pick a file of a certain type.
Then you should add the selected file name to ...
1
You just need to have a Calling statemet after each menu item, like this.
Sub Main
Create Menu "Test" ID "12" As
"Preferences" Calling Prefs,
"Leads" Calling Leads,
"LeadsRemain" Calling LeadsRemain,
"Accts" Calling Accts,
"AcctsRemain Calling AcctsRemain "
Alter Menu Bar Add "Test"
End Sub
And a Sub Routine ...
1
Look at the NME project
With it, you can have all metadata supported by GDAL referenced in an XML (also an SQL output options) using the python script gdalogr_catalogue.py with a command like below
python gdalogr_catalogue.py -d /home/my_directory
After, it's up to you to adapt the retrieved XML from this utility to be able to compare it with anzlic ...
Only top voted, non community-wiki answers of a minimum length are eligible