RE: MI-L Multilistbox selection problem

2003-01-08 Thread Peter Horsbøll Møller
Hi Peter,

The ReadControlValue() used on a MultiList Control will return 0 if no items
were selected and when all selected items have been read.

I thing that also can be tricky is that if you have a handler on you dialog
that reads which item was selected in your MultiListbox this also seem to
destroy the list of selected items, in short: You can only read the selected
items from a MultiListBox once.

Here is an example of mine reading values from a MultiListBox:

'**
Sub HandlerSelectFrames

Dim nID As Integer,
szName As String

OnError GoTo ErrorOccured

nID = ReadControlValue(100)

If nID = 0 Then
ReDim arrNames(0)
ReDim arrNamesShown(0)
Exit Sub
End If

Do Until (nID = 0)
szName = arrNames(nID)

Insert Into FRAMES_SELECTED
(NAME)
Values (szName)

nID = ReadControlValue(100)
Loop

Commit Table FRAMES_SELECTED

Select * From TAB_STORE_FRAME
Where NAME in (Select NAME From FRAMES_SELECTED)
Order By PAPERSIZE, ORIENTATION, MAPSCALE
Into FRAMES_TO_PRINT NoSelect

Drop Table FRAMES_SELECTED

Exit Sub
'-
ErrorOccured:
Note ERR_ERRORMSG & lf & Error$()

End Sub
'**



Peter Horsbøll Møller
GIS Developer
COWI A/S
Rugårdsvej 55
DK 5000 Odense C

Tel   +45 6313 5013
Direct+45 6313 5008
Mobil +45 2270 4308
Fax   +45 6313 5090

Kampsax blev i juni 2002 overtaget af COWI. I forbindelse med den
igangværende integrationsprocess udskiftes vores Kampsax e-mail adresser med
COWI e-mail adresser.Hjemmesideadresser forbliver uændrede


> -Original Message-
> From: Doyle, Peter W [mailto:[EMAIL PROTECTED]
 ] 
> Sent: Thursday, January 09, 2003 1:39 AM
> To: Mapinfo-L
> Subject: MI-L Multilistbox selection problem
> 
> 
> Greetings list,
> 
> I am having trouble trying to extract the selections of a 
> MultiListBox control
> 
>   I am calling the following from the OKButton Handler
> 
>   Sub OKHandler
> 
>   w = ReadControlValue(1) 'this is the 
> MultiListCox control ID
>   Print UserSelection(w)
> 
>   Do While (w > 0)
>   Print UserSelection(w)
>   w = ReadControlValue(1)
>   Loop
> 
>   End Sub
> 
> 
> In the above code w allways returns Zero as the value for the 
> first item sellected no matter whether one or more items are 
> sellected. I thought Zero was returned when all selections 
> had been read.
> 
> How do I get w to return the correct value of the first selected item.
> 
> I have read the Mapbasic manuals and searched the Mapinfo 
> Knowledge base (all they tell you is that you need to do 
> subsequent reads of the control to return the vale of each 
> selection in turn)
> 
> What am I doing wrong, any help or code snippets would be appreciated
> 
> 
> Regards
> 
> Peter Doyle
> TELSTRA
> Infrastructure Services
> Mobile Network Services, 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: 4813
> 



RE: MI-L MI: Access2000

2003-01-08 Thread Peter Horsbøll Møller
MS Access2000 wasn't supported in MapInfo 4.5. I guess you need to upgrade
to either MapInfo 6.0 or 6.5, I don't quite remember when MS Access was
supported.

HTH,
Peter Horsbøll Møller
GIS Developer
COWI A/S
Rugårdsvej 55
DK 5000 Odense C

Tel   +45 6313 5013
Direct+45 6313 5008
Mobil +45 2270 4308
Fax   +45 6313 5090

Kampsax blev i juni 2002 overtaget af COWI. I forbindelse med den
igangværende integrationsprocess udskiftes vores Kampsax e-mail adresser med
COWI e-mail adresser.Hjemmesideadresser forbliver uændrede


> -Original Message-
> From: A.W. Male & Associates Pty Ltd [mailto:[EMAIL PROTECTED]] 
> Sent: Thursday, January 09, 2003 1:01 AM
> To: [EMAIL PROTECTED]
> Subject: MI-L MI: Access2000
> 
> 
> Hi folks,
> 
> I am running MI 4.5 and would like to open MSAccess2000 
> tables - I receive 
> an error message
> 
> Is this a feature of MI 4.5 or do  I need to upgrade MI or is 
> there a patch 
> or work around for this problem
> 
> 
> Any help will be appreciated
> 
> 
> Regards
> 
> 
> Alistair
> 
> 
> -
> List hosting provided by Directions Magazine | 
> www.directionsmag.com | To unsubscribe, e-mail: 
> [EMAIL PROTECTED]
> For additional commands, e-mail: 
> [EMAIL PROTECTED]
> Message number: 4817
> 

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




RE: MI-L Dialog Remove, Please

2003-01-08 Thread Peter Horsbøll Møller
Do remember that the "Dialog Remove" command isn't executed until the end of
the procedure it was placed in.

Knowing this will explain your problems. A way around this would be to set a
flag that tells you program if the second dialog, should be shown after
closing the first dialog, like this:

'***
Dim mbShowOtherDialog As Logical
Sub ShowDialog1

mbShowOtherDialog = FALSE
Dialog  Title "Dialog 1"
'and stuff

Control ListBox 'and stuff
Calling HandlerListBoxChange

Control OKButton
Control CancelButton

if mbShowOtherDialog Then
Call ShowDialog2
end if
End Sub

Sub HandlerListBoxChange
mbShowOtherDialog = TRUE
End sub

Sub ShowDialog2
Dialog Title "Dialog 2"
'and stuff

Control OKButton
Control CancelButton
End Sub
'***

But beware that the "Dialog Remove" command makes MapInfo/MapBasic think
that the dialog was cancelled (), so if you need any of the values in
the dialog, yo have to read them using ReadControlValue() before you remove
the dialog

Peter Horsbøll Møller
GIS Developer
COWI A/S
Rugårdsvej 55
DK 5000 Odense C

Tel   +45 6313 5013
Direct+45 6313 5008
Mobil +45 2270 4308
Fax   +45 6313 5090

Kampsax blev i juni 2002 overtaget af COWI. I forbindelse med den
igangværende integrationsprocess udskiftes vores Kampsax e-mail adresser med
COWI e-mail adresser.Hjemmesideadresser forbliver uændrede


> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 ] 
> Sent: Wednesday, January 08, 2003 9:45 PM
> To: [EMAIL PROTECTED]
> Subject: MI-L Dialog Remove, Please
> 
> 
> In a dialog, I have a ListBox calling a sub that reads the 
> user-selection, 
> Remove Dialog, and calls another sub to open another dialog.  
> The first 
> dialog does not go away as I want.
> 
> The second dialog has a button to call the first dialog 
> again,  whose sub 
> begins with an error-protected Dialog Remove.  Again, the 
> dialog remains, so 
> I get lots copies of the dialogs that won't go away until Cancel.
> 
> How can I make them go away as a new dialog opens?  Using 
> MapBasic 7.0.  
> Thanks.
> 
> Mike
> 
> 
> -
> List hosting provided by Directions Magazine | 
> www.directionsmag.com   | To unsubscribe, e-mail: 
> [EMAIL PROTECTED]
> For additional commands, e-mail: 
> [EMAIL PROTECTED]
> Message number: 4807
> 



Re: MI-L Agregating MBX

2003-01-08 Thread Uffe Kousgaard
You should use the "Table > Combine Objects using column..." command. It
will do the whole processing in 1 step.

Kind regards

Uffe Kousgaard
www.routeware.dk

- Original Message -
From: "Peter Hatton" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, January 09, 2003 2:22 AM
Subject: MI-L Agregating MBX

> Can anyone help with an MBX for the folowing -
>   From a table I would
like to
> find all the polygons with a common tag ( eg common land holdings )
and
> combine them into seperate polygon groups.
>
>At the moment I accomplish the above task by
SQL and
> combine.
>
>Regards
> Peter Hatton
> GIS Officer
> Greater Taree City Council
> PO Box 482
> TAREE  NSW  2430
> Ph. 02 6591 3395
> 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: 4822




Re: MI-L (3d) Third dimension and Text problem in Oracle

2003-01-08 Thread David.J.Jerrard


Hi Sisirak, and everyone

I have encountered the same fundamental problem with 3D Oracle Spatial data
which MapInfo steadfastly refuses to read properly (MI 7.0).

The data has been processed and uploaded to an Oracle 9i database using
GeoMedia.  Any data which I process in MapInfo and upload using EasyLoader can
be opened and processed using GeoMedia (albeit only 2D data).  But the reverse
does not seem to be possible.

I concede that using MapInfo (2D only) to modify valid 3D data in Oracle Spatial
is probably not a good idea, but I suggest that it *should* be possible for
MapInfo to access 3D data for display purposes (2D read only).

Can anyone shed any light on this?  All offerings gratefully received.

Cheers,
David Jerrard


--
Author: Sisirak Sasa (NA)
Date:   12-17-2002 01:57

Hi,

I have been working with enabling interoperability between different client
software around Oracle Spatial. MapInfo is just one of the clients and I
realised that this software hasn't implemented concept of reading two
dimensions from 3d object. More over, text is still poorly managed. Is there
anyone who could explain this or even offer any solution for the problem?

Thanks!

/Sasa Sisirak








Opinions contained in this e-mail do not necessarily reflect
the opinions of the Queensland Department of Main Roads,
Queensland Transport or National Transport Secretariat, or
endorsed organisations utilising the same infrastructure.
If you have received this electronic mail message in error,
please immediately notify the sender and delete the message
from your computer.



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




MI-L iQUE from Garmin - a Palm GPSed PDA

2003-01-08 Thread Neil Havermale
If you are a PalmOS user and like Garmin GPS units this might deserve very
serious consideration for field workers... of all types.

+ Operating system: Palm OS 5 
+ Data input: Soft Graffiti (writing area can be minimized for full-screen
utility) 
+ Embedded features: MP3 player, voice recorder, infrared communication,
vibrating alarm and thumb wheel 
+ Audio hardware: Microphone, speaker, headphone jack 
+ GPS features: Location awareness (10 feet or less with WAAS), address
look-up, auto routing, turn-by-turn navigation with voice guidance,
off-route recalculation, Contact Locator 
+ Processor: Motorola DragonBall MXL ARM 9 
+ Processor speed: 150 MHz 
+ Unit size/weight: 5.0" x 2.8" x 0.8"/ 5.2 oz. 
+ Screen dimensions: 3.8" diagonal 
+ Display information: 320x480-pixel, transflective TFT with 16-bit, 60,000+
color display; bright white LED backlight; and soft graffiti area 
+ Internal Memory: 32 MB DRAM 
+ Expandable Memory: Secure Digital slot 
+ Battery: Lithium Ion 

The iQue 3600 will carry a manufacturer's suggested retail price of $589 and
is expected to be available in the second quarter of 2003.

http://www.palminfocenter.com/view_story.asp?ID=4825

FYI
MidNight Mapper
aka neil

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




MI-L PostGIS export

2003-01-08 Thread Robert Crossley
Hi all,

Does anyone know of a MapInfo uploader to PostGIS?  It seems that there is a program 
to take shape files to 
PostGIS, so there is an option there.  Alternatively I will write an mbx that exports 
the SQL required.  Not too hard, 
but could be slow to run.  Thought I would check if anyone has done it already, 
perhaps using mitab or something.

Now if only Mapinfo would read the tables directly

R


Robert Crossley 
Neo Software
9 Short St
New Brighton 2483
Far Southern Queensland
AUSTRALIA

P: 02 6680 1309
F: New Connection
M: 0419 718 642
E: [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: 4819




Re: MI-L Unicode support in Pro / TAB files?

2003-01-08 Thread Kazuhiko Yamashita
Hi Warren,

Sorry I have missed your posting on November 11 last year.
I am Japanese living in Japan and using MapInfo Pro 7 English on 
WindowsXP Japanese.
MapInfo Pro Japanese is more expensive than the original English 
version. :-)

It can handle Japanese data encoded with Shit-JIS.
Sometimes it does not appear properly on screen.
But I can use SQLs on two byte Japanese basis and  Japanese fonts can be 
printed properly on paper.

So I suppose what you need is Japanese Windows or Japanese setting on 
your English Windows ( I do not know how to do).
With MI pro English,  you can handle Chinese language on Windows 
Chinese, Korean  language on Windows Korean.

I used to try Unionway ( www.unionway.com ) for MapInfo pro 6.0 English 
on Windows98SE English.
It worked with Japanese  language data but "better than nothing" level.

I do not know  exactly what you are trying to do but  please give  me 
more specified purpose if possible.

Kind Regards,
   Hiko
Kazuhiko Yamashita
Fukuoka, Japan 

No answers from the list on this one but I did get an answer from the
technical guys at MapWorld. At the moment there is no native Unicode support
so my Japanese data will have to work on Japanese versions of Pro at the
moment. This will all change this year with the .NET direction.

Regards,
Warren Vick
--
Hello all,

Thought I'd ask a question for a change!

Does anyone know if Pro (and TAB files generally) support double byte
(Unicode) characters? I know that this must be supported in the many
localised versions of Pro (especially non Latin-alphabet based languages). I
have Unicode fonts which support the character areas I need (Japanese to
start) and would like to get data into TAB files for use within Pro. Any
help/tips from international -L'ers would be appreciated.

Regards,
Warren Vick
Europa Technologies Ltd.
 






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




MI-L MI: Access2000

2003-01-08 Thread A.W. Male & Associates Pty Ltd
Hi folks,

I am running MI 4.5 and would like to open MSAccess2000 tables - I receive 
an error message

Is this a feature of MI 4.5 or do  I need to upgrade MI or is there a patch 
or work around for this problem


Any help will be appreciated


Regards


Alistair


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



Re: MI-L region to Point .mbx

2003-01-08 Thread B. Thoen
You can do this without an mbx. First, set the symbol you want with 
Options/Symbol Style. Next, make the layer editable and make your 
selection. Then open the mapbasic window and enter:

Update Selection set obj=CreatePoint (CentroidX (obj), CentroidY (obj))

That should do it, or double your money back!

- Bill Thoen


On Wed, 8 Jan 2003, Rich Morris wrote:

> Hello listers,
> I am looking for a free .mbx that will convert selected regions to
> points (symbols).
> I have tried all2pts from directions magazine, and it looked like it
> was working, then deleted all of my points and left me with nothing.
> TIA for any help!!
> rm
> 
> 
> 


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




RE: MI-L GML2 export in Pro 7?

2003-01-08 Thread Warren Vick, Europa Technologies Ltd.
Thanks Uffe. MapInfo obviously changed their mind about export
functionality. It states it would be in v7.0 here:

http://www.mapinfo.com/products/mipro/beta_70.cfm

I wonder how quickly they will change it!

Regards,
Warren Vick
Europa Technologies Ltd.
http://www.europa-tech.com


-Original Message-
From: Uffe Kousgaard [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 08, 2003 10:28 PM
To: Mapinfo-L
Subject: Re: MI-L GML2 export in Pro 7?


GML import seems to be there, but no GML export.
It is natively implemented, but it doesn't say anything about the
version of GML.

Kind regards

Uffe Kousgaard
www.routeware.dk


- Original Message -
From: "Warren Vick, Europa Technologies Ltd." <[EMAIL PROTECTED]>
To: "MapInfo-L" <[EMAIL PROTECTED]>
Sent: Wednesday, January 08, 2003 11:12 PM
Subject: MI-L GML2 export in Pro 7?


> I have not upgraded to Pro v7 but have a questions for those who
have...
>
> During the Pro 7 beta, it was documented that GML v2 import and export
would
> be in the final release. However, looking at MapInfo sales material
> (specifically their "What's new" document), they only mention GML
import.
> Did GML export make it in Pro 7? If so, is it implemented natively in
the
> application or as an MBX?
>
> Regards,
> Warren Vick
> Europa Technologies Ltd.
> http://www.europa-tech.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: 4808
>
>


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



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




Re: MI-L Multilistbox selection problem

2003-01-08 Thread MikeKilmore
Peter,
Here is a sub that reads a multilistbox.  I populate the multilistbox with an 
array, where the first 6 characters is a unique id, which is read here to 
find IDs of the selected items.  The first item in the multilistbox is "All", 
which is handled specially. The selections are stored in a new table for 
later use.
Let me know if you want to see the array-making code.

Mike
--

--
Sub ReadMultiListBox301
Dim iReadValue as Integer
OnError GoTo BadClose
Close Table SelectedBranches

OnError GoTo 0
Create Table SelectedBranches (BranchNo integer)
Print "-"
Do While 1 = 1
iReadValue = ReadControlValue(301)

If iReadValue = 0 Then
Exit Do
Else
If iReadValue = 1 Then 'User has selected first item "ALL"
Select * from BRANCHES 
Into BranchMapList
GoTo DoneSelecting  
Exit Sub
End If
Insert Into SelectedBranches 
Values ((val(left$(arrayBranches(iReadValue),6

End If
Loop

'''Make selection of user's picks
Select * from BRANCHES, SelectedBranches where 
BRANCHES.BranchNo=SelectedBranches.BranchNo into BranchMapList

DoneSelecting:

Exit Sub
BadClose:
Resume Next
End Sub
''

''

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




MI-L Multilistbox selection problem

2003-01-08 Thread Doyle, Peter W
Greetings list,

I am having trouble trying to extract the selections of a MultiListBox control

I am calling the following from the OKButton Handler

Sub OKHandler

w = ReadControlValue(1) 'this is the MultiListCox control ID
Print UserSelection(w)

Do While (w > 0)
Print UserSelection(w)
w = ReadControlValue(1)
Loop

End Sub


In the above code w allways returns Zero as the value for the first item sellected no 
matter whether one or more items are sellected. I thought Zero was returned when all 
selections had been read.

How do I get w to return the correct value of the first selected item.

I have read the Mapbasic manuals and searched the Mapinfo Knowledge base
(all they tell you is that you need to do subsequent reads of the control to return 
the vale of each selection in turn)

What am I doing wrong, any help or code snippets would be appreciated


Regards

Peter Doyle
TELSTRA
Infrastructure Services
Mobile Network Services, 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: 4813




MI-L Agregating MBX

2003-01-08 Thread Peter Hatton



Can anyone help with an MBX for the folowing -
  From a table I would like to
find all the polygons with a common tag ( eg common land holdings ) and
combine them into seperate polygon groups.

   At the moment I accomplish the above task by SQL and
combine.

   Regards
Peter Hatton
GIS Officer
Greater Taree City Council
PO Box 482
TAREE  NSW  2430
Ph. 02 6591 3395
email-[EMAIL PROTECTED]




MI-L region to Point .mbx

2003-01-08 Thread Rich Morris
Hello listers,
I am looking for a free .mbx that will convert selected regions to
points (symbols).
I have tried all2pts from directions magazine, and it looked like it
was working, then deleted all of my points and left me with nothing.
TIA for any help!!
rm



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


Re: MI-L GML2 export in Pro 7?

2003-01-08 Thread Uffe Kousgaard
GML import seems to be there, but no GML export.
It is natively implemented, but it doesn't say anything about the
version of GML.

Kind regards

Uffe Kousgaard
www.routeware.dk


- Original Message -
From: "Warren Vick, Europa Technologies Ltd." <[EMAIL PROTECTED]>
To: "MapInfo-L" <[EMAIL PROTECTED]>
Sent: Wednesday, January 08, 2003 11:12 PM
Subject: MI-L GML2 export in Pro 7?


> I have not upgraded to Pro v7 but have a questions for those who
have...
>
> During the Pro 7 beta, it was documented that GML v2 import and export
would
> be in the final release. However, looking at MapInfo sales material
> (specifically their "What's new" document), they only mention GML
import.
> Did GML export make it in Pro 7? If so, is it implemented natively in
the
> application or as an MBX?
>
> Regards,
> Warren Vick
> Europa Technologies Ltd.
> http://www.europa-tech.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: 4808
>
>


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




RE: MI-L Unicode support in Pro / TAB files?

2003-01-08 Thread Warren Vick, Europa Technologies Ltd.
No answers from the list on this one but I did get an answer from the
technical guys at MapWorld. At the moment there is no native Unicode support
so my Japanese data will have to work on Japanese versions of Pro at the
moment. This will all change this year with the .NET direction.

Regards,
Warren Vick
Europa Technologies Ltd.
http://www.europa-tech.com

-Original Message-
From: Warren Vick, Europa Technologies Ltd.
[mailto:[EMAIL PROTECTED]]
Sent: Monday, November 11, 2002 1:19 PM
To: Mapinfo-L List
Subject: MI-L Unicode support in Pro / TAB files?


Hello all,

Thought I'd ask a question for a change!

Does anyone know if Pro (and TAB files generally) support double byte
(Unicode) characters? I know that this must be supported in the many
localised versions of Pro (especially non Latin-alphabet based languages). I
have Unicode fonts which support the character areas I need (Japanese to
start) and would like to get data into TAB files for use within Pro. Any
help/tips from international -L'ers would be appreciated.

Regards,
Warren Vick
Europa Technologies Ltd.
http://www.europa-tech.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: 4017



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




MI-L GML2 export in Pro 7?

2003-01-08 Thread Warren Vick, Europa Technologies Ltd.
I have not upgraded to Pro v7 but have a questions for those who have...

During the Pro 7 beta, it was documented that GML v2 import and export would
be in the final release. However, looking at MapInfo sales material
(specifically their "What's new" document), they only mention GML import.
Did GML export make it in Pro 7? If so, is it implemented natively in the
application or as an MBX?

Regards,
Warren Vick
Europa Technologies Ltd.
http://www.europa-tech.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: 4808




MI-L Dialog Remove, Please

2003-01-08 Thread MikeKilmore
In a dialog, I have a ListBox calling a sub that reads the user-selection, 
Remove Dialog, and calls another sub to open another dialog.  The first 
dialog does not go away as I want.

The second dialog has a button to call the first dialog again,  whose sub 
begins with an error-protected Dialog Remove.  Again, the dialog remains, so 
I get lots copies of the dialogs that won't go away until Cancel.

How can I make them go away as a new dialog opens?  Using MapBasic 7.0.  
Thanks.

Mike


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




MI-L Failed Opening Data Registry Entries

2003-01-08 Thread Barsukoff, Vera
Title: Message



I am having a 
problem running the Find Address Tool due to MapInfo being unable to open the 
"Data Registry".
 
When MapInfo is 
starting up I get the message "Failed Opening Data Registry Entries" and when I 
go to use the "Find Address" tool, I get a window asking for information I don't 
know how to provide.
 
Has anyone 
experienced this? and how do I fix this so I can use Find 
Address?
 
Thanks for any help 
I can get.
 
 
-
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 4806


Re: MI-L Mapbasic Earth from Space

2003-01-08 Thread B. Thoen
It's at http://www.directionsmag.com/files/index.php/view/172

On Wed, 8 Jan 2003, Rainer zaiss wrote:

> I have seen a Mapbasic application that transforms the current map 
> window in an image like seen from space. I cannot find this application 
> anymore on the web. I would transform a worldmap to represent it as 
> cercle like seen from space with a longitude and latitude grid.
> 
> Thanks
> 
> Rainer
> 
> 
> -
> List hosting provided by Directions Magazine | www.directionsmag.com |
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> Message number: 4803
> 


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




RE: Re[2]: MI-L HP plotting problems with oversized Paper

2003-01-08 Thread Ryan Morgan
One way around the issue altogether is to plot to Adobe Distiller in a
smaller size (say 45"X45") then rasterize the .pdf in Photoshop, blow it up
to the size you would like, save it as either a .tif or .jpg, and send that
file to the plotter.  If you would like to go this route and are printing
any aerial photography, reply and I'll send you a file with custom settings
for Distiller that really helps out.  This goes for anyone else interested
as well.

Good Luck!

Ryan Morgan
Aerials Express
www.AerialsExpress.com

-Original Message-
From: Flavio Hendry [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 08, 2003 7:23 AM
To: Darrin Clement
Cc: MapInfo-L
Subject: Re[2]: MI-L HP plotting problems with oversized Paper


Hi Darrin

Thanks for the answer. This compatibility stuff seems to me an excuse
and a bad one in addition (there would be a limit under Win 95/98, so
what ? there are more limits then that in Win95/98, not ???). And i.e.
Corel is compatible and works with large size stuff and under 95/98...

And second what MapInfo says seems not correct to me, such as it i.e.
works using the HP 5000 RTL/HPGL Driver (there we were able to print
out more 2.500 meters = about 100") with a resolution of 600 dpi
which is way over the mentioned 28000 pixels - or not ? And with the
HP 800 I get the gray background already with way smaller paper sizes
(and it is btw the same driver).

Anyway, I think MapInfo should solve this problem! ... or is all still
16 bit = DOS 1.0 compatible ... ;-) ...

Best regards
Flavio

Wednesday, January 8, 2003, 2:57:27 PM, you wrote:

> We've had similar problems and here is the explanation from
> MapInfo - which actually solved the problem.  Short answer -
> the maximum page dimension (in inches) multiplied by the
> resolution needs to be less than 28,000.  But here's the
> "official" answer:


> *
> It sounds like you are running into the pixel limitation for
> printing in
> MapInfo.  Currently, in order to support Windows 95/98, as
> well as Windows
> 2000/NT platforms, there is approximately a 28,000 pixel
> limitation for
> printouts.  Cases of "gray layouts," like your situation,
> are usually
> caused by trying to create printouts larger than 28,000
> pixels.

> The number of pixels can be calculated by multiplying the
> dimensions (in
> inches) by the resolution.  For instance, if your resolution
> is 600 dpi and
> your plot is 28", there are 16,800 pixels in that dimension.
> That is below
> the limit, so it should work.  The only thing that I can
> think of that
> would put you over the limit with a layout that is only 28"
> is the
> resolution.  You would need to check the settings or
> documentation for your
> printer to see what resolution it is printing at and lower
> it if possible.
> *
> -Original Message-
> From: Flavio Hendry [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, January 08, 2003 8:17 AM
> To: MapInfo-L
> Subject: MI-L HP plotting problems with oversized Paper


> Hi

> We often encounter the following problem and I would be
> astonished if
> that has never happened before (however I did not find
> anything in the
> archive):

> With large size hp plotters (such as the 800 or 5000
> models), if you
> create user defined paper size or use oversize papers (such
> as 42" by
> 60") the following happens (differs depending on driver and
> plotter
> settings):

> 1. The layout window turns 100% grey, such as everything
> would be
> interpreted as "paper border" and you cannot plot at all
> (means
> MapInfo creates an empty plot)

> 2. You can plot, everything look ok, but the plotter stops
> at
> approximately 1.20 meters (approx. 47") ...

> Mit freundlichem Gruss / Best regards
> Flavio Hendry

> 
> 
> ++ Neue Neapoljs Seiten auf www.neapoljs.com
> +++
> 
> 
>   Mit freundlichen Gruessen / Kind Regards
>    Flavio Hendry- mailto:[EMAIL PROTECTED]
>  TYDAC AG - http://www.tydac.ch
> Geographic Information Solutions
>  Luternauweg 12 -- CH-3006 Bern
>    Tel +41 (0)31 368 0180 - Fax +41 (0)31 368
> 1860
> 
> 


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


Mit freundlichem Gruss / Best Regards
Flavio Hendry


++ Neue Neapoljs Seiten auf www.neapoljs.com +++

  Mit freundlichen Gruessen / Best Regards
   Flavio Hendry- mailto:[EMAIL PROT

MI-L Mapbasic Earth from Space

2003-01-08 Thread Rainer zaiss
I have seen a Mapbasic application that transforms the current map 
window in an image like seen from space. I cannot find this application 
anymore on the web. I would transform a worldmap to represent it as 
cercle like seen from space with a longitude and latitude grid.

Thanks

Rainer


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



Re[2]: MI-L HP plotting problems with oversized Paper

2003-01-08 Thread Flavio Hendry
Hi Darrin

Thanks for the answer. This compatibility stuff seems to me an excuse
and a bad one in addition (there would be a limit under Win 95/98, so
what ? there are more limits then that in Win95/98, not ???). And i.e.
Corel is compatible and works with large size stuff and under 95/98...

And second what MapInfo says seems not correct to me, such as it i.e.
works using the HP 5000 RTL/HPGL Driver (there we were able to print
out more 2.500 meters = about 100") with a resolution of 600 dpi
which is way over the mentioned 28000 pixels - or not ? And with the
HP 800 I get the gray background already with way smaller paper sizes
(and it is btw the same driver).

Anyway, I think MapInfo should solve this problem! ... or is all still
16 bit = DOS 1.0 compatible ... ;-) ...

Best regards
Flavio

Wednesday, January 8, 2003, 2:57:27 PM, you wrote:

> We've had similar problems and here is the explanation from
> MapInfo - which actually solved the problem.  Short answer -
> the maximum page dimension (in inches) multiplied by the
> resolution needs to be less than 28,000.  But here's the
> "official" answer:


> *
> It sounds like you are running into the pixel limitation for
> printing in
> MapInfo.  Currently, in order to support Windows 95/98, as
> well as Windows
> 2000/NT platforms, there is approximately a 28,000 pixel
> limitation for
> printouts.  Cases of "gray layouts," like your situation,
> are usually
> caused by trying to create printouts larger than 28,000
> pixels.

> The number of pixels can be calculated by multiplying the
> dimensions (in
> inches) by the resolution.  For instance, if your resolution
> is 600 dpi and
> your plot is 28", there are 16,800 pixels in that dimension.
> That is below
> the limit, so it should work.  The only thing that I can
> think of that
> would put you over the limit with a layout that is only 28"
> is the
> resolution.  You would need to check the settings or
> documentation for your
> printer to see what resolution it is printing at and lower
> it if possible.
> *
> -Original Message-
> From: Flavio Hendry [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, January 08, 2003 8:17 AM
> To: MapInfo-L
> Subject: MI-L HP plotting problems with oversized Paper


> Hi

> We often encounter the following problem and I would be
> astonished if
> that has never happened before (however I did not find
> anything in the
> archive):

> With large size hp plotters (such as the 800 or 5000
> models), if you
> create user defined paper size or use oversize papers (such
> as 42" by
> 60") the following happens (differs depending on driver and
> plotter
> settings):

> 1. The layout window turns 100% grey, such as everything
> would be
> interpreted as "paper border" and you cannot plot at all
> (means
> MapInfo creates an empty plot)

> 2. You can plot, everything look ok, but the plotter stops
> at
> approximately 1.20 meters (approx. 47") ...

> Mit freundlichem Gruss / Best regards
> Flavio Hendry

> 
> 
> ++ Neue Neapoljs Seiten auf www.neapoljs.com
> +++
> 
> 
>   Mit freundlichen Gruessen / Kind Regards
>    Flavio Hendry- mailto:[EMAIL PROTECTED]
>  TYDAC AG - http://www.tydac.ch
> Geographic Information Solutions
>  Luternauweg 12 -- CH-3006 Bern
>    Tel +41 (0)31 368 0180 - Fax +41 (0)31 368
> 1860
> 
> 


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


Mit freundlichem Gruss / Best Regards
Flavio Hendry


++ Neue Neapoljs Seiten auf www.neapoljs.com +++

  Mit freundlichen Gruessen / Best Regards
   Flavio Hendry- mailto:[EMAIL PROTECTED]
 TYDAC AG - http://www.tydac.ch
Geographic Information Solutions
 Luternauweg 12 -- CH-3006 Bern
   Tel +41 (0)31 368 0180 - Fax +41 (0)31 368 1860



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




RE: MI-L HP plotting problems with oversized Paper

2003-01-08 Thread Darrin Clement
We've had similar problems and here is the explanation from
MapInfo - which actually solved the problem.  Short answer -
the maximum page dimension (in inches) multiplied by the
resolution needs to be less than 28,000.  But here's the
"official" answer:


*
It sounds like you are running into the pixel limitation for
printing in
MapInfo.  Currently, in order to support Windows 95/98, as
well as Windows
2000/NT platforms, there is approximately a 28,000 pixel
limitation for
printouts.  Cases of "gray layouts," like your situation,
are usually
caused by trying to create printouts larger than 28,000
pixels.

The number of pixels can be calculated by multiplying the
dimensions (in
inches) by the resolution.  For instance, if your resolution
is 600 dpi and
your plot is 28", there are 16,800 pixels in that dimension.
That is below
the limit, so it should work.  The only thing that I can
think of that
would put you over the limit with a layout that is only 28"
is the
resolution.  You would need to check the settings or
documentation for your
printer to see what resolution it is printing at and lower
it if possible.
*
-Original Message-
From: Flavio Hendry [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 08, 2003 8:17 AM
To: MapInfo-L
Subject: MI-L HP plotting problems with oversized Paper


Hi

We often encounter the following problem and I would be
astonished if
that has never happened before (however I did not find
anything in the
archive):

With large size hp plotters (such as the 800 or 5000
models), if you
create user defined paper size or use oversize papers (such
as 42" by
60") the following happens (differs depending on driver and
plotter
settings):

1. The layout window turns 100% grey, such as everything
would be
interpreted as "paper border" and you cannot plot at all
(means
MapInfo creates an empty plot)

2. You can plot, everything look ok, but the plotter stops
at
approximately 1.20 meters (approx. 47") ...

Mit freundlichem Gruss / Best regards
Flavio Hendry



++ Neue Neapoljs Seiten auf www.neapoljs.com
+++


  Mit freundlichen Gruessen / Kind Regards
   Flavio Hendry- mailto:[EMAIL PROTECTED]
 TYDAC AG - http://www.tydac.ch
Geographic Information Solutions
 Luternauweg 12 -- CH-3006 Bern
   Tel +41 (0)31 368 0180 - Fax +41 (0)31 368
1860





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





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




MI-L HP plotting problems with oversized Paper

2003-01-08 Thread Flavio Hendry
Hi

We often encounter the following problem and I would be astonished if
that has never happened before (however I did not find anything in the
archive):

With large size hp plotters (such as the 800 or 5000 models), if you
create user defined paper size or use oversize papers (such as 42" by
60") the following happens (differs depending on driver and plotter
settings):

1. The layout window turns 100% grey, such as everything would be
interpreted as "paper border" and you cannot plot at all (means
MapInfo creates an empty plot)

2. You can plot, everything look ok, but the plotter stops at
approximately 1.20 meters (approx. 47") ...

Mit freundlichem Gruss / Best regards
Flavio Hendry


++ Neue Neapoljs Seiten auf www.neapoljs.com +++

  Mit freundlichen Gruessen / Kind Regards
   Flavio Hendry- mailto:[EMAIL PROTECTED]
 TYDAC AG - http://www.tydac.ch
Geographic Information Solutions
 Luternauweg 12 -- CH-3006 Bern
   Tel +41 (0)31 368 0180 - Fax +41 (0)31 368 1860



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




MI-L Legend Creator

2003-01-08 Thread Simon Helyar
Hi All,

Has anyone created or know of a mapbasic application that can be used to create a 
simple legend based on the
different object symbols used in a map window ?

I know the obvious answer is to create thematics, however, the application I have 
written allows the user to 
customer exactly which symbols are used for each type of object in the map window.  It 
would be nice to have
a small legend window to show the user what the symbols represent.

Can anyone help ?

Regards

Simon Helyar

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




MI-L Linking Mapinfo to a Powerpoint presentation

2003-01-08 Thread Livings Michael
Hello,
I'm sure this should be very easy but after quite some time searching the
net for a solution I am still at a loss.
I have been requested to compile a presentation in Powerpoint (no problem so
far), however it is necessary that the maps presented be interactive. This
means that I can't do things the simple way and just create a series of
.jpegs to import.
I have been told that it should be possible to create a link between Mapinfo
and Powerpoint so when a certain slide is reached I can link to a preset
workspace. Does anybody have an idea how this can be done.
Any help will be gratefully recieved
Thanks in advance

Michael Livings 

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