MI RE: MapInfo will not start

2000-06-05 Thread Justusson Christer

Hi!

The problem is because of the I Love You virus. Nothing is wrong with
MapInfo but with the profile on the server. Recreate it and it should work
fine.

Hope it helps.
Regards Christer

-Original Message-
From: Lavoie, Claude [mailto:[EMAIL PROTECTED]]
Sent: Friday, June 02, 2000 9:38 PM
To: '[EMAIL PROTECTED]'
Cc: Lalumiere, Jacques
Subject: MI: MapInfo will not start



MI 5.0 is installed one of our machines ( PIII-450, 128 meg RAM, NT 4.0,
SP4) in profile All Users.  It runs smoothly for a while, then upon
launching one day displays the message "(c:\program
files\mapinfo\professional\mapinfow.mnu:11) Unrecognized command: Workspace
..."; MapInfo then opens with the following message "The file MAPINFOW.MNU
is missing or damaged; MapInfo is unable to start. Please call Tech
Support".

I searched the archives and found a thread about a similar problem to which
Cindy, from MapInfo Tech Support, answered that the problem might lie in the
startup workspace.  I therefore deleted from it a RUN APPLICATION statement,
to no avail.

Any idea of what the problem is?

Thanks in advance,

_

Claude Lavoie, a.g.
Service du soutien à la clientèle
Direction des technologies de l'information
Ministère des Transports du Québec
35, rue de Port-Royal Est, salle 5.00 a
Montréal (Québec)
H3L 3T1

Téléphone:  (514) 873-6280
Télécopieur:(514) 873-8203
Courriel:   mailto:[EMAIL PROTECTED]
_

--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]

--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



MI REversing line direction

2000-06-05 Thread Danny Irwin

To all listers,

Thanks very much for your response regarding line direction reversal, 
it seems that there was an *.mbx already downloadable from the 
mapinfo-l ftp site.

Daniel Irwin
**
Traffic Director for London

This email and any files transmitted with it are private and 
intended solely for the use of the individual or entity to whom they   
are addressed.

This email does not constitute a commitment by TDfL.
**
Traffic Director for London
College House, Great Peter Street, London SW1P 3LN
Tel: 0207 222 4545  FAX: 0207 976 8640
**
--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



Re: exporting contour vector to .MIF

2000-06-05 Thread Max Fernandez

Hi Alberto,

maybe just a hint : If your table is stacked with records, try to find out in what
geo-reference the table is (projection and geographic expents): maybe your vectors
exist but outside the map window or whatever table you use as reference.

We had similar experiences here with another desktop GIS where it appeared that our
vectors of the southern hemisphere were mapping somewhere in the northern
hemisphere. During export, some mix-up happened netxween North / South and East /
West.



[EMAIL PROTECTED] wrote:

 I've been creating vector segments of elevation contours from a DEM using EASI,
 but am having trouble bringing these into Mapinfo. EASI exports the vectors
 fine; I've tried both direct to .MIF and also to E00, then .TAB via ArcLink. The
 problem lies on the Mapinfo side. After processing for a few minutes, a .TAB is
 created,but nothing appears in the map window. However, looking at the file in a
 browser shows that it is populated with records. Any suggestions are
 appreciated, and I'll collect and post any hints that come my way.

 I'm running MI Pro 5.5 and PCIWorks 6.3 on Windows NT 4.0

 Thanks,

 Alberto Reyes
 GIS/Remote Sensing Technician
 Kluane National Park
 ph. (867)634-2329 ext.270
 fax. (867)634-7277
 [EMAIL PROTECTED]

 --
 To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
 "unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]

--
*
Max Fernandez

   Departement Geologie, Koninklijk Museum voor Midden - Africa

   Département de Géologie, Musée royal de l'Afrique centrale
   Department of Geology, Royal Museum for Central Africa

Steenweg op Leuven, 13tl: +32 2 769 5431
B-3080 Tervuren   fx: +32 2 769 5432
Belgiumemail: [EMAIL PROTECTED]
*


--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



Re: MI: MapInfo will not start

2000-06-05 Thread brian . forrester



Claude,

I just received much the same message with Mapinfo running alongside a
Norton Anti-Virus Scan (never a great move, but I wasn't aware of it at the
time).

No solution, but maybe another clue?

Regards,

Briain Forrester
Wood Mackenzie
Edinburgh, Scotland
[EMAIL PROTECTED]

Your Message:
"MI 5.0 is installed one of our machines ( PIII-450, 128 meg RAM, NT 4.0,
SP4) in profile All Users.  It runs smoothly for a while, then upon
launching one day displays the message "(c:\program
files\mapinfo\professional\mapinfow.mnu:11) Unrecognized command:
Workspace
..."; MapInfo then opens with the following message "The file MAPINFOW.MNU
is missing or damaged; MapInfo is unable to start. Please call Tech
Support".

I searched the archives and found a thread about a similar problem to which
Cindy, from MapInfo Tech Support, answered that the problem might lie in
the
startup workspace.  I therefore deleted from it a RUN APPLICATION
statement,
to no avail.
"


--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



MI: Invoking MapInfo Pro from VB application

2000-06-05 Thread Paul Fildes

Dear all,

From my VB application I'd like to launch MapInfo Professional via a menu
item, and/or a toolbar. The problem I have is that my application when
running isn't going to know where MapInfo has been installed on the machine,
if at all. Can anybody please tell me how I can determine whether MapInfo
Pro. has been installed on a machine, and if so, how to launch it?.

I've already tried the following code, which apparently works for launching
"Excel", but it didn't work for MapInfo;

Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" _
(ByVal hWnd As Long, ByVal lpOperation As String, ByVal lpFile As
String, _
 ByVal lpParameters As String, ByVal lpDirectory As String, _
 ByVal nShowCmd As Long) As Long

Private Sub cmdLaunchMapInfo_Click()

   Dim ReturnedStatus As Long

'Launch MapInfo
   ReturnedStatus = ShellExecute(Me.hwnd, vbNull, "Mapinfo", vbNull, vbNull,
1)
End Sub

Thanks,
 
Paul Fildes   Phone: +44 121 643 6711
Technology Applications Group, Maunsell Ltd,  Fax:   +44 121 643 1357
Attwood House, 1 Worcester Walk,  Email: [EMAIL PROTECTED]
New Street, Birmingham B2 4NX, UK URL:   www.maunsell.co.uk
--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



MI Re: Invoking MapInfo Pro from VB application

2000-06-05 Thread ml

Paul,

try to use the Automation.

If MapInfo is properly installed this will work:

dim mapinfo as object
set mapinfo = CreateObject("Mapinfo.Application")
mapinfo.Visible = True


Look at the MapInfo documentation for integrated mapping for more.

Or ask the registry for the install-path for mapinfo.

Regards


Markus

- Original Message -
From: Paul Fildes [EMAIL PROTECTED]
To: MapInfo List [EMAIL PROTECTED]
Sent: Monday, June 05, 2000 11:50 AM
Subject: MI: Invoking MapInfo Pro from VB application


 Dear all,

 From my VB application I'd like to launch MapInfo Professional via a menu
 item, and/or a toolbar. The problem I have is that my application when
 running isn't going to know where MapInfo has been installed on the
machine,
 if at all. Can anybody please tell me how I can determine whether MapInfo
 Pro. has been installed on a machine, and if so, how to launch it?.

 I've already tried the following code, which apparently works for
launching
 "Excel", but it didn't work for MapInfo;

 Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" _
 (ByVal hWnd As Long, ByVal lpOperation As String, ByVal lpFile As
 String, _
  ByVal lpParameters As String, ByVal lpDirectory As String, _
  ByVal nShowCmd As Long) As Long

 Private Sub cmdLaunchMapInfo_Click()

Dim ReturnedStatus As Long

 'Launch MapInfo
ReturnedStatus = ShellExecute(Me.hwnd, vbNull, "Mapinfo", vbNull,
vbNull,
 1)
 End Sub

 Thanks,

 Paul Fildes   Phone: +44 121 643 6711
 Technology Applications Group, Maunsell Ltd,  Fax:   +44 121 643 1357
 Attwood House, 1 Worcester Walk,  Email: [EMAIL PROTECTED]
 New Street, Birmingham B2 4NX, UK URL:   www.maunsell.co.uk
 --
 To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
 "unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]


--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



MI Centroid XY

2000-06-05 Thread dheaney



I have a table that includes coordinates of various locatons in the formats of
DMS, Decimal, and UTM.  I have moved some of these locations and I want to use
the Centroid function to find the correct decimal format.  My problem:  When I
use the Update Column I consistanlty get my results in UTM.  The column I am
putting this data in is of the Float type.  Map Menu, Options, Coordinate
Units, I have chosen Degrees.  Can somebody please tell me what the problem may
be, and how to correct it?

Dennis Heaney
Verizon Wireless


--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



RE: MI Thematic mapping by name and numerical value

2000-06-05 Thread Jacques Paris

I did not find a straight answer such as the double thematic on regions
combining patterns and colors. I found two work-arounds each one with its
own draw back.

1 - a/ make a "color" thematic with "name" using a circle as a symbol.
b/ make a "size" thematic with "canopy" using a tramsparent circle as
symbol.
note: make sure that the size corresponding to the smallest canopy is not
smaller than the colored symbol.

2 - a/ convert points to circles of sizes proportionate to canopy radius. In
the MapBasic Window write and run
set coordsys table your_table
set distance units "unit_used_in_canopy"
update your_table set obj=createcircle(centroidx(obj),centroidy(obj),size)
b/ make a color thematic of these objects.
note: you may find safer to work on a copy of your original table.

I would love to hear there is a "better" way for doing it.

Jacques Paris

e-mailalternate
 [EMAIL PROTECTED]   [EMAIL PROTECTED]

paris PC Consult (mainly MapInfo app.)
 www.total.net/~rparis/gisproducts.htm
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Gabor Vasarhelyi
Sent: June 4, 2000 10:42 PM
To: '[EMAIL PROTECTED]'
Subject: MI Thematic mapping by name and numerical value


Dear listers,
I wish to thematically map trees by their scientific name and by their
canopy radius.
Currently the data is in the form of circles representing trees.  All of
these are uniform in radius.
These have a name and canopy radius fields.  When I attempt to colour by
species (individual thematic) and size by radius(using graduated thematic)
I only get the size changing but the colours don't. They do but I can't
merge the two variables.

Any ideas?
Can I resize the existing circles by the canopy field permanently?
And then colour them in a later process.

Cheers and thanks
Gabor Vasarhelyi
Environmental Resources Management Australia (ERM) Pty Ltd

Ph.  9906 1666
Fax  9906 5375



While ERM has systems in place to encourage a virus free software
environment, unfortunately the same cannot be said of the large number of
organisations from which we receive electronically issued products.  We
therefore recommend that files be checked prior to use.  While you can
expect us to be careful, in view of the above factors, we cannot be liable
for any loss or damage, corruption or distortion of electronically
transmitted information, or for any changes made to this information during
transferral or after receipt.


--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]

--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



MI Re: Invoking MapInfo Pro from VB application

2000-06-05 Thread Haibo [EMAIL PROTECTED]

Paul,

You may take a look at MapWizAX, an OCX control, which will make the
integrated mapping in VB much easier, esp. the callback function.

You can get it for a free trial at:

http://www.ducomsoft.com/mapwizax.htm

Regards,

Haibo Du
Ducom Software

-Original Message-
From: Paul Fildes [EMAIL PROTECTED]
To: MapInfo List [EMAIL PROTECTED]
Date: Monday, June 05, 2000 7:48 AM
Subject: MI: Invoking MapInfo Pro from VB application


Dear all,

From my VB application I'd like to launch MapInfo Professional via a menu
item, and/or a toolbar. The problem I have is that my application when
running isn't going to know where MapInfo has been installed on the
machine,
if at all. Can anybody please tell me how I can determine whether MapInfo
Pro. has been installed on a machine, and if so, how to launch it?.

I've already tried the following code, which apparently works for launching
"Excel", but it didn't work for MapInfo;

Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" _
(ByVal hWnd As Long, ByVal lpOperation As String, ByVal lpFile As
String, _
 ByVal lpParameters As String, ByVal lpDirectory As String, _
 ByVal nShowCmd As Long) As Long

Private Sub cmdLaunchMapInfo_Click()

   Dim ReturnedStatus As Long

'Launch MapInfo
   ReturnedStatus = ShellExecute(Me.hwnd, vbNull, "Mapinfo", vbNull,
vbNull,
1)
End Sub

Thanks,

Paul Fildes   Phone: +44 121 643 6711
Technology Applications Group, Maunsell Ltd,  Fax:   +44 121 643 1357
Attwood House, 1 Worcester Walk,  Email: [EMAIL PROTECTED]
New Street, Birmingham B2 4NX, UK URL:   www.maunsell.co.uk
--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]


--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



MI Important Information re Adobe Illustrator 9 MAPublisher

2000-06-05 Thread Ted Florence

Please excuse cross-posting of this important message
--

With the announcement that Adobe Illustrator 9.0 is beginning to ship,
all existing MAPublisher for Illustrator users as well as Adobe
Illustrator users contemplating purchasing MAPublisher should be aware
of the following:

1. MAPublisher 3.5 will work with Adobe Illustrator 9.0

BUT

2. Any map document created with MAPublisher in an earlier version of
Adobe Illustrator will fail to open correctly in Illustrator 9.0. The
document will display properly but all map attributes will fail to be
recognized by Illustrator 9.0. New MAPublisher documents created in
Illustrator 9 are not affected.

For a more complete statement please visit
http://www.avenza.com/special.ai9andmp.html

Thank you
--
Ted Florence
[EMAIL PROTECTED]

Take our survey at http://www.avenza.com/products.survey.html
MAPublisher - The true solution for cartographers and map-makers
Avenza Software (905) 567-2811 http://www.avenza.com
*
Developers of MAPublisher, MAPublisher-GPS  pdfPlus
Bridging the gap between your GIS and major graphics software


--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



Re: MI Centroid XY

2000-06-05 Thread Andrew_Dressel

I have a table that includes coordinates of various locatons in the
formats of
DMS, Decimal, and UTM.  I have moved some of these locations and I want to
use
the Centroid function to find the correct decimal format.  My problem:
When I
use the Update Column I consistanlty get my results in UTM.  The column I
am
putting this data in is of the Float type.  Map Menu, Options,
Coordinate
Units, I have chosen Degrees.  Can somebody please tell me what the
problem may
be, and how to correct it?

One way to accomplish this is with the MapBasic Window.
First, explicitly set the coordinate system to what you want. For example:

  Set CoordSys Earth Projection 13, 62, "m", 0

Then update the column with coordinates from that system:

  Update Test_Table Set x_column = CentroidX(obj)
  Update Test_Table Set y_column = CentroidY(obj)

You can easily get the coordsys clause to use by opening the MapBasic
window
and setting the map window to the coordsys that you want.

--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



Re: MI Grid file

2000-06-05 Thread Andrew_Dressel

Does anyone have experience of using either large grid files or tiled grid
files to represent, for example, elevation data?

We have some.

We're trying to determine the best way to distribute DEM data for use by
MapInfo Professional (without add-in's).  Options we've considered are:
(1)
points (2) square cells as regions and (3) .mig files.  Given around 10
million readings, option 1 would be bulky and option 2 even more so!

Specific questions on .mig files- (1) what is the size limit?  (2) is the
limit related to the IDW algorithm?  (3) are there alternative algorithms?
(4) has anyone written a .mig loader, say from a point file?

1. Based on the definition of these functions from the API, the size limit
appears to be about 2,147,483,648 x 2,147,483,648, but I'm sure practical
limitations become apparent long before that.

  BOOL GRIDENGFUNCTION GE_GetContinuousValue(GE_HGRID hGrid,
long lCol, long lRow, double *pdValue, unsigned char *puchIsNull);

  BOOL GRIDENGFUNCTION GE_GetDimensions(GE_HGRID hGrid, long *plWidth,
long *plHeight);

  BOOL GRIDENGFUNCTION GE_WriteContinuousValue(GE_HGRID hGrid,
long lCol, long lRow, double dValue);

2. No, the IDW algorithm is just one way to create a grid file.

3. I know that ESTI-Map in Moscow has written a TIN-based interpolator,
   and Mercator Geosystems has others.

4. MapInfo Professional 5.5 (and now 6.0) includes a DEM2GRID utility.

The complete API for the Grid Engine is available upon request.

--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



MI Sum Graph Wizard - table drop-down list

2000-06-05 Thread Steve Glennie

Thanks to Jason Adam for his explanation and help in making a table appear
on the table drop-down list in step 2 of the Create Graph Wizard.  For a
table to appear on this list, it must have at least one numeric column.
The table I wanted to graph did not appear on the graph wizard's table
drop-down list because it had only columns with character types and not the
'graphable' numeric types (integer, float, or decimal).  To verify the
type, refer to TableMaintenanceTable Structure and view the character
types for the column (s) to be graphed.  Since I had been using an Excel
file, I had to Save Copy as...  to a new MI table and change the column
types to integer (or decimal).  Then the table appeared on the table
drop-down list where the data in the column could be used to create a
graph.
Thanks again, Jason.
Steve

--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



MI MB: Turning of zoom/resize/pan etc of map window

2000-06-05 Thread Frontier Mapping Pty Ltd



Hi,

Is there any way you can disable the 
pan/zoom functions for a particular map window? I'd also like to prevent 
the user from resizing the map window. (I'm setting up title boxes etc and 
want them to be standard) I've found you can turn AutoScrolling etc off 
using the Set Map function, but I was thinking more along the lines of disabling 
the zoom/hand toolbar buttons when a designated map window was 
active.

Ta,

Michelle 


MI Correction to last posting

2000-06-05 Thread climber

I should have said TWF's, not TFW's...!  It's been a long day!

Stan
--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]



MI TFW converter

2000-06-05 Thread climber

Has anyone been able to get this converter to work?  I have been having
difficulty.  Perhaps I need to copy the TFW and TIF's off the CD and
onto the HD so that a TAB can be written for the file during the
conversion process?

Any thoughts,

Stan Johnston
Geologist
--
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]