>Is there any way to create line between points with certain key word?
>I want to create a line between point that have same Code Identity number.
>Does anyone know how to do this through mapbasic program?
>Any suggestion will appreciated.

You can use the CreateLine(x1, y1, x2, y2) function.
If you can get the start and end coordinates into a single record, you
can use the CreateLine() function to populate the Obj column in the
MapBasic window with this statement:

  Update YourTableName Set Obj=CreateLine(x1,y1,x2,y2)

where x1, y1, x2, and y2 are the columns you've populated with the start
and end coordinates of the line.


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

Reply via email to