[MI-L] mapbasic text control

2006-10-27 Thread Gilbert, Antoine
Hi   Does there is a way to allow user to use enter in a text control? (To have return in the entered text)     It seem to just do nothing…   ___ MapInfo-L mailing list MapInfo-L@lists.directionsmag.com http://www.directionsmag.com/mai

[MI-L] mapbasic test control

2006-10-27 Thread Gilbert, Antoine
Hi   Does there is a way to allow user to use enter in a text control? (to have return in the entered text)     Du 5 au 7 décembre 2006 - Montréal, QC Un rendez-vous technologique à ne pas manquer!   _ Antoine Gilbert Architecte de système [EMAIL PR

Re: [MI-L] Mapbasic and Delphi 2005 Dll

2006-10-27 Thread Uffe Kousgaard
onsmag.com Sent: Monday, October 23, 2006 12:39 AM Subject: [MI-L] Mapbasic and Delphi 2005 Dll Procedure AssetForm; StdCall; Var AForm: TAssetCaptureForm Begin AForm:= TAssetCaptureForm.Create(Nil); AForm.showmodal; AForm.free; End; Exports

Re: [MI-L] Mapbasic and Delphi 2005 Dll

2006-10-24 Thread Trey
The mail from Monday I sent from the office got lost some where so I do it again. You can go to my web site in the download section and get UltraMsg I wrote this back in 1999 and the zip file has all the source and examples for MBX's. About half way down the page: http://www.wap3.com/download/i

SV: [MI-L] Mapbasic and Delphi 2005 Dll

2006-10-23 Thread Thomsen, Bo Victor
good examples made by Robert Edwards from: ftp://members.aol.com/MTFTPSite/dpmbdlls.exe   Regards Bo Thomsen GeoConsult I/S Fra: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] På vegne af Nathan WoodrowSendt: 23. oktober 2006 00:40Til: MapInfo-L@lists.directionsmag.comEmne:

[MI-L] Mapbasic and Delphi 2005 Dll

2006-10-22 Thread Nathan Woodrow
Hi All,   Just a little help with a Dll, I have created using Delphi 2005.    The Delphi project contains the Dll and a Unit(Form) which I want to be able to call from mapbasic.   I have complied the Dll and complied my little mapbasic code that calls the Dll procedure, but however when I r

[MI-L] MapBasic: Reproject

2006-10-20 Thread Jacques Paris
I found only one message dated 2005 framing the problem and no answer to it: Does the Reproject MapBasic statement work, and if so how to make it work?   I tried several setups with my 7.00 and a co-lister with his 7.8.  to no avail. Is it a bug or some unexplained trick?   Jacques Pari

[MI-L] Mapbasic - Address Query tool

2006-09-13 Thread Jackson, Simon \(Capita Symonds\)
I want to create a simple search tool to make life easier for some other colleagues. I have yet to look at the data, but I am under the assumption that they have a vector buildings layer tied in with some address data. Therefore, it would be desirable to search by postcode/street, possibly using

RE: [MI-L] MapBasic Programs

2006-09-04 Thread Driver, Greg 9434
ministrator Applications Support ICT NOT PROTECTIVELY MARKED -Original Message-From: James Stott [mailto:[EMAIL PROTECTED] Sent: 04 September 2006 15:48To: MapInfo-L@lists.directionsmag.comSubject: [MI-L] MapBasic Programs All,   I am trying to work out if it i

[MI-L] MapBasic Programs

2006-09-04 Thread James Stott
All,   I am trying to work out if it is possible to write a MapBasic program that allows you to be able to select things from mapper / browser windows while the program is running, like you can do with the image registration tool.   Does anyone know if this is possible? Whenever I write a

Re: [MI-L] Mapbasic & Vertical Mapper

2006-08-31 Thread Bill Thoen
On Thu, Aug 31, 2006 at 12:25:13PM +0100, Jackson, Simon (Capita Symonds) wrote: > Ok, I have the S-Dev-Kit. > I need to tie MapBasic into VM so that I can create some batch routine > for subtracting some grids, a grid query and outputting as ascii. I > asked this awhile back and got not much repl

[MI-L] Mapbasic & Vertical Mapper

2006-08-31 Thread Jackson, Simon \(Capita Symonds\)
Ok, I have the S-Dev-Kit. I need to tie MapBasic into VM so that I can create some batch routine for subtracting some grids, a grid query and outputting as ascii. I asked this awhile back and got not much reply. I assume it is possible? Any good links to sources that maybe able to help? I really

[MI-L] Mapbasic Licence

2006-08-19 Thread Aurchem Exploration - Rob Schneider
Listers, I am thinking about buying Mapbasic (currently running MI8.0 and Encom Discover 8) but there is no trial and I have not programmed since Fortran, Pascal days (ie. only procedural programming, no object oriented experience). Does anyone out there have an old version they would like to

RE: [MI-L] MAPBASIC & Vertical Mapper

2006-08-10 Thread Neil Havermale
/Senarios/Default.html   MidNight Mapper Aka neil       From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jackson, Simon (Capita Symonds) Sent: Wednesday, August 09, 2006 6:37 PM To: mapinfo-l@lists.directionsmag.com Subject: [MI-L] MAPBASIC & Vertical Mapper  

[MI-L] MAPBASIC & Vertical Mapper

2006-08-09 Thread Jackson, Simon \(Capita Symonds\)
Is there a way I can get MapBasic to tie in with vertical mapper so that I can attempt to create a batch grid processing system.   Basically.   Interpolate an irregular points layer (option to select search radius for an IDW) Subtract this layer from a DTM layer Remove zeros from resu

[MI-L] MapBasic: SearchInfo() and Seamless tables

2006-08-05 Thread Bill Thoen
When using SearchInfo(i, SEARCH_INFO_TABLE) and I hit a seamless table, this gives me the name of the internal table at the search point. Anyone know how I can get the name of the seamless table that contains that table? (I need the label expression for that layer.) - Bill Thoen _

Re: [MI-L] MapBasic - How to tell if a ButtonPad is Showing

2006-08-02 Thread Lars I. Nielsen (GisPro)
Hi Nicki, Certainly :-) Dim i As SmallInt Dim WID As Integer Dim name As String For i = 1 To NumAllWindows() WID = WindowID(-i) If WindowInfo(WID,WIN_INFO_TYPE) = WIN_BUTTONPAD Then name = WindowInfo(WID,WIN_INFO_NAME) If WindowInfo(WID,WIN_INFO

RE: [MI-L] MapBasic - How to tell if a ButtonPad is Showing

2006-08-02 Thread Peter Horsbøll Møller
Title: RE: [MI-L] MapBasic - How to tell if a ButtonPad is Showing Hi, Here is a small function that will toggle the appearance of a named buttonpad. You can use this as inspiration ;-) - ButtonPadInfo(name_of_buttonpad, BTNPAD_INFO_WINID) will return the WindowID of the buttonpad

[MI-L] MapBasic - How to tell if a ButtonPad is Showing

2006-08-02 Thread Nicki Cozens
Re the posting on 07-21-2006 and reply by Lars I. Nielsen: Do you have an example of how WindowInfo is used to find the Show/Hide status of a floating button bar? I'm struggling with showing and hiding a button pad. I create the button bar and make sure that it has show as one of the attribu

[MI-L] MapBasic Question

2006-08-01 Thread Comparri, Erin @ Tempe
Hi Tom,   The statement   Delete From  Table_A  Where Rowid =  id_number should work. Good Luck!   Erin   Erin Comparri | Mapping SpecialistCB Richard Ellis | CBRE Mapping Center1620 Fountainhead Pkwy, Suite 610 | Tempe, AZ 85282MC 877 580 4674 | F 480 929 6400 [EMAIL PROTECTED] | www.c

Re: [MI-L] MapBasic Question

2006-08-01 Thread [EMAIL PROTECTED]
Hi Tom, Try: delete from tablename [where rowid=n] You'll need to supply the table name in place of "tablename". The optional rowid where clause allows you to select a particular record to delete. -- Eric Johnson Tom Halbrook wrote: Hi Listers: Being a MapBasic Neophyte, I have what

[MI-L] MapBasic Question

2006-08-01 Thread Tom Halbrook
Hi Listers:   Being a MapBasic Neophyte, I have what will probably be a dumb question. But here goes any way.   I manually select a record from table A, append it to table B, delete the selected record from table A and then save both tables.   To automate steps I have built a button p

Re: [MI-L] MAPBASIC Object or not Object?

2006-07-28 Thread Phil Waight
ialprojects.com.au Skype: PhilWaight     - Original Message - From: Bill Thoen To: Spencer Simpson Cc: mapinfo-l@lists.directionsmag.com Sent: Saturday, July 29, 2006 1:39 AM Subject: Re: [MI-L] MAPBASIC Object or not Object? Spencer Simpson wrote:>No, I'v

RE: [MI-L] MAPBASIC Object or not Object?

2006-07-28 Thread Peter Horsbøll Møller
an kommer man dertil og er det overhovedet muligt? Læs mere om årets MapInfo konference på www.cowi.dk/mapinfokonference -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bill Thoen Sent: Friday, July 28, 2006 5:39 PM To: Spencer Simpson Cc: mapinfo-l@

Re: [MI-L] MAPBASIC Object or not Object?

2006-07-28 Thread Bill Thoen
Spencer Simpson wrote: No, I've found that aliases (especially objects) can act strangely if you try to extract their values more than once between two successive fetches. Maybe newer versions of MapInfo are more robust, but it conditioned me to always fetch aliases into variables back in the 19

RE: [MI-L] MAPBASIC Object or not Object?

2006-07-28 Thread Spencer Simpson
There may also be some subtle corruption that a Pack Table would reveal. HTH Spencer -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bill Thoen Sent: Friday, July 28, 2006 10:27 AM To: mapinfo-l@lists.directionsmag.com Subject: Re: [MI-L] MAPBASIC Object o

Re: [MI-L] MAPBASIC Object or not Object?

2006-07-28 Thread Bill Thoen
Spencer Simpson wrote: I’m not going to pretend I understand what’s going on. However, I’ve found that aliases act flaky if you refer to them too many times between fetches. I don't think they're flakey, you just have to understand how they work. Every time you fetch a new record, that upd

Re: [MI-L] MAPBASIC Object or not Object?

2006-07-28 Thread Bill Thoen
Test the value of OBJ_INFO_TYPE just before you evaluate the expression. It should equal 1. If you haven't included MapBasic.def, or if you set up a variable like obj_info_type, that could cause that error. Also, it's better form to use the defined constants OBJ_TYPE_PLINE and OBJ_TYPE_REGION i

RE: [MI-L] MAPBASIC Object or not Object?

2006-07-28 Thread Spencer Simpson
mag.com Subject: [MI-L] MAPBASIC Object or not Object? Hi   I have what I believe is an object in a layer - I think it's a line - if I query it in the Maspbasic window in MI with "select objectinfo (obj,1) from table_name" then look at the selection table I see object type 3 ie a

[MI-L] MAPBASIC Object or not Object?

2006-07-28 Thread Nicki Cozens
Hi   I have what I believe is an object in a layer - I think it's a line - if I query it in the Maspbasic window in MI with "select objectinfo (obj,1) from table_name" then look at the selection table I see object type 3 ie a line.   If I use the following line in some Mapbasic code whi

[Spam] RE: [MI-L] Mapbasic Program - Create Thin Arrows

2006-07-24 Thread Juan José Del Toro Madrueño
lto:[EMAIL PROTECTED] En nombre de Paul Smith Enviado el: Domingo, 23 de Julio de 2006 08:30 p.m. Para: 'Frank Aaron (PL/EUS)' CC: 'MapInfo List' Asunto: RE: [MI-L] Mapbasic Program - Create Thin Arrows   Hi Frank,   You can do this in Mapinfo   1. Create points from your coo

RE: [MI-L] Mapbasic Program - Create Thin Arrows

2006-07-23 Thread Paul Smith
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Frank Aaron (PL/EUS)Sent: Sunday, 23 July 2006 1:26 AMTo: mapinfo-l@lists.directionsmag.comSubject: [MI-L] Mapbasic Program - Create Thin Arrows Hi, Does anyone know of a MapBasic program that can read a column with azimuths

[MI-L] Mapbasic Program - Create Thin Arrows

2006-07-22 Thread Frank Aaron \(PL/EUS\)
Title: Mapbasic Program - Create Thin Arrows Hi, Does anyone know of a MapBasic program that can read a column with azimuths (heading) and create an arrow in the direction of the required heading? BR Frank Aaron, MSc. Physics, MSEE Staff Wireless Systems Engineer, RF Engineering Services

Re: [MI-L] MapBasic - How to tell if a ButtonPad is Shown or not?

2006-07-21 Thread Lars I. Nielsen (GisPro)
Hi Bill, WindowInfo will give you the state of the floating buttonpad window. A docked toolbar is always visible. Best regards / Med venlig hilsen Lars I. Nielsen GisPro Bill Thoen wrote: In ButtonPadInfo() there doesn't seem to be any way to tell if a ButtonPad is visible. This status is t

[MI-L] MapBasic - How to tell if a ButtonPad is Shown or not?

2006-07-21 Thread Bill Thoen
In ButtonPadInfo() there doesn't seem to be any way to tell if a ButtonPad is visible. This status is tracked in the "Toolbar Options" dialog (MI menu Options > Toobars) but there doesn't seem to to be any to get to it from MapBasic. Anyone know where the Show/Hide status of toolbars is kept? _

[MI-L] MAPBASIC: Working with a user selected part of a region/polygon

2006-07-21 Thread Nicki Cozens
Hi I'm new to Mapbasic and am failing to work out how to do this - v frustrating! I would like to take certain nodes selected by a user from a region/polygon and work with them. How do I access the selected nodes. I've tried saving the selection into a temporary table but it just seems to save t

[MI-L] mapbasic 8.5 (xml,ftp and HTML support)

2006-07-17 Thread Scott.Snashall
Hello all, I am writing up a business case for upgrading from MapInfo version 7.0 to 8.5 and mapbasic 8.5. I am specifically interested in some of the new features that have been added into mapbasic ie (xml,ftp and HTML support )> . Would anyone have some more literature or exa

RE: [MI-L] MapBasic - Expanding Munged filenames on the MapInfoRecentFiles menu

2006-07-14 Thread Peter Horsbøll Møller
Title: Re: [MI-L] MapBasic - Expanding Munged filenames on the MapInfoRecentFiles menu I see two possible places to store that information:   1. The MapInfow.prf where MapInfo normally stores the preferences 2. The Registry   Unfortunately I'm at the moment sitting at a computer wi

Re: [MI-L] MapBasic - Expanding Munged filenames on the MapInfo RecentFiles menu

2006-07-13 Thread Uffe Kousgaard
From: "Bill Thoen" <[EMAIL PROTECTED]> Or does MI keep a full copy of the filename hidden behind the menu and just display the munged version? That is almost 100% certain. Regards Uffe ___ MapInfo-L mailing list MapInfo-L@lists.directionsmag.com ht

[MI-L] MapBasic - Expanding Munged filenames on the MapInfo Recent Files menu

2006-07-13 Thread Bill Thoen
I was asked a question about how to get the full filename from the Recent Files menu in MapInfo. The text can be picked off by using the MenuitemInfoByHandler() function, but how do you exapnd a file name like G:\MapInfo\...\LetterTemplate.wor? My first thought is to use the Windows API functions

Re: [MI-L] MapBasic Language Definition and program building

2006-07-09 Thread Uffe Kousgaard
Some Ultraedit / mapbasic resources: ftp://www.ultraedit.com/wf/mapbasic.txt http://www.mapinfo-l.com/Wiki/UltraEdit http://lanstorp.com/ Regards Uffe - Original Message - From: "David Baker" <[EMAIL PROTECTED]> To: Sent: Thursday, July 06, 2006 3:00 PM Subject: Re:

RE : [MI-L] MapBasic Language Definition and program building

2006-07-06 Thread Robin Prest
mailto:[EMAIL PROTECTED] De la part de Mike TongeEnvoyé : jeudi 6 juillet 2006 14:37À : MapInfo-L@lists.directionsmag.comObjet : [MI-L] MapBasic Language Definition and program building Hi List   Does anyone have a language definition for mapbasic that could be used with ultraedit to p

Re: [MI-L] MapBasic Language Definition and program building

2006-07-06 Thread David Baker
On 6 Jul 2006 at 13:37, Mike Tonge <[EMAIL PROTECTED]> wrote: > Does anyone have a language definition for mapbasic that could be used with > ultraedit to provide syntax highlighting? I downloaded a file called mapbasic.txt from somewhere, and the same site also included instructions on how to

Re: [MI-L] MapBasic Language Definition and program building

2006-07-06 Thread Bill Thoen
On Thu, Jul 06, 2006 at 01:37:14PM +0100, Mike Tonge wrote: > Also does anyone know if makefiles are possible with mapbasic code? > Yes, and they work great. I use GNU Make with UE and the only time I use the MapBasic editor interactively any more is when I teach a MapBasic class. You do hav

[MI-L] MapBasic Language Definition and program building

2006-07-06 Thread Mike Tonge
Hi List   Does anyone have a language definition for mapbasic that could be used with ultraedit to provide syntax highlighting?   Also does anyone know if makefiles are possible with mapbasic code?   Mike Summer Placement Student Atkins All New Yahoo! Mail – Tired of [EMAIL PROTECTED]@

RE: [MI-L] MapBasic

2006-06-27 Thread Peter Horsbøll Møller
MAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matthew DolanSent: Tuesday, June 27, 2006 3:13 PMTo: mapinfo-l@lists.directionsmag.comSubject: [MI-L] MapBasic Hi all:   I was wondering if there is a site or book, etc..  that introduces users to MapBasic functionality and commands.  I a

[MI-L] MapBasic

2006-06-27 Thread Matthew Dolan
Hi all:   I was wondering if there is a site or book, etc..  that introduces users to MapBasic functionality and commands.  I am a heavy user of MapInfo 6.5, but have no programming background.  I am thinking that using the MB control would open up a whole new world to me and take my skil

Re: [MI-L] Mapbasic to create DBMS table from Access

2006-06-25 Thread Richard Greenwood
On 6/23/06, Graham Bish <[EMAIL PROTECTED]> wrote: Hi fellow MapInfo users I am trying to build a .WOR File to DBMS a series of tables out of a Ms Access database. Below is the MapBasic script that is displayed in the MapBasic window in MapInfo V8 (but it doesn't work when placed in a workspac

[MI-L] Mapbasic to create DBMS table from Access

2006-06-22 Thread Graham Bish
  Hi fellow MapInfo users   I am trying to build a .WOR File to DBMS a series of tables out of a Ms Access database.   Below is the MapBasic script that is displayed in the MapBasic window in MapInfo V8 (but it doesn’t work when placed in a workspace)   Does anyone know the correct c

RE: [MI-L] Mapbasic - Passing paramaters to Main

2006-06-13 Thread Jakob Lanstorp
MapBasic window. Especially when the data is coordinates HTH, Jakob -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brendan Tagg Sent: Tuesday, June 13, 2006 4:37 AM To: mapinfo-l@lists.directionsmag.com Subject: [MI-L] Mapbasic - Passing paramaters to Main

[MI-L] Mapbasic - Passing paramaters to Main

2006-06-12 Thread Brendan Tagg
Does anyone know how to pass (of if its possible to) pass paramaters into /out of a mapbasic program so that it can be called from the mapbasic window (or a workspace). For example an app might be declare function product(x as float ,y float) as float function product(x as float ,y float) as f

RE: [MI-L] MapBasic Code to ESRI Conversion

2006-06-08 Thread Warren Vick, Europa Technologies Ltd.
June 2006 23:18 To: MapInfo-L@lists.directionsmag.com Subject: [MI-L] MapBasic Code to ESRI Conversion MapInfo and ESRI gurus: I'm trying to convert a MapBasic statement to ESRI: select * from theTable where ObjectLen(IntersectNodes(theTable.obj,theObj,INCL_COMMON),"mi")>0.001 'Note

[MI-L] MapBasic Code to ESRI Conversion

2006-06-07 Thread Behrmann, Jae
MapInfo and ESRI gurus: I'm trying to convert a MapBasic statement to ESRI: select * from theTable where ObjectLen(IntersectNodes(theTable.obj,theObj,INCL_COMMON),"mi")>0.001 'Note theTable is a mappable table and theObj is a variable (graphical object) 'The statement selects all records in th

[MI-L] MapBasic 8.5 and XML Support

2006-06-07 Thread Bill Thoen
Looking through the online help for MapBasic 8.5, I don't see any reference to XML processing. I thought I heard that this feature was in the 8.5 version of MapInfo/MapBasic. Does anyone know where it is? ___ MapInfo-L mailing list MapInfo-L@lists.dire

[MI-L] MapBasic and "Code Sharing"

2006-06-05 Thread Phil Waight
There are currently 2 common methods of distributing usable code in the MapBasic world: the MBX or .MB source. The MBX will be free or for a fee and the accompanying licence will generally indicate the terms of use. (PS: I have yet to see a program licence saying "please feel free to reverse

SUM: [MI-L] MapBasic Question: Custom Shortcut Menu

2006-06-02 Thread Bill Thoen
Bill Thoen wrote: Using MapBasic, does anyone know if it is possible to create a custom "mapper shortcut" menu for one map window and a different one for another map window in the same session? Well, well... Once again, this list comes up with the answer! Thanks to Jacques Paris and Steve Nabo

[MI-L] MapBasic Question: Custom Shortcut Menu

2006-06-02 Thread Bill Thoen
Using MapBasic, does anyone know if it is possible to create a custom "mapper shortcut" menu for one map window and a different one for another map window in the same session? - Bill Thoen ___ MapInfo-L mailing list MapInfo-L@lists.directionsmag.com ht

[MI-L] Mapbasic applications

2006-05-24 Thread Possberg, Hendrik
I'm looking for information regarding the creation of applications for external users. I developed extensive applications for internal use, myself but I think that I'll have to consider specifics for the external use. Can anyone give useful tips on that subject? Is the book "Mapbasic Developer gu

RE: [MI-L] MapBasic C# dll

2006-05-19 Thread SCISOFT
article. IL Thomas GeoSciSoft  - Perth, Australia From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of McGowan Dean Sent: Friday, May 19, 2006 4:30 PM To: mapinfo-l@lists.directionsmag.com Subject: [MI-L] MapBasic C# dll   I have written a dll in C# express edition and would

Re: [MI-L] MapBasic C# dll

2006-05-19 Thread Uffe Kousgaard
riginal Message - From: McGowan Dean To: mapinfo-l@lists.directionsmag.com Sent: Friday, May 19, 2006 10:30 AM Subject: [MI-L] MapBasic C# dll   My MB application compiles correctly but produces error 342 (“External library does not contain GPS_X…”) at runtime. Ca

[MI-L] MapBasic C# dll

2006-05-19 Thread McGowan Dean
I have written a dll in C# express edition and would like to call its functions from MapBasic. Here are my scripts:   C# using System; using System.Collections.Generic; using System.Text; using System.Data;   namespace MapInfoTools {     public class MIFunctions     {     pu

RE: [MI-L] MapBasic and MapXtreme

2006-05-11 Thread Peter Horsbøll Møller
1, 2006 7:03 PMTo: mapinfo-l@lists.directionsmag.comSubject: [MI-L] MapBasic and MapXtreme Hi all, Excuse my ignorance in this, but hoping to understand a little bit more about the relationship between MapInfo capability with web software (MapXtreme).  After a little research I see that you can use .NET la

[MI-L] MapBasic and MapXtreme

2006-05-11 Thread Ronning, Christine
Title: MapBasic and MapXtreme Hi all, Excuse my ignorance in this, but hoping to understand a little bit more about the relationship between MapInfo capability with web software (MapXtreme).  After a little research I see that you can use .NET languages which brings me to my question. If f

[MI-L] MapBasic StdCall DLL usage

2006-05-02 Thread Bill Thoen
Does anyone know how to declare (in MapBasic) a function from a stdcall DLL that returns a 'void *'? This function I have returns a handle to be used in calling most of the other functions in the library, and I'm wondering if I can just declare it as an integer. I'm thinking that the integer retur

RE: [MI-L] Mapbasic stops when window is no longer active

2006-03-31 Thread Simon Allen
Title: Message One for you David From: Bob Young [mailto:[EMAIL PROTECTED] Sent: 31 March 2006 12:21To: Simon Allen; David Reid; mapinfo-l@lists.directionsmag.comSubject: Re: [MI-L] Mapbasic stops when window is no longer active Hi Simon   My gut feeling is that when you manually do steps

RE: [MI-L] Mapbasic stops when window is no longer active

2006-03-30 Thread David Reid
-From: Simon Allen [mailto:[EMAIL PROTECTED] Sent: Thursday, March 30, 2006 11:42 AMTo: David Reid; mapinfo-l@lists.directionsmag.comSubject: RE: [MI-L] Mapbasic stops when window is no longer active David   Not sure about this.   However,  some observations:   Unless you're seeing the

RE: [MI-L] Mapbasic stops when window is no longer active

2006-03-30 Thread David Reid
stops (as indicated in the first part of this thread) or slows down even more.   Dave   -Original Message-From: Simon Allen [mailto:[EMAIL PROTECTED] Sent: Thursday, March 30, 2006 11:26 AMTo: David Reid; mapinfo-l@lists.directionsmag.comSubject: RE: [MI-L] Mapbasic stops when window

RE: [MI-L] Mapbasic stops when window is no longer active

2006-03-30 Thread Simon Allen
mapinfo-l@lists.directionsmag.comSubject: RE: [MI-L] Mapbasic stops when window is no longer active No!  sorry not to be clear on this.  The progress bars aren't displaying, however, this process (as shown in my code) takes longer than if I did the same tasks manually.   Furthermore, if

RE: [MI-L] Mapbasic stops when window is no longer active

2006-03-30 Thread Simon Allen
Title: Message David   You imply that at some point during the execution Progress Bars are displaying?   At which point?   ta From: David Reid [mailto:[EMAIL PROTECTED] Sent: 30 March 2006 18:19To: Simon Allen; mapinfo-l@lists.directionsmag.comSubject: RE: [MI-L] Mapbasic stops when

RE: [MI-L] Mapbasic stops when window is no longer active

2006-03-30 Thread David Reid
cally than manually and requires me to nurse Mapinfo the whole time by keeping it in front.   Thanks, David Reid  -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Simon AllenSent: Thursday, March 30, 2006 10:17 AMTo: mapinfo-l@lists.directionsmag.comSubject: RE:

RE: [MI-L] Mapbasic stops when window is no longer active

2006-03-30 Thread Simon Allen
Hi Joe   Submitted a similar request myself recently . You need to disable Progress Bars: with "Set ProgressBars Off".   Ta From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Joe NunnSent: 30 March 2006 16:30To: mapinfo-l@lists.directionsmag.comSubject: [MI-L] Mapb

[MI-L] Mapbasic stops when window is no longer active

2006-03-30 Thread Joe Nunn
Dear All,   I am sure this has been asked before but here goes… I have program that runs fine, but when I start using another program (ie move the active window) mapinfo appears to halt. When I make the mapinfo window active again it continues to process files.  Any ideas how to make it r

RE: [MI-L] MapBasic 'Call' statement at runtime

2006-03-21 Thread Spencer Simpson
Individual DDE calls carry a lot of overhead; I suspect that it would be faster to include the parameters in the message string sent to the MBX. The application's RemoteMsgHandler would parse the string; the first atom in the string would identify the function and the other atoms would identify th

Re: [MI-L] MapBasic 'Call' statement at runtime

2006-03-21 Thread Lars V. Nielsen \(Hvenegaard\)
at using Eval / RemoteQueryHandler likewise. HTH Best regards / Med venlig hilsen Lars V. Nielsen Hvenegaard A/S http://www.hvenegaard.dk - Original Message - From: "Thomas Jund" <[EMAIL PROTECTED]> To: "Lars V. Nielsen (Hvenegaard)"

Re: [MI-L] MapBasic 'Call' statement at runtime

2006-03-21 Thread Lars V. Nielsen \(Hvenegaard\)
lsen Lars V. Nielsen Hvenegaard A/S Rugaardsvej 55, DK-5000 Odense C Denmark Tel. +45 6313 5050 http://www.hvenegaard.dk - Original Message - From: "Thomas Jund" <[EMAIL PROTECTED]> To: Sent: Tuesday, March 21, 2006 9:54 AM Subject: [MI-L]

[MI-L] MapBasic 'Call' statement at runtime

2006-03-21 Thread Thomas Jund
Hi there I am confronted with a problem regarding the MapBasic 'Call' statement. The restriction section of the documentation says: 'You cannot issue a Call statement through the MapBasic window.' I need to make a call from MapInfo to a own defined Sub or Function with parameters. The call to

Re: [MI-L] MapBasic Bitwise Operators

2006-03-08 Thread Trey Pattillo
MB does not do true bit operations I have a dll with a whole lot of delphi functions built in it you can get it here http://www.wap3.com/download/ultramsg.zip does string math like s="(5+2)*3" and gets back the answer does HTLM output better than that dumb message window and a lot more On We

Re: [MI-L] MapBasic Bitwise Operators

2006-03-08 Thread Bill Thoen
On Thu, Mar 09, 2006 at 12:06:26PM +1300, Ian Tidy wrote: > I am wanting to use bitwise operators in MapBasic, but I can't find any > information on them. > > Does anyone know if the exist and how to use them, or do I need to write my > own functions? You have to write your own, but it's pretty

[MI-L] MapBasic Bitwise Operators

2006-03-08 Thread Ian Tidy
Title: MapBasic Bitwise Operators Hi All, I am wanting to use bitwise operators in MapBasic, but I can't find any information on them. Does anyone know if the exist and how to use them, or do I need to write my own functions? Cheers Ian Ian Tidy GIS Administrator Works Asset Departm

RE: [MI-L] MapBasic API Call for XML

2006-02-02 Thread Jakob Lanstorp
iginal Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ian Tidy Sent: Wednesday, February 01, 2006 2:32 AM To: MapInfo-L Cc: [EMAIL PROTECTED] Subject: [MI-L] MapBasic API Call for XML Hi All, I am looking for a Windows DLL that I can call for reading and writing XM

RE: [MI-L] MapBasic API Call for XML

2006-02-01 Thread SCISOFT
; From: [EMAIL PROTECTED] [mailto:mapinfo-l- > [EMAIL PROTECTED] On Behalf Of Ian Tidy > Sent: Wednesday, February 01, 2006 9:32 AM > To: MapInfo-L > Cc: [EMAIL PROTECTED] > Subject: [MI-L] MapBasic API Call for XML > > Hi All, > > I am looking for a Windows DLL that I can

[MI-L] MapBasic API Call for XML

2006-01-31 Thread Ian Tidy
Hi All, I am looking for a Windows DLL that I can call for reading and writing XML for MapBasic. Cheers Ian Ian Tidy GIS Administrator Works Asset Department Napier City Council Hastings St, Private Bag 6010, Napier, New Zealand Phone +64-6-835-7579 Ext. 8115 Fax +64-6-835-7574 mailto:[EMAIL PR

RE: [MI-L] MI - L - MapBasic Help with User Selections

2006-01-30 Thread Terry McDonnell
ing usage of the tool If llStartPoint then ... Code to process start point co-ords Else ... Code to process start centreline point co-ords End If ... And you're welcome. Terry -Original Message- From: Carolyn Bergin [mailto:[EMAIL PROTECTED] Sent: 30 January 200

RE: [MI-L] MI - L - MapBasic Help with User Selections

2006-01-27 Thread Terry McDonnell
ed? ... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Carolyn Bergin Sent: 27 January 2006 06:30 To: Terry McDonnell Subject: [MI-L] MI - L - MapBasic Help with User Selections Hi list I have searched the archives because im sure ive read about this in

[MI-L] MI - L - MapBasic Help with User Selections

2006-01-26 Thread Carolyn Bergin
Hi list I have searched the archives because im sure ive read about this in the past but I cant seem to find what I need. Basically im writing a tool that will build a pipeline between a serious of centreline points. I need for the user of the tool to be able to select the beginning centreline

RE: [MI-L] MAPBASIC: AlterObject

2006-01-09 Thread Peter Horsbøll Møller
MAIL PROTECTED] On Behalf Of Spencer Simpson Sent: Monday, January 09, 2006 11:23 PM To: 'Bill Thoen' Cc: mapinfo-l@lists.directionsmag.com Subject: RE: [MI-L] MAPBASIC: AlterObject There was once the suggestion that you could write a function that returned an object and use SQL Update to upd

RE: [MI-L] MAPBASIC: AlterObject

2006-01-09 Thread Spencer Simpson
Behalf Of Bill Thoen Sent: Monday, January 09, 2006 4:03 PM To: Tomasz Oberski Cc: mapinfo-l@lists.directionsmag.com Subject: Re: [MI-L] MAPBASIC: AlterObject Tomasz Oberski wrote: > How to change symbology of serveral mapinfo objects? The MapBasic > AlterObject command lets to modify p

Re: [MI-L] MAPBASIC: AlterObject

2006-01-09 Thread Bill Thoen
Tomasz Oberski wrote: How to change symbology of serveral mapinfo objects? The MapBasic AlterObject command lets to modify pen and brush of current (selected) object. How can I use that command to change pen and brush of several objects at once?Maybe there is another method of changing object'

[MI-L] MAPBASIC: AlterObject

2006-01-09 Thread Tomasz Oberski
Hi, How to change symbology of serveral mapinfo objects? The MapBasic AlterObject command lets to modify pen and brush of current (selected) object. How can I use that command to change pen and brush of several objects at once?Maybe there is another method of changing object's symbology? Than

RE: [MI-L] MapBasic Label Clause - Problems using variables as Positionand Offset

2005-12-28 Thread Peter Horsbøll Møller
29 PM To: Mike Jenne; MapInfo-L@lists.directionsmag.com Subject: RE: [MI-L] MapBasic Label Clause - Problems using variables as Positionand Offset Mike, I would recommend that you built your Set Map command using a command string: sCommand = "Set Map Window " &

RE: [MI-L] MapBasic Label Clause - Problems using variables as Positionand Offset

2005-12-28 Thread Mike Jenne
Peter, I tried your solution, and it worked well. Mange tak! Mike Jenne -Original Message- From: Peter Horsbøll Møller [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 28, 2005 3:29 PM To: Mike Jenne; MapInfo-L@lists.directionsmag.com Subject: RE: [MI-L] MapBasic Label

RE: [MI-L] MapBasic Label Clause - Problems using variables as Positionand Offset

2005-12-28 Thread Peter Horsbøll Møller
OTECTED] http://www.cowi.dk/gis -----Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Jenne Sent: Wednesday, December 28, 2005 10:09 PM To: MapInfo-L@lists.directionsmag.com Subject: [MI-L] MapBasic Label Clause - Problems using variables as Positionand Offs

[MI-L] MapBasic Label Clause - Problems using variables as Position and Offset

2005-12-28 Thread Mike Jenne
Afternoon (here in the States, anyway) all! I've run into a slight problem writing MapBasic code. In Set Map, I'm trying to use variables for the Position and Offset portions of the Label clause. A sample of this code is below. The intent of this piece of code is to extract values (pertainin

[MI-L] Mapbasic window has stopped working

2005-12-21 Thread David Reid
Greetings All, What would make the Mapbasic window stop functioning in terms of issueing commands? I setout to use the MB window for a simply update process Update Query50 Set CLASS = "A41" But nothing happens when I initiate this (ie press [Enter] while that line is active). Thanks in advanc

Re: MI-L MapBasic opening Excel

2005-10-27 Thread MikeKilmore
Ian, Peter, Ian, r, Jorge, and Jacque, Thanks all for the great outpourings of help. I will try them out and let the list know how it went. Gratefully, Mike

Re: MI-L MapBasic: control radiogroup out off contol

2005-10-27 Thread Lars V. Nielsen (GisPro)
Hi Jacques, How are you disabling the radiogroups ? It sounds like a problem with a duplicated ID for some groups, or maybe the handler name ? Although possible to some extent, radiogroup controls are not very happy about having none of its radio buttons selected, as this is a dubious state

Re: MI-L MapBasic: fileopendlg$() and filesaveasdlg$()

2005-10-27 Thread Lars V. Nielsen (GisPro)
Hi Jacques, No choice + OK makes no sense, so they shouldn't be able to return given that input. A legal choice + OK or Cancel should be - and is - the only valid responses from the standard file dialogs. I've used both dialog routines in handlers subs without any problems, e.g. in a handl

MI-L MapBasic: control radiogroup out off contol

2005-10-27 Thread Jacques Paris
You may have discarded my first message because you did have the slightest idea of the problem or knowledge of the context (MapBasic6.5). Here is another one that let me flabbergasted. It is in the same context of building a dialog box with plenty of radiogroups. Each one should be disabled (excep

MI-L MapBasic: fileopendlg$() and filesaveasdlg$()

2005-10-27 Thread Jacques Paris
I am certainly a very late bloomer in the way I am trying finally to do certain "standard" things and discovering some problems. I am using version MB6.5 to build a dialog box with lots of controls most of them having their own handlers. One would be a button launching the procedure to record the

RE: MI-L MapBasic opening Excel

2005-10-27 Thread Jacques Paris
MapInfo-L@lists.directionsmag.com Subject: RE: MI-L MapBasic opening Excel Hi Mike, I personally use of the windows shell32 function "FindExecutable" which returns the path to the program associated with a file type. The function is not restricted to Excel files, it opens any file type with any associated pr

  1   2   3   4   5   6   >