RE: MI selecting within a spesific distance (mapx question)

2000-09-12 Thread Richard . Burkmar
by using the clone method - then add that to your new layer. Richard Burkmar. -Original Message- From: levent demircan [mailto:[EMAIL PROTECTED]] Sent: 12 September 2000 09:34 To: [EMAIL PROTECTED] Subject: MI selecting within a spesific distance (mapx question) HI, I AM SORRY I KNOW

RE: MI MB: VB6 DLL Access from MB

2000-09-11 Thread Richard . Burkmar
Eric, Unfortunately you can't do it. VB only creates COM DLLs and since MapBasic does not support COM, VB created DLLs cannot be used from MapBasic. Richard Burkmar -Original Message- From: Eric Maranne [mailto:[EMAIL PROTECTED]] Sent: 11 September 2000 11:58 To: [EMAIL PROTECTED

RE: MI MBX vs MBO

2000-09-08 Thread Richard . Burkmar
Chris, If your compiler cannot resolve all the references (e.g. cannot find a sub definition) in your MB file, it assumes it must be part of a larger project and compiles it as an object (MBO file). Make sure that you have all your procedures and variables properly declared. Richard

RE: MI and Visual Basic

2000-09-07 Thread Richard . Burkmar
Jas, I'm not sure if its important, but are you reparenting the MapInfo windows to your VB form (e.g. MIObject.Do "set application window " Me.hwnd) - if MI is poping up a 'save edits' dialog when you issue the close all, this might have a bearing. Richard Burkmar. -Origin

RE: MI Run application

2000-09-07 Thread Richard . Burkmar
ilo, You can show the mapbasic window from the MI options menu and then open a workspace or run an MBX to get the syntax. You should get something like that shown below: Run Application "D:\temp\rtmp.WOR" Richard Burkmar. -Original Message- From: Milo Simonic [mai

RE: MI transitioning from MapBasic to Mapx

2000-09-07 Thread Richard . Burkmar
a MapX fan). Of course Avenue vs MapBasic is a completely different argument, but that's not relevant here. Good luck, Richard Burkmar. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]Sent: 07 September 2000 12:29To: [EMAIL PROTECTED]Subject: MI transitioning

RE: MI ESRI Shapefile and MapX Compatibility Question

2000-09-01 Thread Richard . Burkmar
the shape file itself. MapX also renders the goemetry in the MapX default styles. Richard Burkmar. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 31 August 2000 22:12 To: [EMAIL PROTECTED] Subject: MI ESRI Shapefile and MapX Compatibility Question Does anybody

RE: MI ESRI Shapefile and MapX Compatibility Question

2000-09-01 Thread Richard . Burkmar
Hi Dennis, How does ArcView know how to project the files and display the entities - is the information stored in some higher order of file like a project or theme file or something? Richard Burkmar. -Original Message- From: Waardenburg, Dennis [mailto:[EMAIL PROTECTED]] Sent: 01

RE: MI MapInfo Certification / Exam

2000-08-15 Thread Richard . Burkmar
Dan, MapInfo have! I took the MapInfo Pro 'Product Specialist' exam which is part f the 'MapInfo Professional Technical Accreditation Programme'. Richard Burkmar -Original Message-From: Dan Phillips [mailto:[EMAIL PROTECTED]]Sent: 15 August 2000 03:24To: [EMAIL PROTECTED

RE: MI and Visual Basic

2000-08-15 Thread Richard . Burkmar
Almost any 'non-trivial' integrated mapping application will require an element of MapBasic programming anyway so an investment in it should prove worthwhile. Richard Burkmar. -Original Message- From: Brad Mathews [mailto:[EMAIL PROTECTED]] Sent: 14 August 2000 21:48 To: '[EMAIL

RE: MI MapInfo Certification / Exam

2000-08-15 Thread Richard . Burkmar
+0100 Dan, MapInfo have! I took the MapInfo Pro 'Product Specialist' exam which is part f the 'MapInfo Professional Technical Accreditation Programme'. Richard Burkmar -Original Message- From: Dan Phillips [mailto:[EMAIL PROTECTED]] Sent: 15 August 2000 03:24 To: [EMAIL PROTECTED

RE: MI global variables

2000-08-11 Thread Richard . Burkmar
= "XYZ.MBX" Then Set objMBGlobals = objMB.MBGlobals Exit For End If Next MsgBox "Global value is: " objMBGlobals("global_variable_name").Value Hope its useful, Richard Burkmar ICL -Original Message- From: Danny I

MI MAPX: Deployment with Visual Studio Installer

2000-08-09 Thread Richard . Burkmar
? And what about MMapXColunInfo.dll and mdatasetint.tlb? Richard Burkmar -- 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....and integrated mapping

2000-03-29 Thread Richard . Burkmar
royalty to MapInfo everytime you redistribute the MapX OCX. Good luck, Richard Burkmar. -Original Message- From: Haavard Bogh-Olsen [mailto:[EMAIL PROTECTED]] Sent: 29 March 2000 16:17 To: [EMAIL PROTECTED] Subject: MI MapXand integrated mapping hello I am planning to make a custom

RE: MI VB / MB Error

2000-03-22 Thread Richard . Burkmar
Greg, The following program works fine - implement this in a new project and take it from there. Richard Burkmar ICL Form module code: # Private mobjMI As MapInfo.MapInfoApplication Private Sub Command1_Click() Dim obj As Object For Each obj

RE: MI VB / MB Error

2000-03-21 Thread Richard . Burkmar
In objMapInfo.MBApplications If UCase(obj.Name) = "DATTOMAP.MBX" Then Set mbApp = obj Exit For End If Next Richard Burkmar ICL -Original Message- From: Toothaker, Greg [mailto:[EMAIL PROTECTED]] Sent: 20 March 2000 23:34 T

MI Managing forms/windows in an Integrated Mapping App

2000-03-21 Thread Richard . Burkmar
the dialog - the code cannot detect that you've used the OKButton. Richard Burkmar ICL MapBasic program: Include "mapbasic.def" Include "icons.def" Declare Sub Main Declare Sub ShowDlg Sub Main Create ButtonPad "Bug

RE: MI Can MapBasic call routines in ActiveX DLLs?

2000-02-07 Thread Richard . Burkmar
functionality as a COM component - if it didn't it wouldn't have got off the ground. Richard Burkmar ICL -Original Message- From: Chris Martin [mailto:[EMAIL PROTECTED]] Sent: 07 February 2000 14:08 To: MapInfo-L; Bill Thoen Subject: Re: MI Can MapBasic call routines in ActiveX DLLs

RE: MI 'Chasing' windows

2000-01-06 Thread Richard . Burkmar
Nick, You will have to use MapBasic to achieve something like this. The program shown below does what you were asking - though I have only tested it very lightly. Note that re-zooming a window does not affect the zoom level in the others - only the centering. However you could change the code

MI SUM: MB: How do I query dialog position (Win API?)

2000-01-05 Thread Richard . Burkmar
voked when the dialog command buttons are used - so the dialog is still present and (I had hoped) is the 'top' window with the focus. Can anyone suggest how I might use either of these functions successfully, or suggest an alternative method? Thanks for any help you can provide. Richard Burkmar

MI MB: How do I query dialog position (Win API?)

2000-01-04 Thread Richard . Burkmar
these from handlers invoked when the dialog command buttons are used - so the dialog is still present and (I had hoped) is the 'top' window with the focus. Can anyone suggest how I might use either of these functions successfully, or suggest an alternative method? Thanks for any help you can provide

RE: MI MapBasic - SELECT command problems

1999-12-21 Thread Richard . Burkmar
on" 'Run Command' causes the subsequent string to be parsed into its individual tokens before being executed. Richard Burkmar ICL -Original Message- From: "fannon_j"@wrcplc.co.uk [mailto:"fannon_j"@wrcplc.co.uk] Sent: 21 December 1999 09:14 To: [EMAIL PROTECTED] Su

RE: Vedr: MI Changing selected object styles using MB

1999-12-15 Thread Richard . Burkmar
Peter, Wont that alter the style in the underlying table? May not be a problem of course. Richard Burkmar ICL -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 15 December 1999 08:05 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Vedr: MI Changing

RE: MI Changing selected object styles using MB

1999-12-15 Thread Richard . Burkmar
unless they were in that query table - weird. In the end I had to commit the query table to make a 'proper' base table of it - then open that and add the layer to the relevant map window(s). Means doing a lot of housekeeping around temp tables though. Let me know if you find better ways. Richard

RE: MI MapBasic Programmers - FYI 5.x Bug

1999-11-17 Thread Richard . Burkmar
Cindy, Thanks for the prompt and effective workaround. Richard Burkmar. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 11 November 1999 19:56 To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: MI MapBasic Programmers - FYI 5.x Bug Regarding your posting

MI MapBasic 5.x Bug - workarounds anyone?

1999-11-01 Thread Richard . Burkmar
do) unless they first shut down the application (which is very inconvenient). Does anyone have any ideas for working round this problem? Thanks in advance, Richard Burkmar. -- To unsubscribe from this list, send e-mail to [EMAIL

RE: MI MapX: Install utilities

1999-09-21 Thread Richard . Burkmar
added a check-box to the installation interface so that the user can choose whether or not to install example data with the application. Good luck, Richard Burkmar. -Original Message- From: Chris Martin [mailto:[EMAIL PROTECTED]] Sent: 20 September 1999 18:22 To: [EMAIL PROTECTED] Subject