MI-L Excel graphs in MI-Layout?

2002-11-04 Thread Andreas Boerner
Hi!

I want to show 10 Excel graphs in a mapinfo layout. Is there a way to 
import the charts as polygones or something into mapinfo? Or join them 
together with a Mapinfo Layout in another program?

Besides Mapinfo I also have AutoCAD, CorelDraw and the Acrobat 
PDF-Writer at hand - also Postscript Output is possible.

Does someone have an idea to solve this with one or two of the above 
named tools?

Andreas

-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3889




RE: MI-L Papersize

2002-11-04 Thread Lyle Bayless
I don't have any type of chart for the paper sizes and their respective
numbers, but I do know that number tells what actual size paper to print.
for example, Papersize 1 is 8 1/2 x 11 paper.

   Lyle D. Bayless
TRIAD GSI


-Original Message-
From: Rich Morris [mailto:rich_morris@;eli.net]
Sent: Friday, November 01, 2002 6:16 PM
To: MI-L
Subject: MI-L Papersize


Hello listers,
I am trying to figure out some things on workspaces using notepad as
the editor.  I am a little perplexed as to what the "Papersize"
designation is.
Does anyone know if it is a code to tell the window to open up as
maximized or minimized, or is it soley for information that would go to
the plotter.
Please see the script below.  I would appreciate it if anyone had a
key for those numbers (i.e., 263=, 264=, etc.)
TIA
rm



Set Window FrontWindow() Printer
 Name "\\Nwvanc_eleven\HQ3_DESIGNJET_1050C_Q" Orientation Landscape
Copies 1
 Papersize 263



-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3881




-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3890




MI-L Retrieve user's name/login name

2002-11-04 Thread Jeffrey Van Etten
Well I am sure that this is something very simple, but does anyone know how
you could retrieve the information about the user who is logged into the
workstation and display that information in a layout?  I.e. I am trying to
complete a section that automatically enters the user's name into section on
the title block who has the workspace open, so that when they print the
Layout, it has their name on the print out. 
 
 Thanks in advance for you help! 
 
Jeffrey Van Etten 
++ 
GIS Specialist 
Bus Priority and Traffic Enforcement 
TfL - Street Management 
MWB Business Exchange 
Room 306 ¦ 10 Greycoat Place 
London ¦ SW1P 1SB 
Tel: 0207 654 3331 ¦ Fax: 0207 960 6238 
mailto:JeffreyVanEtten@;streetmanagement.org.uk
  

 
* 
The contents of the e-mail and any transmitted files are confidential and
intended solely for the use of the individual or entity to whom they are
addressed. Transport for London Street Management hereby excludes any
warranty and any liability as to the quality or accuracy of the contents of
this e-mail and any attached transmitted files. If you are not the intended
recipient, be advised that you have received this e-mail in error and that
any use, dissemination, forwarding, printing or copying of this e-mail is
strictly prohibited.

If you have received this e-mail in error please notify
[EMAIL PROTECTED] 

This footnote also confirms that this email message has been swept for the
presence of computer viruses. 
*



RE: MI-L Retrieve user's name/login name

2002-11-04 Thread Michel Van Asten
Try "GetUserName" function in advapi32.dll

Regards,

Michel Van Asten

-Message d'origine-
De: Jeffrey Van Etten [mailto:JeffreyVanEtten@;streetmanagement.org.uk]
Envoyé: lundi 4 novembre 2002 14:31
À: MapInfo List Serve (E-mail)
Objet: MI-L Retrieve user's name/login name


Well I am sure that this is something very simple, but does anyone know how
you could retrieve the information about the user who is logged into the
workstation and display that information in a layout?  I.e. I am trying to
complete a section that automatically enters the user's name into section on
the title block who has the workspace open, so that when they print the
Layout, it has their name on the print out.

 Thanks in advance for you help!

Jeffrey Van Etten
++
GIS Specialist
Bus Priority and Traffic Enforcement
TfL - Street Management
MWB Business Exchange
Room 306 ¦ 10 Greycoat Place
London ¦ SW1P 1SB
Tel: 0207 654 3331 ¦ Fax: 0207 960 6238
mailto:JeffreyVanEtten@;streetmanagement.org.uk



*
The contents of the e-mail and any transmitted files are confidential and
intended solely for the use of the individual or entity to whom they are
addressed. Transport for London Street Management hereby excludes any
warranty and any liability as to the quality or accuracy of the contents of
this e-mail and any attached transmitted files. If you are not the intended
recipient, be advised that you have received this e-mail in error and that
any use, dissemination, forwarding, printing or copying of this e-mail is
strictly prohibited.

If you have received this e-mail in error please notify
[EMAIL PROTECTED]

This footnote also confirms that this email message has been swept for the
presence of computer viruses.
*



-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3892




RE: MI-L Retrieve user's name/login name

2002-11-04 Thread Jacques Paris
What about GetUserName(), adapted from Windows API Reference: Functions
(page copyright (c) 2000 Paul Kuliniewicz)

Declare Function GetUserName Lib "advapi32.dll" Alias "GetUserNameA" (ByVal
lpBuffer As String, nSize As Integer) As Integer
lpBuffer
String which receives the name of the user logged on to Windows. The string
passed must have sufficient room to receive the string the function will
give it.
nSize
The size of the string passed to the function. The variable passed as this
parameter also receives the size of the returned string (including the
terminating null character).
Return Value
0 if error, >0 if success

Example

' Display the name of the user currently logged on.
Dim username As String  ' receives name of the user
Dim slength As Integer  ' length of the string
Dim retval As Integer  ' return value

' Create room in the buffer to receive the returned string.
username = Space$(255)  ' room for 255 characters
slength = 255  ' initialize the size of the string
' Get the user's name and display it.
retval = GetUserName(username, slength)  ' slength is now the length of the
returned string
username = Left$(username, slength - 1)  ' extract the returned info from
the buffer
' (We subtracted one because we don't want the null character in the trimmed
string.)
Print "The name of the current user is "+ username


Jacques Paris
e-mail  [EMAIL PROTECTED]
MapBasic-MapInfo support  http://www.paris-pc-gis.com

-Original Message-
From: Jeffrey Van Etten [mailto:JeffreyVanEtten@;streetmanagement.org.uk]
Sent: November 4, 2002 08:31
To: MapInfo List Serve (E-mail)
Subject: MI-L Retrieve user's name/login name

Well I am sure that this is something very simple, but does anyone know how
you could retrieve the information about the user who is logged into the
workstation and display that information in a layout?  I.e. I am trying to
complete a section that automatically enters the user's name into section on
the title block who has the workspace open, so that when they print the
Layout, it has their name on the print out.

 Thanks in advance for you help!

Jeffrey Van Etten
++
GIS Specialist
Bus Priority and Traffic Enforcement
TfL - Street Management
MWB Business Exchange
Room 306 ¦ 10 Greycoat Place
London ¦ SW1P 1SB
Tel: 0207 654 3331 ¦ Fax: 0207 960 6238
mailto:JeffreyVanEtten@;streetmanagement.org.uk



*
The contents of the e-mail and any transmitted files are confidential and
intended solely for the use of the individual or entity to whom they are
addressed. Transport for London Street Management hereby excludes any
warranty and any liability as to the quality or accuracy of the contents of
this e-mail and any attached transmitted files. If you are not the intended
recipient, be advised that you have received this e-mail in error and that
any use, dissemination, forwarding, printing or copying of this e-mail is
strictly prohibited.

If you have received this e-mail in error please notify
[EMAIL PROTECTED]

This footnote also confirms that this email message has been swept for the
presence of computer viruses.
*


-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3893




MI-L Batch processing Line Direction Changes

2002-11-04 Thread Morrier, Steve
Hi All,

I have a lot of roads that I need to change thier line direction. I have the
RevDir.MBX but this is a manual approach. Is there a way to select all the
roads I want changed and then reverse the direction of the selection? TIA.

Steve



MI-L MB: holdout handles

2002-11-04 Thread Jacques Paris
I have noticed circumstances when handles are not “freed” after running a
MBX.

1 - When writing/debugging a program with MapBasic.exe, if the MBX launched
from MB is closed correctly in MI, next time I want to compile it I get an
error “(...mb:0) Unable to write application file. File may be in use or
read only”. If I try to compile it again, it may or may not work, i.e.
sometimes it takes more than one attempt to work (any relation with the
number of levels in the menu created by the application?).

2 – After having run a MBX from MB and closed it in MB and in MI, I cannot
rename it in Windows Explorer. “Cannot rename ... : There has been a sharing
violation. The source or destination may be in use”. To be able to do it, I
have to close MI (closing MB has no effect)

I have the feeling that MI is keeping some handles “active” even after the
closing of the application. Am I on the wrong track?

MI 6.5 and W2000

Jacques Paris
e-mail  [EMAIL PROTECTED]
MapBasic-MapInfo support  http://www.paris-pc-gis.com




Re: MI-L Batch processing Line Direction Changes

2002-11-04 Thread Uffe Kousgaard
The requested application is on the download section of my website.

Kind regards

Uffe Kousgaard
www.routeware.dk

- Original Message -
From: "Morrier, Steve" <[EMAIL PROTECTED]>
To: "MapInfo List Serve (E-mail)" <[EMAIL PROTECTED]>
Sent: Monday, November 04, 2002 3:47 PM
Subject: MI-L Batch processing Line Direction Changes


> Hi All,
>
> I have a lot of roads that I need to change thier line direction. I
have the
> RevDir.MBX but this is a manual approach. Is there a way to select all
the
> roads I want changed and then reverse the direction of the selection?
TIA.
>
> Steve
>


-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3896




Re: MI-L MB: holdout handles

2002-11-04 Thread Bill Thoen
Jacques Paris wrote:
> 1 - When writing/debugging a program with MapBasic.exe, if the MBX launched
> from MB is closed correctly in MI, next time I want to compile it I get an
> error “(...mb:0) Unable to write application file. File may be in use or
> read only”. If I try to compile it again, it may or may not work, i.e.
> sometimes it takes more than one attempt to work (any relation with the
> number of levels in the menu created by the application?).

I see that behavior in the Win98 and W2K environment and with MB
7.0 too. It seems to occur only with certain (usually larger)
applications. It doesn't happen with the simple ones. If you exit
your application before compiling, it won't happen either.

It's rather annoying to me too.

-- 
- Bill Thoen
 
GISnet, 1401 Walnut St., Suite C, Boulder, CO  80302
tel: 303-786-9961, fax: 303-443-4856
mailto:bthoen@;gisnet.com, http://www.gisnet.com/


-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3897




MI-L Query

2002-11-04 Thread Martin Williams
Hi i'm tryring to do an sql select query .I have two tables one that contains all the 
properties owned by us (family housing association) and another table that contains 
the properties owned by one of our competitors. I basically want to write an sql 
statement that will pull back by postcode region where we have more than say 30 
properties but our competitor has say only 5...any ideas on how to do this ??

thanks



**
This email and any files attached are confidential and are 
solely for the use of the intended recipient or addressee. They
may contain information that is privileged or otherwise 
protected from disclosure.

If you have received this email in error please notify the 
sender immediately by return of email or by telephone. Please
note that if you are not the intended recipient, you must not 
copy, distribute or otherwise use any part of this email, its 
contents or attachments.

This email has undergone all reasonable checks for viruses.
However Family Housing Association cannot  accept 
responsibility for any loss or damage arising from the
transmission or use of this message and we therefore 
recommend that it is subjected to your own virus checking 
procedures.
**


-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3898




Re: MI-L Excel graphs in MI-Layout?

2002-11-04 Thread Karl Kliparchuk
I don't have the answer to this, but I am wondering if with MapInfo's
.NET strategy if we will easily be able to drop in Excel and other types
of files into our MapInfo layout window?

Karl


Karl Kliparchuk, M.Sc.
McElhanney Consulting Services Ltd.
L100 - 780 Beatty Street450 - 999 8th Ave
SW
Vancouver, BC  Canada Calgary, AB   Canada
V6B 2M1   T2R 1J5
Tel (604) 683-8521 Tel (403)
262-5042
Email:  [EMAIL PROTECTED]

>>> Andreas Boerner <[EMAIL PROTECTED]> 11/04/02 05:18AM
>>>
Hi!

I want to show 10 Excel graphs in a mapinfo layout. Is there a way to 
import the charts as polygones or something into mapinfo? Or join them

together with a Mapinfo Layout in another program?

Besides Mapinfo I also have AutoCAD, CorelDraw and the Acrobat 
PDF-Writer at hand - also Postscript Output is possible.

Does someone have an idea to solve this with one or two of the above 
named tools?

Andreas

-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED] 
For additional commands, e-mail: [EMAIL PROTECTED]

Message number: 3889


-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3899




MI-L Retrieve user's name/login name

2002-11-04 Thread Jeffrey Van Etten
Well I am sure that this is something very simple, but does anyone know how
you could retrieve the information about the user who is logged into the
workstation and display that information in a layout?  I.e. I am trying to
complete a section that automatically enters the user's name into section on
the title block who has the workspace open, so that when they print the
Layout, it has their name on the print out.
 
Thanks in advance for you help!

Jeffrey Van Etten
+++
GIS Specialist 
Bus Priority and Traffic Enforcement 
TfL - Street Management 
MWB Business Exchange 
Room 306 ¦ 10 Greycoat Place 
London ¦ SW1P 1SB 
Tel: 0207 654 3331 ¦ Fax: 0207 960 6238 
 
mailto:JeffreyVanEtten@;streetmanagement.org.uk

 
* 
The contents of the e-mail and any transmitted files are confidential and
intended solely for the use of the individual or entity to whom they are
addressed. Transport for London Street Management hereby excludes any
warranty and any liability as to the quality or accuracy of the contents of
this e-mail and any attached transmitted files. If you are not the intended
recipient, be advised that you have received this e-mail in error and that
any use, dissemination, forwarding, printing or copying of this e-mail is
strictly prohibited.

If you have received this e-mail in error please notify
[EMAIL PROTECTED] 

This footnote also confirms that this email message has been swept for the
presence of computer viruses. 
*



MI-L Mapinfo printing extra paper

2002-11-04 Thread Robert DeRubeis
Hi there,

I have a problem when printing from a layout in mapinfo 6.0.  I am using a
HP650 plotter on win98.   If I do a custom paper size and put in something
less than 36" width (like 30x30") it will print out the map fine, but will
also spit out extra paper, out to about 42".  If I put the custom page
size to 36" width (like 30x36), then it cuts it correctly without the
excess paper out to 42".   

Has anyone else run into this?  

Bob DeRubeis
GIS/Mapping
1-602-263-6811
X5454


-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3901




MI-L contours

2002-11-04 Thread Windeler, David
To whom it may concern:

I recently received a data set that contained contour lines created in
AutoCAD. When this file was converted to MapInfo format, several of the
records within the Elevation filed contained the number -999. I was
wondering what the cause of this error is? Is there a way to fix it without
manually revising the attributes?

David Windeler Hons. BSc. Geo, GIS Apps. Specialist
GIS Technician / Applications Specialist
City Of Vaughan

Engineering Department
2141 Major Mackenzie Drive
Vaughan, Ontario
L6A 1T1

Tel. (905) 832-8525 Ext. 8747
Fax (905) 832-6145
E-mail [EMAIL PROTECTED]

http://www.city.vaughan.on.ca





MI-L BETA testers wanted...

2002-11-04 Thread David Langley
Mapping Solutions is again interested in finding North American
beta-testers for a new add-on to MapInfo that we will be launching next
month. Beta testers will need to have MapInfo Professional v6.5 (or
above) and a broadband internet connection. We are particularly
interested if you are accessing the internet through a proxy server.

Email me directly if you are interested.

Best Regards,

Dave


David Langley
Director of Programming Services
Mapping Solutions, LLC
4660 S. Hagadorn Rd.
Suite 120
East Lansing, MI 48823
USA
517.332.7735 Voice
517.332.1329 Fax
email: [EMAIL PROTECTED]
www.mappingsolutions.com


-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3903




MI-L Multi Monitors

2002-11-04 Thread Tedde Roberts
I'm looking at trying a multi or duel monitor system with MapInfo but I'm
real unsophisticated in their operation. Going to the Internet I found
several companies that make the boards but not enough information to jump
off and buy one.

Would like to hear from any of you that are using duel monitors with or
without success.

Tedde Roberts
Mowrey Seismic, Inc.
GIS Division
[EMAIL PROTECTED]



-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3904




MI-L MapMarker Plus 8.0 missing add lat, long, and georsesult dialog

2002-11-04 Thread Erin Rubio
Dear Listers,

With the new MapMarker Plus 8.0, the startup dialog that offers to add
up to 3 columns (latitude, longitude, and georesult) is now missing,
requiring manual addition of these columns. 

I'm wondering if I'm missing a checkbox, or if anyone out there has a
work-around, or even knows why this option has been removed? 

Thanks for your help,
Erin Rubio

Spatial Insights, Inc.
A Geographic Information Services Company
7635 Leesburg Pike, Falls Church, VA 20043
Tel: 703.891.1008 Fax: 703.891.1007 Sales: 800.347.5291
[EMAIL PROTECTED]  www.spatialinsights.com

-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3905




RE: MI-L MapMarker Plus 8.0 missing add lat, long, and georsesult dialog

2002-11-04 Thread Bagwell, Ross
I noticed it too... figured it went away as part of the upgrade (so much
like Microsoft did throughout their Office upgrades...)

-Ross Bagwell


-Original Message-
From: Erin Rubio [mailto:erin@;spatialinsights.com]
Sent: Monday, November 04, 2002 2:39 PM
To: [EMAIL PROTECTED]
Subject: MI-L MapMarker Plus 8.0 missing add lat, long, and georsesult
dialog


Dear Listers,

With the new MapMarker Plus 8.0, the startup dialog that offers to add
up to 3 columns (latitude, longitude, and georesult) is now missing,
requiring manual addition of these columns. 

I'm wondering if I'm missing a checkbox, or if anyone out there has a
work-around, or even knows why this option has been removed? 

Thanks for your help,
Erin Rubio

Spatial Insights, Inc.
A Geographic Information Services Company
7635 Leesburg Pike, Falls Church, VA 20043
Tel: 703.891.1008 Fax: 703.891.1007 Sales: 800.347.5291
[EMAIL PROTECTED]  www.spatialinsights.com

-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3905


This communication contains information from Universal Access, Inc. (or its
affiliates) which is confidential and may also be privileged.  It is for the
exclusive use of the intended recipient(s).  If you are not the intended
recipient(s), please note that any distribution, copying or use of this
communication or the information in it is strictly prohibited.  If you have
received this communication in error, please notify the sender immediately
and then destroy any copies of it. 



-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3906




Re: MI-L Vertical Mapper - What happened to Northwood G

2002-11-04 Thread Adrian Walls
given the glum financial state Marconi appear to be at present, VM 
must surely be vulnerable to low investment or even having the rug 
pulled if Marconi do not give Northwood the resources to deal with 
their non telco business.. I still run my bombproof 1.5 VM which has 
survived at least 4 MI upgrades and still ticks along

happy slope mapping

Adrian

-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3907



MI-L New Position: Mapper (Phoenix, AZ)

2002-11-04 Thread Ryan Morgan
New Position: Mapper

Looking for someone with at least 6 mos. experience in MapInfo, and some
MapBasic.  Phoenix, AZ area only.  $35,000 + 401K to start.  Immediate
opening, will train, full time, permanent position with comprehensive
benefit package.  For more info call 480-777-9909 ask for Ryan Morgan, or
fax resume to: 480-777-9966


-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3908




Re: MI-L Mapinfo printing extra paper

2002-11-04 Thread Robert DeRubeis
Yes, there is an advanced tab and the autorotate is checked.  The whole
map frame, borders, etc is within the 30x30 page size and under
layout->options it shows only 1 page.  It prints only one sheet, but it
spits out an extra 14" of blank paper after the map.  So instead of the
30x30 sheet with just the map, I end up with a 44x30 sheet that I have to
trim 14" off from the bottom.

-Bob

[EMAIL PROTECTED] writes:
>Does the 650 print dialog have an "advanced" tab?
>If so, you should be able to find an "auto rotate" button which should
>help.
>Other than that, you might try to zoom into your layout and make sure
>that the
>edges are away from the paper edges.  I have notice my layouts, at times,
>have
>caused different peoples computers to spit out extra pages b/c my margins
>are
>set-up one way, and theirs another.  On their computer, my layout that
>was one
>page, is no 2 or four.
>I hope this helps
>rm
>
>Robert DeRubeis wrote:
>
>> Hi there,
>>
>> I have a problem when printing from a layout in mapinfo 6.0.  I am
>using a
>> HP650 plotter on win98.   If I do a custom paper size and put in
>something
>> less than 36" width (like 30x30") it will print out the map fine, but
>will
>> also spit out extra paper, out to about 42".  If I put the custom page
>> size to 36" width (like 30x36), then it cuts it correctly without the
>> excess paper out to 42".
>>
>> Has anyone else run into this?
>>
>> Bob DeRubeis
>> GIS/Mapping
>> 1-602-263-6811
>> X5454
>>
>> -
>> List hosting provided by Directions Magazine | www.directionsmag.com |
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>> Message number: 3901






-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3909




MI-L AutoCAD Import

2002-11-04 Thread Bell, Percy
Hi Everybody,
I'm having a really difficult time importing some AutoCAD
files into MapInfo. When I try to directly import them I get a DXF error
message. Then I can pull them out and split them into layers and thus import
them but then I run into a second wave of problems with setting the
projection and coordinates. 
The people who have supplied the data really don't know a
lot about it all we have is that it is a Lambert projection. I have tried
running it with the equal area proportion option for Australia and through a
process of trial and error have got the maps to sit frustratingly close to
our comparison maps but it seem still sits slightly rotated off so that even
if you get the four coordinate points to match perfectly the maps are out of
alignment at the corners.
Does anybody have any suggestions for what to do from here?

Thanks,

Percy


__

Percy Bell
Communications Research Unit
Department of Communications, IT and the Arts
Ph. (02) 6271 1463
Fax.(02) 6271 1144
GPO Box 2154, Canberra ACT 2601 
> mailto:percy.bell@;dcita.gov.au
> http://www.dcita.gov.au  
> 
> 
> 
_ 

The information transmitted is for the use of the intended recipient only
and may contain confidential and/or legally privileged material.  Any
review, re-transmission, disclosure, dissemination or other use of, or
taking of any action in reliance upon, this information by persons or
entities other than the intended recipient is prohibited and may result in
severe penalties.  If you have received this e-mail in error please notify
the Security Adviser of the Department of Communications, Information
Technology and the Arts, telephone (02) 6271-1880 and delete all copies of
this transmission together with any attachments.
 
_ 


-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3910




Re: MI-L Multi Monitors

2002-11-04 Thread Brad Mathews
Tedde,

I am successfully using dual (LCD) monitors on my computer. I am using an 
ATI Radeon 8500 64MB Dual-Head card ($150 OEM).

The only limitations I have are that both monitors must be running the same 
resolution and the monitor rotating software (for rotating LCDs) doesn't 
work. Also, the few games I have tried crash if I don't disable multiple 
screen support first (which takes all of 5 seconds).

Matrox also has good multi-monitor cards (2x, 3x and 4x) but they cost a 
bit more.

Windows 200 and XP natively support this feature so there is nothing 
complicated about it. Just follow the instructions that come with your 
video card. Also, make sure you download the latest video drivers.

- Brad

At 01:34 PM 11/4/2002 -0700, Tedde Roberts wrote:
I'm looking at trying a multi or duel monitor system with MapInfo but I'm
real unsophisticated in their operation. Going to the Internet I found
several companies that make the boards but not enough information to jump
off and buy one.

Would like to hear from any of you that are using duel monitors with or
without success.

Tedde Roberts
Mowrey Seismic, Inc.
GIS Division
[EMAIL PROTECTED]



-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3904


Brad Mathews
CTO, Cypress Technology Solutions, Inc.
www.CypressSolutions.com


-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3911




Re: MI-L Multi Monitors

2002-11-04 Thread Matt Bolton
Tedde,

I've been running multi monitors for some years now (only recently with 
Mapinfo though), without any major problems - I think it's great and now 
find it really hard to work on only one.
I've used one computer with two separate PCI video cards, another with a 
dual head AGP card (Matrox) and a laptop with an external monitor set up 
as a dual.  All work quite well, although the dual head card is the 
probably the simplest option.
I'm happy to answer any questions you have.

Matt


Tedde Roberts wrote:

I'm looking at trying a multi or duel monitor system with MapInfo but I'm
real unsophisticated in their operation. Going to the Internet I found
several companies that make the boards but not enough information to jump
off and buy one.

Would like to hear from any of you that are using duel monitors with or
without success.

Tedde Roberts
Mowrey Seismic, Inc.
GIS Division
[EMAIL PROTECTED]



-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3904


 


--
Matt Bolton

Mach 3 IT 

Mobile 0412 122 416
Email  [EMAIL PROTECTED]




-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3912



RE: MI-L AutoCAD Import

2002-11-04 Thread Bell, Percy
Thanks Peter. I'll give that a go. 

-Original Message-
From: Peter Dowdle [mailto:PDowdle@;ipswich.qld.gov.au]
Sent: Tuesday, 5 November 2002 11:13
To: [EMAIL PROTECTED]
Subject: Re: MI-L AutoCAD Import


Percy

- This solution should get you around the DXF error message, and then
you can set the projection through the "Projection Button" in the "DXF 
Import Information" window.

I have also had problems importing .dxf files from AutoCAD into
Mapinfo.  We have Autodesk Map 2002 and MapInfo 6.5.

I have found that if the AutoCAD .DWG file is saved as a Version 12
.DXF file, there are no problems importing it into MapInfo.

If the .DWG file was saved as an  AutoCAD 2000 .DXF and imported into
MapInfo, I get the following error:

  AutoCAD 2000.DXF

  "DXF Error:  Unknown DXF item code:  line 847."

If .DWG file is saved as AutoCAD 14 .DXF and imported in Mapinfo, the
file imports, but there is no procedure to allocate different layers:

  AutoCAD 14.DXF

  "A DXF Warning has occurred"
  "DXF file does not contain a tables section.  All objects will be
considered to be on layer "0"."


So, if you have AutoCAD, open the .DXF files in AutoCAD and re-save
them as Version 12 .DXF files.  Then import these .DXF files into
Mapinfo.

This is just one work around that I found works.  I'm sure that there
are some others.  I hope this helps.









=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Peter Dowdle
Technical Officer (Asset Management)
Ipswich City Council
Queensland, Australia

Ph: 3810 7976

[EMAIL PROTECTED]
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

>>> "Bell, Percy" <[EMAIL PROTECTED]> 11/05/02 08:34am >>>
Hi Everybody,
I'm having a really difficult time importing some
AutoCAD
files into MapInfo. When I try to directly import them I get a DXF
error
message. Then I can pull them out and split them into layers and thus
import
them but then I run into a second wave of problems with setting the
projection and coordinates. 
The people who have supplied the data really don't know
a
lot about it all we have is that it is a Lambert projection. I have
tried
running it with the equal area proportion option for Australia and
through a
process of trial and error have got the maps to sit frustratingly close
to
our comparison maps but it seem still sits slightly rotated off so that
even
if you get the four coordinate points to match perfectly the maps are
out of
alignment at the corners.
Does anybody have any suggestions for what to do from
here?

Thanks,

Percy


__

Percy Bell
Communications Research Unit
Department of Communications, IT and the Arts
Ph. (02) 6271 1463
Fax.(02) 6271 1144
GPO Box 2154, Canberra ACT 2601 
> mailto:percy.bell@;dcita.gov.au 
> http://www.dcita.gov.au  
> 
> 
> 
_


The information transmitted is for the use of the intended recipient
only
and may contain confidential and/or legally privileged material.  Any
review, re-transmission, disclosure, dissemination or other use of, or
taking of any action in reliance upon, this information by persons or
entities other than the intended recipient is prohibited and may result
in
severe penalties.  If you have received this e-mail in error please
notify
the Security Adviser of the Department of Communications, Information
Technology and the Arts, telephone (02) 6271-1880 and delete all copies
of
this transmission together with any attachments.
 
_



-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED] 
For additional commands, e-mail: [EMAIL PROTECTED]

Message number: 3910



**
 This e-mail contains information that is intended for use only by the
 addressee.  If you have received this e-mail in error, you are advised
 that copying, distributing, disclosing or otherwise acting in reliance
 on this e-mail is expressly prohibited.  Please advise the original 
 sender by REPLY email that you have received this email in error.

 Thank you

**


_ 

The information transmitted is for the use of the intended recipient only
and may contain confidential and/or legally privileged material.  Any
review, re-transmission, disclosure, dissemination or other use of, or
taking of any action in reliance upon, this information by persons or
entities other than the intended recipient is prohibited and may result in
severe penalties.  If you have received this e-mail in error please notify
the Security Adviser of the Department of Communications, Information
Technology 

MI-L Super Workspace Utility

2002-11-04 Thread Doyle, Peter W
Greetings List,

Does anybody know where I can download a later version of Super Workspace
v1.1 (a utility that allows compressing of a workspace and all its tables
into a single file) or where I can register this utility to overcome the 4
table limitation.

I have tried the following link mentioned in the SuperWorkspace Readme file
http://users.iafrica.com/s/st/stingray/GIS1.htm but it no longer works. I
have also tried the link at http://software.geocomm.com/scripts/mapinfo/ but
this also goes to the non working link above.

Are there any similar utilities which work similar to Super Workspace

Any help appreciated

Regards

Peter Doyle
TELSTRA
Infrastructure Services
Network Services
Wireless Networks, Qld
Geographical Information Systems & Mapping
+61 7  38871128
Email: [EMAIL PROTECTED]



-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3914




RE: MI-L Super Workspace Utility

2002-11-04 Thread Sinam Al-Khafaji
Try Workspace Manager from Empower Geographics.
No maximum table limitation.
Finds missing tables.
Single all tabs to single file wor package compression.
Free 30 day download.

www.empower.com
http://www.empower.com/pages/products_add-ons.htm
 

-Original Message-
From: Doyle, Peter W [mailto:Peter.W.Doyle@;team.telstra.com]
Sent: Monday, November 04, 2002 8:09 PM
To: 'Mapinfo-L'
Subject: MI-L Super Workspace Utility


Greetings List,

Does anybody know where I can download a later version of Super Workspace
v1.1 (a utility that allows compressing of a workspace and all its tables
into a single file) or where I can register this utility to overcome the 4
table limitation.

I have tried the following link mentioned in the SuperWorkspace Readme file
http://users.iafrica.com/s/st/stingray/GIS1.htm but it no longer works. I
have also tried the link at http://software.geocomm.com/scripts/mapinfo/ but
this also goes to the non working link above.

Are there any similar utilities which work similar to Super Workspace

Any help appreciated

Regards

Peter Doyle
TELSTRA
Infrastructure Services
Network Services
Wireless Networks, Qld
Geographical Information Systems & Mapping
+61 7  38871128
Email: [EMAIL PROTECTED]



-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3914



Re: MI-L Refreshing password-protected DBMS table

2002-11-04 Thread Matt Bolton
 Lars,

Thanks for the advice.  I got it going using "Server Link Table", and it 
works well.

I'm interested in the option you talk about to "use VB to connect 
directly to the source and provide the results to MapInfo".  Since the 
datasource is already open in VB, this sounds like a better option. I 
can't find any reference to a Recordset = ... or Datasource =   type 
command in the MapBasic help - would you please point me in the right 
direction?

Thanks,

Matt


Lars V. Nielsen wrote:

Hi Matt,

The login/password used by MIPro to log into an RDBMS source is saved in the connect string in the very un-encrypted TAB file. I.e.
open for everybody to read. So usually one leaves out any passwords.

However, this forces MIPro to prompt for it when needing to reconnect (e.g. when refreshing). And there's no way to prevent this
prompt, so you're stuck in the way you've set it up.

But if you either use the MapBasic command "Server_Connect" to open the source and specify the connect string yourself, or use VB to
connect directly to the source and provide the results to MapInfo, you should be able to keep the password safe from prying eyes.

Best regards/Med venlig hilsen
Lars V. Nielsen
GisPro, Denmark
http://hjem.get2net.dk/lars-online/
http://www.gispro.dk/
WGS84: 10.20'40"E 55.20'20"N
- Original Message -
From: "Matt Bolton" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, November 03, 2002 7:54 AM
Subject: MI-L Refreshing password-protected DBMS table


 

Hi all,

Thanks largely to this list, my learning about programming with MI is
progressing rapidly, so I'd like to say a quick "Thanks" to those who
run and contribute to it..

On to the problem 

I have created a DBMS table which is linked to a password protected
Access database. In VB, I run the command
.do "Server Refresh [tablename]"
to refresh this link, at which time I'm prompted for a password.
I'd like for users to not see this prompt - i.e. have the password
entered via code.
I assume there is a simple way to do this , (something like .do "Server
Refresh [tablename], PWD=abcdef"
but can't find the syntax required.

TIA,

Matt

--
Matt Bolton

Mach 3 IT

Email  [EMAIL PROTECTED]



-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3886

   



 


--
Matt Bolton

Mach 3 IT 

Mobile 0412 122 416
Email  [EMAIL PROTECTED]




SV: MI-L AutoCAD Import

2002-11-04 Thread Mats Elfström
Hi all!

No help, but an occasion to repeat an old mantra of mine:

"Never use CAD systems for GIS work if you want to stay out of trouble."

An invitation to debate.

Regards, Mats.E
:::
:Email/ [EMAIL PROTECTED]ICQ#9517386:
:-:
:Mail/ GISKRAFT, Mats Elfstroem, Vaepplingv 21, SE-227 38 LUND, SWEDEN:
:Phones: +46 46 145959, +46 70 595 3935   :
:::





-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3917




MI-L MI Pro for MS SQL Server

2002-11-04 Thread Russell Harris
Hi,

Has anyone had any experience with MI Pro for SQL Server?
It sounds like a great idea for getting around all the 
problems of sharing files, and a lot less expensive than
going down the Oracle path. It's release seems to have been
kept fairly low key, but if it is a solid product, it would 
certainly bear looking at.


Russell

-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 3918