List of Contributions

Alex Eastwood

This individual is no longer active. Application functionality related to this individual is limited.

Contact Details

My Content

1 to 14 of 14 total
Posted By Alex Eastwood 01-17-2018 06:35
Found In Egroup: MapInfo Pro Developers User Group
\ view thread
Hi Peter, your script works in 15.0.1, as it does when running the Shade statement from the MapBasic window. Mine is pretty much identical to yours (see my first post), and I have also tried running this without the run command but still the same result. Ive now altered the code in the main program ...
Posted By Alex Eastwood 01-16-2018 09:24
Found In Egroup: MapInfo Pro Developers User Group
\ view thread
Hi Peter! I didnt even even think of the possibility of this being down to preferences but that could explain the difference between the two MapInfos. Ive toggled the Draw Layers Under Themes switch on and off (was off to start with - and restarted MapInfo each time) but unfortunately this hasnt made ...
Posted By Alex Eastwood 01-15-2018 16:50
Found In Egroup: MapInfo Pro Developers User Group
\ view thread
Hi all,   not sure if 32-bit issues are still going to be looked in to, but for my peace of mind at least... Long story short, the following Shade statement is dynamically built up as a string and then executed as a run command: Shade triangles with colcode Values 1 Brush (1, 16711680) Pen ...
Posted By Alex Eastwood 12-18-2017 15:28
Found In Egroup: MapInfo Pro Developers User Group
\ view thread
I was trying to run a simple command from the MapBasic window, the relevant section in the Help manual (Issuing Commands through the MapBasic Window) wrongly states that to execute a command you hit Enter. I finally worked out that it is in fact Ctrl + Enter
Posted By Alex Eastwood 12-18-2017 10:57
Found In Egroup: MapInfo Pro Developers User Group
\ view thread
Hi John, ah - wasnt aware of the settings. Thanks for the pointer!
Posted By Alex Eastwood 11-23-2017 05:14
Found In Egroup: MapInfo Pro Developers User Group
\ view thread
Hi, sounds good to me, thanks. If you want me to run any more tests let me know. Here some version information: MapInfo Pro v15.0.1 (though we will only ship the database-enabled application with v17) and PostgreSQL v9.5. PostgreSQL 32-bit ANSI v8.04.02.00 driver. Alex
Posted By Alex Eastwood 11-22-2017 12:34
Found In Egroup: MapInfo Pro Developers User Group
\ view thread
Hi John,   just spent a bit of time playing around with this. In order to replicate the working environment, I have performed these tests via MapBasic scripts compiled to .mbx and then run, as opposed to doing everything from the MapBasic window in MapInfo. If I leave my driver settings as they ...
Posted By Alex Eastwood 11-15-2017 10:46
Found In Egroup: MapInfo Pro Developers User Group
\ view thread
Hi John,   I appreciate you looking in to this and re-evaluating the bug priority. Ive been pretty busy working on other stuff but I will take a closer look at this soon and get back to you with a more detailed response!   Many thanks,   Alex
Posted By Alex Eastwood 11-14-2017 05:42
Found In Egroup: MapInfo Pro Developers User Group
\ view thread
Hi John, many thanks for this, Id only looked at the driver settings within MapInfo/EasyLoader and not the control panel. The thing I said about the workaround was just that if you simply upload a table to the database, the logical column is converted to char(1), but the actual values are lost, ...
Posted By Alex Eastwood 11-09-2017 11:20
Found In Egroup: MapInfo Pro Developers User Group
\ view thread
Hi all,   Im hoping to revive this issue that I previously reported on MapInfo-L (https://groups.google.com/forum/#!searchin/mapinfo-l/alex$20eastwood%7Csort:date/mapinfo-l/nG0kIGQ4iLA/7lOak0YWAwAJ). Im developing a PostgreSQL/PostGIS backend for our MapInfo application, the database backend will ...
Posted By Alex Eastwood 10-19-2017 09:43
Found In Egroup: MapInfo Pro Developers User Group
\ view thread
Hi Peter,   Re multi-user, thanks for pointing that out! Not sure if I would have thought of that in time and could have caused some problems down the line. Sending the comma separated string didnt seem like a very clean way of doing it and as you point out would have failed if it becomes too ...
Posted By Alex Eastwood 10-19-2017 07:51
Found In Egroup: MapInfo Pro Developers User Group
\ view thread
actually I think I just worked this one out: Ill create an empty table in the database, open it locally, then insert the records from Item_Refs_To_Copy, at which point I can save the local table which will be reflected in the database, so I can make Select Where In statements
Posted By Alex Eastwood 10-18-2017 15:17
Found In Egroup: MapInfo Pro Developers User Group
\ view thread
Im developing a PostgreSQL/PostGIS backend for a MapInfo application. One of the procedures available to users is to select items on the map (from a table `orders` stored in the database) and then copy the selected items in to a different table (`proposed_order` - also stored in the database). In the ...