RE: MI-L Odd Even Integers - Problem!

2004-08-10 Thread Solominides, Peter
Dear List, After taking in your solutions to the problem of recognising even and odd integers, I integrated it into the code I already had. Now when I try to select even and odd numbers, between certain values, in the Building column, MapInfo displays an error message telling me the

MI-L Ang. MI-L Behaviour of ECW/ERS files in Mapinfo

2004-08-10 Thread Mats Elfström
Hear, hear! The same goes for GeoTiffs which are of no use in MapInfo. FYI, the inadequacy persists in v7.5 One possible explanation for the choice (has to be - not an oversight) is the way MI handles the relation vector to raster, i e by warping the vector data. This approach of course

MI-L Copying objs from one table to another

2004-08-10 Thread Pablo Ramos
Hi listers, well my question is next, i have a Mapbasic program which has two tables named T1 and T2. I want to update the field T1.obj with the value in the field T2, the logical instruction would be: UPDATE T1 SET T1.obj = T2.obj but Mapinfo throws an exception saying that variable or

RE: MI-L Mapinfo Pro v8.0

2004-08-10 Thread Peter Horsbøll Møller
And it will not be .NET but based on the old/existing code base. I guess it a big job to transport MapInfo Pro to .NET, and I'm glad that they don't push it and send out a MapInfo Pro that can't live up to the existing version. Just my 5 cents Peter Horsbøll Møller GIS Developer Geographical

RE: MI-L Odd Even Integers - Problem!

2004-08-10 Thread Peter Horsbll Mller
Try these ideas as shown in the code below: - Select the record to update into a named query (here TO__BE__UPDATED) - Use the NoSelect keyword to avoid the highlighting of the selection (unless you need it ?) - Check that there actually has been selected some records to update (If

MI-L Routing software inquiry

2004-08-10 Thread Gilbert Haché
Hi I want to update my knowledge base on routing software like routing J server, Chronomap, etc. with a survey You are welcome to send me your feedback on different packages both for Mapinfo Pro or MapXtreme application. I will summarize the result... Gilbert Haché Solutions

MI-L Mapbasic

2004-08-10 Thread Jeff Card
I have a question regarding automating a couple steps of a project I am working on using Mapbasic. I have a familiarity with MB and a little programming knowledge. Here is what I am trying to do: I have a table of grids where I am creating an image for each grid. What I have been doing is

Re: MI-L Routing software inquiry

2004-08-10 Thread Uffe Kousgaard
Hello Gilbert, Remember to include RouteFinder for MapInfo, RW Net and RW NetServer in your survey. We will have a live test version of the MapXtreme + RW NetServer combination available on our website shortly. Kind regards Uffe Kousgaard www.routeware.dk - Original Message - From:

RE: MI-L Mapbasic

2004-08-10 Thread Pieter Ouwerkerk
Jeff, I think that the easiest way would be to add the selection as a layer to the current mapper and zoom to that layer. This would result in something like this: Add Map Layer MyTemporaryTable Set Map Zoom Entire Layer MyTemporaryTable '... Put your code for creating the image here Close

Re: MI-L Ang. MI-L Behaviour of ECW/ERS files in Mapinfo

2004-08-10 Thread Mark Neuhaus
Hi Mats, The same goes for GeoTiffs which are of no use in MapInfo. FYI, the inadequacy persists in v7.5 Are you saying that a true GeoTiff, which by definition includes ALL projection and coordinate info in its header and doesn't need a tfw or other extraneous file, won't work for you? I'm

MI-L ADV: Retirement Sale - Global Database

2004-08-10 Thread Alan Pritchard
FOR SALE Unique global database of some 4.5 million populated places, together with ports, airports and railway stations. Uniquely selectable point data set. 3 million of the populated places are geocoded. Many records are enhanced with additional details such as province, lower level

RE: MI-L Copying objs from one table to another

2004-08-10 Thread Cummings, Mike
Mapinfo is looking for a value. You need to assign an alias for the object in T2 use the rowID for each table. dim o_t2 as alias dim i_t1, i_t2 as integer o_t2=T2.obj i_t1=t1.rowid i_t2=t2.rowid do while not eot(T1) update T1 set obj=o_T2 where i_t1=i_t2 loop -Original Message- From:

MI-L automating a selection and update

2004-08-10 Thread Kent_Treichel
I am building a ZIP4 point table from GDT ZIP4 data. For some records, the GDT product lists a single point with a ZIP4 range. The finished table will have a single record for each ZIP4. I have the syntax copied from the MapBasic window that works when I run it. select * from ZIP4 where