RE: MI Help me to move a node in MapX 3.5.1

2000-08-18 Thread Jeff James

You need to move one Point object in the Points collection of the Part
object of the Parts collection of the Feature object.  In other words, your
code might look something like this:

ftrMyLine.Parts(1).Points(2).Set nNewX, nNewY
ftrMyLine.Update

Good luck

Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 500
Atlanta, Georgia 30305
www.sagesoft.com <http://www.sagesoft.com> 
Phone: 404.262.7478.x12
Fax: 404.832.3366
eFax: 520.222.2020


-Original Message-
From: GTS [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 18, 2000 7:18 AM
To: Mapinfo-L
Subject: MI Help me to move a node in MapX 3.5.1
Importance: High


Dear List,

I have a line (x1,y1 - x2,y2).
I need to know the syntax to move the x2,y2 to other position.
I use MapX 3.5.1 and VB 6.0

TIA
Ara BR


--
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]



RE: MI Date: Tue, 16 May 2000 08:35:45 -0500

2000-05-16 Thread Jeff James

Travis,

Go to Table > Update Column.

Table to Update: Your table
Column to Update: Column 10
Get Value From Table: Your table (the same one)
Value: Column 9

I hope this helps,

Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 500
Atlanta, Georgia 30305
www.sagesoft.com <http://www.sagesoft.com> 
Phone: 404.262.7478.x12
Fax: 404.832.3366
eFax: 520.222.2020


-Original Message-
From: Lathrop, Travis [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 16, 2000 8:01 AM
To: mapinfo list
Subject: MI Date: Tue, 16 May 2000 08:35:45 -0500


I have two columns#10 and #9.  I want Column 10 to be updated so it is a
mirror image of column 9how do accomplish this?

Travis Lathrop
Intercarrier Services
(816) 559-3014


--
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]



RE: MI Create points

2000-05-16 Thread Jeff James

Jure,

Go to Table > Maintenance > Table Structure, select the table in question,
and uncheck the Table Is Mappable checkbox.  This will remove all the
mappable stuff associated with the table, allowing you to rerun the Create
Points the right way.

Good luck,

Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 500
Atlanta, Georgia 30305
www.sagesoft.com <http://www.sagesoft.com> 
Phone: 404.262.7478.x12
Fax: 404.832.3366
eFax: 520.222.2020


-Original Message-
From: Jure Ravnik [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 16, 2000 9:43 AM
To: '[EMAIL PROTECTED]'
Subject: MI Create points


Hi listers,

I've created a native MI table with 

Name   XY

columns. The projection is NonEarth.
When I ran "Create Point" I choose wrong columns
for X and Y. Instead of X=X I chose X=Y and Y=X.

Running "Create Points" again doesn't move 
the locations of points.

I know I can export to TXT and back to a new table.
Must I really do this?

 Thanks,

 Jure Ravnik

Ecological Engineering Institute
Ljubljanska 9
2000 Maribor
Slovenia
Tel:+ 386 2 300 48 11
Fax:+ 386 2 300 48 35
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]



RE: Creating Symbols in MI-Pro and MapX

2000-05-09 Thread Jeff James



Gatot,
 
What 
you'll need is a font editor.  There are a bunch of shareware ones on the 
market.  I'd take a look at www.cnet.com 
or some place like that.  I know there are a few of them out 
there.
 
Good 
luck,
 

Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 500
Atlanta, Georgia 30305
www.sagesoft.com
Phone: 404.262.7478.x12
Fax: 404.832.3366
eFax: 
520.222.2020

  -Original Message-From: GEOINFO CORP. 
  [mailto:[EMAIL PROTECTED]]Sent: Tuesday, May 09, 2000 7:37 
  AMTo: Mapinfo-lSubject: Creating Symbols in MI-Pro and 
  MapXImportance: High
  Dear Fellow Mappers,
   
  I want to make new symbol to be used in MI and 
  MapX.
  How could I make those new symbols  - but 
  not categorised in custom symbol(.bmp format) and or MI 3.0 Compatible but 
  categorised in "MapInfo Oil & Gas" or other categories so it can be used 
  in MapX?
   
  As always...TIA
   
  Gatot PurnomoPT. GEONUSA INFOTAMAHead 
  Office - Tel. 62-21-5267170, Fax. 5267169E-Mail - [EMAIL PROTECTED]WorkShop - 
  Tel. 62-21-8200167, 82413187, Fax. 82405373E-Mail - [EMAIL PROTECTED]


RE: MI MAPX and VB6 selection tool

2000-04-06 Thread Jeff James

Brett,

When you created the BindLayer to plot the points on the map, you created a
dataset at the same time.  The code to read the values in the dataset
"table" might be something like this...

Dim fld As MapXLib.Field
Dim ftr As MapXLib.Feature

For Each fld In MapX.Datasets.Item("MyData").Fields
For Each ftr In MapX.Layers.Item("BoundLayer").Selection
Debug.Print fld.Name & ": " &
MapX.Datasets.Item("MyData").Value(ftr, fld)
Next
Next

Good luck,

Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 500
Atlanta, Georgia 30305
www.sagesoft.com <http://www.sagesoft.com> 
Phone: 404.262.7478.x12
Fax: 404.832.3366
eFax: 520.222.2020



-Original Message-
From: Brett H Brassell [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 06, 2000 2:34 PM
To: '[EMAIL PROTECTED]'
Subject: MI MAPX and VB6 selection tool



I am using the selection tool to select an object on a bindlayer in a map,
but once selected how do I read in the information of the selected object?

Brett Brassell
[EMAIL PROTECTED]
(501) 277-3289

Wal-Mart Stores, Inc. Confidential

--
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]



RE: MI query one column

2000-03-29 Thread Jeff James

Susan,

Try this

Select Columns: NAME, Count(*)
>From Tables: YourTable
Group By: NAME
Sort By: 2 Desc

That will give you a unique list of all the names in your table, sorted by
the second column (Count) so that those with duplicate entries will show up
first.

Hope it helps,

Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 500
Atlanta, Georgia 30305
www.sagesoft.com <http://www.sagesoft.com> 
Phone: 404.262.7478.x12
Fax: 404.832.3366
eFax: 520.222.2020


-Original Message-
From: Smith, Susan [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, March 29, 2000 4:34 PM
To: [EMAIL PROTECTED]
Subject: MI query one column


Does any one know how to structure a query so that values in one column can
be compared against one another?  

For Example:

NAME
Smith
Jones
Miller
Jones
Washington
Jefferson

I then want to know that Jones was entered twice.

thanks ahead of time.

susan smith



---
Susan A. Smith
GIS Coordinator
County of Schuylkill
401 North Second Street
Pottsville, PA 17901
phone 570.628.1038
fax 570.628.1005
e-mail [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]



RE: MI MapX: Labelling One Way Streets

2000-03-22 Thread Jeff James

Till,

The quickest and easiest way would be to take your street layer, copy all
the one way streets into a new temporary(?) layer, and then turn on the line
direction arrows for that new layer.  Downsides to this: you get a small
blue triangular arrow (which you can't change) pointing in the direction in
which the line was drawn (which might not be the same as the street
direction), and you get one arrow per line segment (not one per polyline).

Going beyond that, you're opening up quite a can of worms.  The process as I
see it involves the following:

(A) Determine the angle of the line segment in the polyline at a point
somewhere along its length near the center.  I don't think MapX's polyline
features have the concept of a centroid, so you'll probably have to kludge
something together: measure the length of all the line segments that make it
up, and then mathematically determine which one contains the halfway point,
and then determine the coordinates of that halfway point.  Lots of math.
Lots of fun.

(B) When you find that line segment that contains that centerpoint, you'll
use the arctangent of the difference of the change in Y (latitude) divided
by the change in X (longitude) to get an absolute angle between 0 and 90
(where 0 is horizontal and 90 is vertical).  In pseudocode, it will probably
look like this: Angle = Atn((Y1-Y2)/(X1-X2)).  Determining the exact angle
within a 360 degree circle will entail your adding some number to that (90,
180, or 270) based upon whether or not the X's and Y's of the one endpoint
are less than or greater than the X's and Y's of the other point.  

(C) Finally, once you've got that, you'll need to create a new layer for
dropping your new "one-way" symbols, rotated appropriately.

Needless to say, I don't envy you this task.

There could be other issues -- and there could be a much easier way that I'm
overlooking -- but this is off the top of my head.  Looks good on paper, if
nothing else.

Good luck,
 
Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 550
Atlanta, Georgia 30305
Phone: 404.262.7478 Ext. 12
Fax: 404.832.3366
eFax: 520.222.2020
www.sagesoft.com <http://www.sagesoft.com> 


-Original Message-
From: Niermann, Till, PASSO-TD, NI [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, March 22, 2000 8:13 AM
To: '[EMAIL PROTECTED]'
Subject: MI MapX: Labelling One Way Streets


Hi, Listers!

Here is one which we really need your help on:

Question:
=>  How do I find the angle of a line at a given point without having to
write a lengthy MapBasic program? (MapX would be OK since we're developing a
C++ application)

Problem:
=>  Putting a "One Way" Symbol on each of the street segments that
represent One Way streets.
=>  Symbol should be placed only once for each street, in or near the
centroid, and in an appropriate angle. Streets are MI lines with 0 to many
vertices, starting and ending in a crossroads, with no crossing in between.

Prerequisites:
=>  We would prefer a solution using SpatialWare / Oracle / MapX (as
opposed to MI Pro / MapBasic).
=>  Coordinates of beginning and end of lines are available in
SpatialWare.
=>  We're dealing with millions of streets, 10% of which are One Way...

Any hints would be greatly appreciated! - Will post a summary.

Till


Till Niermann
mailto:[EMAIL PROTECTED]
Mannesmann Passo GmbH
Niederkasseler Lohweg 20
D-40547 Duesseldorf
Tel. +49 211 5368 - 648
Fax +49 211 5368 - 334
http://www.passo.de



--
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]



RE: MI MapX InfoTips

2000-03-20 Thread Jeff James

Serge,

Yes you can.  The tool tip shows the same data as the labels.  Just set the
dataset column and data field for the labels, and the tooltip should change
to relect the new values as well.  (Also, I *think* you can set the labels
to an expression, similar to MapBasic, in MapX 4.0, although you can't do
that through the layer dialog.)

Good luck,
 
Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 550
Atlanta, Georgia 30305
Phone: 404.262.7478 Ext. 12
Fax: 404.832.3366
eFax: 520.222.2020
www.sagesoft.com <http://www.sagesoft.com> 


-Original Message-
From: Serge Bedard [mailto:[EMAIL PROTECTED]]
Sent: Monday, March 20, 2000 2:28 PM
To: [EMAIL PROTECTED]
Subject: MI MapX InfoTips


Hello list,

With mapx 4.0x, it's possible to display info tips when using MapX Tools or
custom tools. Those tips display the content of the first column of an item
(a bitmap objects for example).

Is it possible to display custom informations or the content of another
column than the first one using those tips ?

Thanks for your help.

Serge

--
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 Half Buffers

2000-02-14 Thread Jeff James



Listers,
 
Does anyone know if 
there is a utility out there which will create a buffer on only one side of a 
given street (i.e., polyline)?
 
Any help is greatly 
appreciated.
 
Thanks in 
advance,
 
Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 550
Atlanta, Georgia 30305
Phone: 404.262.7478 Ext. 12
Fax: 404.832.3366
eFax: 520.222.2020
www.sagesoft.com
 


MI [mapx] Re: No Subject

2000-02-09 Thread Jeff James



Antoine,
 
We're currently 
in the development process for two MapXtreme Java projects.  Personally, I 
haven't used it, but if you have questions, I can pass them 
along.
 
Thanks,

 
Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 550
Atlanta, Georgia 30305
Phone: 404.262.7478 Ext. 12
Fax: 404.832.3366
eFax: 520.222.2020
www.sagesoft.com
 
 -Original 
Message-From: Antoine Gilbert 
[mailto:[EMAIL PROTECTED]]Sent: Wednesday, February 09, 2000 9:04 
AMTo: [EMAIL PROTECTED]Subject: [mapx] No 
Subject

  hi
   
  Does anybody here use MapXtreme Java 
  ?
   
  ___
   
  || // Antoine Gilbert|| // [EMAIL PROTECTED]|| 
  // #ICQ 9737371|| \\|| \\ Le Groupe KOREM Inc.|| \\ 
  http://www.korem.com
  ___
  
  To Post a message, send it to:   [EMAIL PROTECTED]

To Unsubscribe, send a blank message to: [EMAIL PROTECTED]
  

  
  
  eGroups.com Home: 
  http://www.egroups.com/group/mapxwww.egroups.com - Simplifying group 
  communications



To Post a message, send it to:   [EMAIL PROTECTED]
To Unsubscribe, send a blank message to: [EMAIL PROTECTED]










eGroups.com Home: http://www.egroups.com/group/mapx
www.egroups.com - Simplifying group communications


RE: MI Request

2000-02-08 Thread Jeff James

Sage Software has thought about hosting a mail server specifically for
MapX/MapXtreme questions.  I've been noticing that the number of questions
about these technologies seems to be growing.  Would anyone be interested in
this?
 
Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 550
Atlanta, Georgia 30305
Phone: 404.262.7478 Ext. 12
Fax: 404.832.3366
eFax: 520.222.2020
www.sagesoft.com <http://www.sagesoft.com> 


>  Is there any chance of having a MapX email site - similar to MapInfo-L, I
have used the MapX discussion site a great deal and find it useful.
--
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 Request

2000-02-08 Thread Jeff James

Let me correct that...

Sage Software has thought about hosting a NEWSGROUP server specifically for
MapX/MapXtreme questions.  I've been noticing that the number of questions
about these technologies seems to be growing.  Would anyone be interested in
this?
 
Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 550
Atlanta, Georgia 30305
Phone: 404.262.7478 Ext. 12
Fax: 404.832.3366
eFax: 520.222.2020
www.sagesoft.com <http://www.sagesoft.com> 


>  Is there any chance of having a MapX email site - similar to MapInfo-L, I
have used the MapX discussion site a great deal and find it useful.
--
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 Legend backgrounds

2000-01-27 Thread Jeff James

David,

In your Layout Window, select the legend frame, click the Region Style
button, and set the fill pattern to N for None.  That should make the legend
transparent.  Similarly, you could change it to have a new background color
or something.

Good luck,
 
Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 550
Atlanta, Georgia 30305
Phone: 404.262.7478 Ext. 12
Fax: 404.832.3366
eFax: 520.222.2020
www.sagesoft.com <http://www.sagesoft.com> 


-Original Message-
From: David Eagle [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 27, 2000 10:46 AM
To: [EMAIL PROTECTED]
Subject: MI Legend backgrounds


Help Listers!

Situation: Using aerial photography as a backdrop I have used 
some 'White' cosmetic items e.g. White dasked polyline to show a 
disused railway line.

Problem: However, when I generate a Legend you can't see the 
cosmetic item because the background of the legend is white too! I 
can quite sucessfully put a border around the legend but can't 
seem to find anyway of colouring in the background of the legend 
or importing a picture as the backdrop as you can do in some 
graph programs. No doubt I am missing the obvious, so can 
anyone show me where to click to get results?

Thanks in advance...

_
David A. Eagle (Graduate Analyst).
WS Atkins Consultants - East Anglia
Wellbrook Court, Girton Road, Cambridge, CB3 0NA.
Tel: (01223) 276002, E-Mail: [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]



RE: MI Improving Exported Image Res in MapX

2000-01-26 Thread Jeff James

Tod,

I don't think it will work inside of an HTML document, but if you dump the
map out as a Windows Metafile (wmf) image file, the printed quality actually
looks very professional (true vectors, true type fonts, etc.).  Hopefully,
you can use this somehow in your app.

Good luck,
 
Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 550
Atlanta, Georgia 30305
Phone: 404.262.7478 Ext. 12
Fax: 404.832.3366
eFax: 520.222.2020
www.sagesoft.com <http://www.sagesoft.com> 


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 26, 2000 10:33 AM
To: [EMAIL PROTECTED]
Subject: MI Improving Exported Image Res in MapX




I am trying to improve the resolution of an exported map image in a VB6/MapX
4
application.

The layout is an HTML document in a Web Browser on a VB form.
It works well, but printing the exported image leaves a bit to be desired in
the
clarity dept.
We have been using MI layouts with the high res maps for years & are sort of
used to it.

I was wondering if there's a way to grab the original map instead of
exporting
to gif, jpeg, etc. and using it in the layout.

Thanks.

Tod

Blockbuster GIS
[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]



RE: MI thematic map/custom symbols

2000-01-25 Thread Jeff James

Jory,

The first thing that comes to mind to check: make sure you didn't save the
bitmap as a 24-bit bitmap, or for that matter, anything more than a
256-color bitmap.  (From MS Paint, when you save, click File > Save As,
check out the Save As Type area at the bottom of the Save As dialog.)

Hope it helps,
 
Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 550
Atlanta, Georgia 30305
Phone: 404.262.7478 Ext. 12
Fax: 404.832.3366
eFax: 520.222.2020
www.sagesoft.com <http://www.sagesoft.com> 


-Original Message-
From: Mapinfo User [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, January 25, 2000 3:03 PM
To: [EMAIL PROTECTED]
Subject: MI thematic map/custom symbols


i created several small bmps to represent tower types.
this worked fine and showed up perfectly on my maps.
i needed to change one a bit, and when i replaced the one that was working
fine with the new one, it quit working altogether. now the style type
selecter in "modify thematic map" can't see the new one. i also experimented
with one of the symbols that came with mapinfo (i took it out of the folder,
confirmed that mapinfo couldn't see it, and replaced it) and now the style
type selecter can't see it.
has anyone else had this problem?
i have restarted the app and have hit the reload button just as the manual
and the help file instructs- both to no avail.
any guidance would be appreciated.

thank you.
jory


--
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]



RE: MI Question: Line Style

2000-01-24 Thread Jeff James



Jose,
 
Somewhere on the MapInfo web site, they have buried a 
Line Style Editor application as a free download.  I wish I had directions 
to it for you, but it's been a while since I downloaded it.  It takes a 
little getting the hang of, but it works well.
 
Good 
luck,

 
Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 550
Atlanta, Georgia 30305
Phone: 404.262.7478 Ext. 12
Fax: 404.832.3366
eFax: 520.222.2020
www.sagesoft.com

  -Original Message-From: Jose Martinez/Estivalia 
  Tavares [mailto:[EMAIL PROTECTED]]Sent: Sunday, January 23, 
  2000 6:42 AMTo: MapInfo ListSubject: MI Question: Line 
  Style
  Hi guys:
   
  I want to create a customized line style. How can I do 
  it?
   
   
  >Jose Ramon Martinez 
  Batlle<Correos-e:[EMAIL PROTECTED]
   
  o
   
  [EMAIL PROTECTED]


RE: MI Intersections

2000-01-18 Thread Jeff James


Anton,

I can answer the first part of your question regarding intersections in
MapX: Yep.  It's just the same as MapInfo's intersections.  It'll return a
point at that intersection, a FindFeature object with a CenterX and a
CenterY.

Don't know the answers to the API questions.

Good luck,

 
Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 550
Atlanta, Georgia 30305
Phone: 404.262.7478 Ext. 12
Fax: 404.832.3366
eFax: 520.222.2020
www.sagesoft.com <http://www.sagesoft.com> 
-Original Message-
From: Anton de Gruchy [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, January 18, 2000 1:10 AM
To: MapInfo List (E-mail)
Subject: MI Intersections


Hi All

Is the syntax of Street && Street for finding intersections the same in MapX
as it is in MapInfo.  I have look at the help and the results of the search
have the same structure, but the MapX help does not explicitly state the
syntax of finding intersections.

Does anyone know the declaration of the API calls GetRValue, GetGValue and
GetBValue in MapBasic.

Yours

Anton de Gruchy
-
MapIT - GIS Program development
35 Settlers Drive
Edgemead, 7441
Cape Town, South Africa
Ph: 27 021 5580256
Fax: 27 021 5590147
Cell: 082 855 9747
e-mail [EMAIL PROTECTED]
URL: http://home.global.co.za/~jwdeg

--
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]



RE: MI - MapX on Visual Foxpro.

1999-10-11 Thread Jeff James

We have used it extensively -- and successfully -- with VB.  We recently got
into a project with a client who had an existing application in Visual
FoxPro, and they wanted to incorporate MapX into it.  I don't know exactly
where the problems were, but they couldn't quite get it to work.  We had to
end up developing a solution for them in VB that wrapped MapX into a larger
custom ActiveX object which they then used in their application.

I'd suggest looking at the discussion site of the MapX web site
(www.mapx.com).  I thought I remembered seeing the occasional post from MapX
/ VFP users.

Good luck,

Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 550
Atlanta, GA 30305
www.sagesoft.com
Phone: 404.262.7478 Ext. 12
Fax: 404.832.3366

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Jayaprakash Athmaram
Sent: Monday, October 11, 1999 12:29 AM
To: [EMAIL PROTECTED]
Subject: MI - MapX on Visual Foxpro.


Dear MapInfo users,

Have anybody tried working on MapX in Visual Foxpro environment.?
Please mail me your experineces and feedbacks on the same.

This would help me to understand whther to work on it or not at all.

Thanks and regards,

Jayaprakash Athmaram
TATA Infotech Ltd
Mumbai - 400 059.
Official  : [EMAIL PROTECTED]
Private  : [EMAIL PROTECTED]
Phone   : 8216466   ext  217
Fax   : 8216463

--
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]



RE: MI MapXtreme Selecting features within several street segments

1999-10-08 Thread Jeff James

Roberto,

As of MapX 3.51 there is a Layer method called FeatureIDFromFeatureName.
With this, you can enter in the Feature's Name property that you're looking
for, and it will return the FeatureID.  I don't think this is on the MapX
3.5 Object Model poster, but it is in the MapX "Help".  Once you have that,
do the buffer thingy and that should get you where you want to be.

Good luck,

Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 550
Atlanta, GA 30305
www.sagesoft.com
Phone: 404.262.7478 Ext. 12
Fax: 404.832.3366

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Antoine Gilbert
Sent: Friday, October 08, 1999 8:52 AM
To: ROBERTO AVALOS SALAS; [EMAIL PROTECTED]
Subject: Re: MI MapxTreme Selecting features within several street
segments


hi

we work with MapXTreme Java, and there is a method named
"searchByAttribute()" in the object Layer...
___

||//Antoine Gilbert
||   //  [EMAIL PROTECTED]
||  //#ICQ 9737371
||  \\
||   \\Le Groupe KOREM Inc.
||\\  http://www.korem.com

3360, rue de La Perade, bureau 200
Sainte-Foy (Qc)   CANADA   G1X 2L7
___

- Original Message -
From: ROBERTO AVALOS SALAS <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, October 07, 1999 10:51 AM
Subject: MI MapxTreme Selecting features within several street segments


> Hello !
>
> I want to add a feature to my application, where I can select one
>street and then select all the points of a  different layer that are near
>or on that street. I was thinking about creating a buffer thorugh all the
>street segments and then select features(points) within the buffer area.
>The problem that I have seen is How can I select all the segments of a
>street. A street can have several segments. The select methods area by
>region, point, rectangle, or select all, but I don´t find any select method
>to select objects with a certain criteria like street name.
>
> I am working on MapxTreme v2.02 with ASP. IF some knows how to do it
>or can give some tips, I would appreciate so much.
>
> Regards,
> Roberto Avalos.
> [EMAIL PROTECTED]
> Monterrey, N.L.
> Mexico.
>
>
>--
>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]

--
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 Using Visual Basic Forms in MapInfo Professional

1999-10-01 Thread Jeff James

Sounds like a VB issue.  Without testing, my guess is that you need to check
the AutoRedraw property of your VB form, and of all the controls on it that
have an AutoRedraw property, and set them to True.  Again, just a guess.
Hope it helps.

Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 550
Atlanta, GA 30305
www.sagesoft.com
Phone: 404.262.7478 Ext. 12
Fax: 404.832.3366

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Goecken, John
Sent: Thursday, September 30, 1999 7:50 PM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: MI Using Visual Basic Forms in MapInfo Professional


We are trying to make a Visual Basic Form a child window to MapInfo. Doing
this causes the VB form not to repaint correctly(ie. remnants of browsers or
map windows appear in the VB form as the windows are moved,etc..). Has
anyone found a way to make a VB form a child window to Mapinfo successfully.
--
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]



RE: MI promoting records

1999-09-28 Thread Jeff James

Ben,

You could add a Priority column into your table.  You could store a default
value -- something high like 1000 or so, depending on how many records you
have -- in all the rows.  Then, to "promote" a record, drop a 1 in the
Priority column, and create a query sorting by that column in ascending
order.

Only trick is, if you only want to have one 1 in the table, you have to
"demote" the old 1's to 2's or something.

Hope this helps.

Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 550
Atlanta, GA 30305
www.sagesoft.com
Phone: 404.262.7478 Ext. 12
Fax: 404.832.3366

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Humphrey, Ben
Sent: Monday, September 27, 1999 7:48 PM
To: '[EMAIL PROTECTED]'
Subject: MI promoting records


Anybody know of a way to promote records in a mapbasic table?  I want to
select a specific row and move it so that it is the first row in a table.

thanks,
Ben
--
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 Friday Humor

1999-09-24 Thread Jeff James

Hello everyone.  I'm relatively new to the list, so I hope I'm not recycling
a joke you've all seen.  This one was one of my favorites, purported to be
an actual letter from the Smithsonian Institute... but you know how urban
legends are...



Paleoanthropology Division
Smithsonian Institute
207 Pennsylvania Avenue
Washington, DC 20078

Dear Sir:

Thank you for your latest submission to the Institute, labeled “211-D, layer
seven, next to the clothesline post.  Hominid skull.”  We have given this
specimen a careful and detailed examination, and regret to inform you that
we disagree with your theory that it represents “conclusive proof of the
presence of Early Man in Charleston County two million years ago.”  Rather,
it appears that what you have found is the head of a Barbie doll, of the
variety one of our staff, who has small children, believes to be the “Malibu
Barbie”.  It is evident that you have given a great deal of thought to the
analysis of this specimen, and you may be quite certain that those of us who
are familiar with your prior work in the field were loathe to come to
contradiction with your findings.  However, we do feel that there are a
number of physical attributes of the specimen which might have tipped you
off to its modern origin:

1.  The material is molded plastic.  Ancient hominid remains are typically
fossilized bone.
2.  The cranial capacity of the specimen is approximately nine cubic
centimeters, well below the threshold of even the earliest identified
proto-hominids.
3.  The dentition pattern evident on the “skull” is more consistent with the
common domesticated dog than it is with the “ravenous man-eating Pliocene
clams” you speculate roamed the wetlands during that time.  This latter
finding is certainly one of the most intriguing hypotheses you have
submitted in your history with this institution, but the evidence seems to
weigh rather heavily against it.  Without going into too much detail, let us
say that: (a) The specimen looks like the head of a Barbie doll that a dog
has chewed on, and (b) clams don’t have teeth.

It is with feelings tinged with melancholy that we must deny your request to
have the specimen carbon dated.  This is partially due to the heavy load our
lab must bear in its normal operation, and partly due to carbon dating’s
notorious inaccuracy in fossils of recent geologic record.  To the best of
our knowledge, no Barbie dolls were produced prior to 1956 AD, and carbon
dating is likely to produce wildly inaccurate results.  Sadly, we must also
deny your request that we approach the National Science Foundation’s
Phylogeny Department with the concept of assigning your specimen the
scientific name Australopithecus Spiff-arino.  Speaking personally, I, for
one, fought tenaciously for the acceptance of your proposed taxonomy, but
was ultimately voted down because the species name you selected was
hyphenated, and didn’t really sound like it might be Latin.

However, we gladly accept your generous donation of this fascinating
specimen to the museum.  While it is undoubtedly not a hominid fossil, it
is, nonetheless, yet another riveting example of the great body of work you
seem to accumulate here so effortlessly.  You should know that our Director
has reserved a special shelf in his own office for the display of the
specimens you have previously submitted to the Institution, and the entire
staff speculates daily on what you will happen upon next in your digs at the
site you have discovered in your back yard.  We eagerly anticipate your trip
to our nation’s capital that you proposed in your last letter, and several
of us are pressing the Director to pay for it.  We are particularly
interested in hearing you expound on your theories surrounding the
“trans-positating fillifitation of ferrous ions in a structural matrix” that
makes the excellent juvenile Tyrannosaurus Rex femur you recently discovered
take on the deceptive appearance of a rusty 9mm Sears Craftsman automotive
crescent wrench.

Yours in Science,

Harvey Rowe
Curator, Antiquities


Everyone have a good weekend...

Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 550
Atlanta, GA 30305
www.sagesoft.com
Phone: 404.262.7478 Ext. 12
Fax: 404.832.3366

--
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 Mouse Over Functionality in MapX

1999-09-21 Thread Jeff James

Suzanne,

This doesn't exist as of MapX 3.52.  You could create one from scratch by
adding a timer that fires when the mouse stops moving, having it look at the
feature under the mouse in the uppermost visible and selectable layer, and
then setting the tooltip text... kind of a pain, but it would work.  Don't
quote me, but I think the functionality you're looking for -- similar to
MapInfo 5.x -- might be in MapX 4.

Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 550
Atlanta, GA 30305
www.sagesoft.com
Phone: 404.262.7478 Ext. 12
Fax: 404.832.3366

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of
[EMAIL PROTECTED]
Sent: Monday, September 20, 1999 5:48 PM
To: [EMAIL PROTECTED]
Subject: MI Mouse Over Functionality in MapX


Hello,

I can't seem to find mouse-over functionality in MapX.  Does anybody know
if it exists?
I want the names of countries etc to pop up when the mouse goes over them.

Thanks,
Suzanne


--
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]



RE: MI MapX: Install utilities

1999-09-20 Thread Jeff James

Chris,

We've successfully used InstallShield Professional 5.0 and 5.5.  I'm not too
up on the differences between that and the Express version, but there didn't
seem to be anything too tricky with the installation... with the possible
exception of registering a type library or two.

There was one rumor floating around that MapX 4.0 would include its own
installation routine... but I've never heard if that's true or not.

Either way, even though it's a little off-topic, I'd be curious as well to
see if there are other better installation packages out there for this sort
of thing.

Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 550
Atlanta, GA 30305
www.sagesoft.com
Phone: 404.262.7478 Ext. 12
Fax: 404.832.3366

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Chris Martin
Sent: Monday, September 20, 1999 1:22 PM
To: [EMAIL PROTECTED]
Subject: MI MapX: Install utilities


In the past, I have used InstallShield Express to install my MapX/VB
applications, but I would like to know what other MapX developers
use, and what product the group would recommend

Thanks

CJ Martin
GIS Consultant
WS Atkins Consultants Ltd
(01952) 201234
--
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]



RE: MI Well, I need "Average function"-help

1999-09-17 Thread Jeff James

Rune,

Cool name.

Go to the SQL Select dialog, and give this a shot:

Select: Stname, StopNumber, Avg(x), Avg(y)
>From Tables: Whatever
Group By: Stname

Good old agrregation functions.  That should do it.

Good luck,

Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 550
Atlanta, GA 30305
www.sagesoft.com
Phone: 404.262.7478 Ext. 12
Fax: 404.832.3366

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of
[EMAIL PROTECTED]
Sent: Friday, September 17, 1999 6:55 AM
To: [EMAIL PROTECTED]
Subject: MI Well, I need "Average function"-help


Tony (who posted the org. message) worked out a solution on his own...well
done
on a friday, couldn't be me :-D

Well I got a simular problem. My GPS-buss-stops-files (puh!) looks something
like this:

Stname StopNumber x y
osloA 123  100 200
osloA 123  110 210
osloB 456  300 400
osloC 789  500 600
osloC 789  510 610
osloC 789  520 620

This means that the same busstop (stoppname/stopnumber) can have one, two,
three or more coordinates, because the buss can stop on both sides of the
road,
dependiing on the direction. There could also be more than one road, so that
the buss sometimes stop on one road (both sides), but other times take a
turn
to serve a different area.


I want to create a new file from the original, that gives me the avergage
coordinate for each unique stopname/number, simular to this:

Stame StopNumber x y
osloA 123  105 205
osloB 456  300 400
osloC 789  510 610

Could this be done? on a friday?

Best reg. Rune
ps: Wishes all a nice week-end.
--
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]



FW: MI Referencing points on layer

1999-09-03 Thread Jeff James

Suzanne,

Here are a few answers for you.  Hope they help.

First of all, to cycle through your points, you'll want to do something like
the following:

Spin through all the points in the layer.  (Create a new Feature object, and
do a For Each ftr In lyrNewLayer.AllFeatures.)
Create a new Point object for each point in the layer.  Use the Point.Set
with the ftr.CenterX and ftr.CenterY properties.
Stuff each Point object into a new Points collection, one at a time.
Use the MapX.FeatureFactory object to create a new line based on the Points
collection.

Sorry for the pseudo-pseudocode.  I'd supply the actual VB code, but it
would probably take about half an hour to type it up, plus another 15
minutes to explain in detail.

Secondly, yup.  You can join several tables together in the SQL statement
for you ODBCQueryInfo object.

Third, right again.  The documentation is (I'm being polite here) "sketchy".
There is a free User's Guide downloadable from the MapX beta web site.  Go
to www.mapx.com, follow the links to the new beta, and you'll see a PDF
developer's guide you can download.  It's still a work in progress, and it
does contain some MapX 4 stuff, but it ought to help.

Good luck,

Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 550
Atlanta, GA 30305
[EMAIL PROTECTED]
www.sagesoft.com
Phone: 404.262.7478 Ext. 12
Fax: 404.832.3366

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of
[EMAIL PROTECTED]
Sent: Friday, September 03, 1999 9:15 AM
To: [EMAIL PROTECTED]
Subject: MI Referencing points on layer


Hi,

I am new to MapX and I have a couple of  relatively simple questions.I
am creating a layer of points through X/Y data binding using the ODBC
QueryInfo object.
Once I get my layer on the map, I am having trouble getting the specific
points that I want.  (The end goal is to connect certain points with
lines).
How can I reference this points once they are on the layer and in the
dataset?  Also, is it possible to bring columns from multiple tables in
through the SQL connect string?

Also, I discovered that there wasn't much documentation included in the
MapX software and the help files don't have everything I need.  Could
anyone point me to a good source of MapX info?

Thanks,
-Suzanne

Suzanne Logan
Monitor Company


--
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]



RE: MI TrueType font to Symbol?

1999-09-02 Thread Jeff James

You could do the following:

1. Go into Word (or anything, really), and type a character on the screen
the color and size you want to see it.
2.  Do a PrntScrn of the screen.
3.  Go into Paint, and select the 32x32 pixel containing the font character.
(May require some zooming in, and pixel-counting.)
4.  Cut the selection out, open a new bitmap, set the size to 32x32 pixels,
and paste the selected image.
5.  Save the image into the CustSymb folder as a 256 color bitmap.

That ought to do it, and shouldn't take more than five minutes or so.

Jeff James
Vice President
Sage Software, Inc.
3423 Piedmont Road NE
Suite 550
Atlanta, GA 30305
www.sagesoft.com
Phone: 404.262.7478 Ext. 12
Fax: 404.832.3366

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Steven Romalewski
Sent: Wednesday, September 01, 1999 4:46 PM
To: MI Listserv
Subject: MI TrueType font to Symbol?


Greetings,

We've been given a TrueType font that we'd like to use as a symbol, but
MI won't show the font (named "Untitled") in the symbol list.  I've
looked through the archives, and the only solution I could find was to
buy Fontographer from Macromedia (US$399).  We also tried to convert the
font in Adobe Photoshop to a bitmap and import as a custom symbol, but
the quality was terrible.  We'd appreciate any ideas and suggestions
about how to tackle this one.

TIA,

Steve

--
Steven Romalewski
NYPIRG - CMAP
212-349-6460
[EMAIL PROTECTED]
http://www.cmap.nypirg.org


--
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]



Re: MI MapX questions

1999-08-18 Thread Jeff James




Howdy,
 
I can address the first question, but I haven't fiddled too 
much with the raster images within the MapX framework.
 
Regarding installations, the Package & Deployment Wizard 
is simply too limited to be able to do a MapX installation.  Look in the 
MapX help file regarding deployment of MapX applications.  Not only do you 
have to include a bunch of dll's, ocx's, and tlb's, you also have to install 
fonts, register some (but not all) of the dll's, register the tlb's, write 
registry keys.  It's a pain, but if you follow the instructions by the 
letter, it does work.  I've had success installing MapX using InstallShield 
Professional, and "lesser" versions could probably do the job as 
well.
 
Simply put, the VB Package & Deployment wizard can't do 
it.  Also, installing the full SDK as you're doing *might* violate some 
licensing issues.
 
One rumor had it that MapX 4 (which should be out soonish) was 
going to include it's own installation routine... but rumors are 
rumors.
Jeff JamesVice 
PresidentSage Software, Inc.3423 Piedmont Road NESuite 
550Atlanta, GA 30305Phone: 404.262.7478 Ext. 
12Fax:  404.467.9179Web:    
www.sagesoft.com

-Original Message-From: 
G E O I N F O <[EMAIL PROTECTED]>To: 
Mapinfo-l <[EMAIL PROTECTED]>Date: 
Wednesday, August 18, 1999 12:00 PMSubject: MI MapX 
questions
Hello All...,
 
I have some qustions regarding MapX Application 
Programming Development.
 
1. We have tried developing a VB and MapX 
based application.
    After it was compiled to 
be an .exe and made its installer using "Package & Deployment 
Wizard" - the 
    application always asked 
for Mapx30.ocx. It just won't work until I copy the whole SDK into the 
PC.
    Q:    Do 
we always need to install and use MapX SDK to run an 
application?
    If 
not - how?
 
2. We tried to call a geotiff raster to be shown as a 
vector backdrop - It really took a long time compare to the
    usual MI Pro. 
    Q:    What do I have to 
to make it faster?
    
After it was loaded - We failed to show it in a small zoom(It doesn't appear 
in the screen)
    
Image quality also degraded(appears some lines on top of image)
    Is 
it capable opening more than one raster file?(We loaded two files and than 
the app. hang up).
    
Our image file size average is 
35MB.
 
We use MapX 3.5 and VB 6.0 in a PC with 
PII-400MHz, 64MB Ram, 4 MB VRam, 2X 4.3GB HDD.
 
Please do help us - since this is our first experience 
developing a map based app. with MapX and VB.
Your shared experiences and ideas would be very 
appreciated.
 
Thank's in Advance.
 
Ara Budidarma
PT. GEONUSA INFOTAMA (GEOINFO)Tel. 
021-8200167; Fax. 021-82405373
E-Mail [EMAIL PROTECTED]