RE: MI-L Creating pushbutton icons

2004-07-19 Thread Terry McDonnell
Mike I've been through this exact thing and ended up building my own .dlls with my own bitmaps, to create the custom tool buttons. You can put the numeric definitions to your resources in any/a new .def file. A great help is Jacque Paris's Resource Hacker, on his site:

RE: MI-L sql select problem

2004-07-19 Thread Dominic Lowe
The Mod keyword might be what you need. i.e. SELECT * FROM ContourTable WHERE ElevationColumn MOD 5 = 0 This will return all values of Elevation that can be divided exactly by 5. Hope that helps, Dominic -Original Message- From: Véronique De Laet [mailto:[EMAIL PROTECTED] Sent: 17

RE: MI-L sql select problem

2004-07-19 Thread Dominic Lowe
Sorry, missed Bill's answer! -Original Message- From: Bill Thoen [mailto:[EMAIL PROTECTED] Sent: 17 July 2004 22:18 To: Véronique De Laet Cc: [EMAIL PROTECTED] Subject: Re: MI-L sql select problem On Sat, 17 Jul 2004, Véronique De Laet wrote: We have a database with elevation values

RV: MI-L sql select problem

2004-07-19 Thread Gamiz Ribelles, Sergi (Regsa)
If you cannot use the MOD function, use the statement WHERE: INT(ELEVATION/5) = (ELEVATION/5) This works well Have luck SERGI -Mensaje original- De: Véronique De Laet [mailto:[EMAIL PROTECTED] Enviado el: sábado, 17 de julio de 2004 21:30 Para: [EMAIL PROTECTED] Asunto: MI-L sql select

MI-L Newbie MapInfo Professional Question

2004-07-19 Thread Sean Galbraith
I just finished making my first layout using MI:P and now I need to insert a jpg of the company's logo... but I can't figure out how to do this... Any tips? Thanks, Sean - List hosting provided by Directions Magazine |

RE: MI-L Creating pushbutton icons

2004-07-19 Thread Terry McDonnell
Hi Lars Thanks for putting me straight. I only meant that it was on (or can be found from) his site. My apologies (and credits) to Angus Johnson Terry -Original Message- From: Lars V. Nielsen (GisPro) [mailto:[EMAIL PROTECTED] Sent: 19 July 2004 11:54 To: [EMAIL PROTECTED] Subject:

RE: MI-L Newbie MapInfo Professional Question

2004-07-19 Thread Nielsen, Erik R
Open your jpg in a new Mapper Window. Zoom to the layer. Add a Layout Frame in your layout and show your logo mapper in there. Erik -Original Message- From: Sean Galbraith [mailto:[EMAIL PROTECTED] Sent: 19 July 2004 16:33 To: [EMAIL PROTECTED] Subject: MI-L Newbie MapInfo Professional

Re: MI-L Newbie MapInfo Professional Question

2004-07-19 Thread Sean Galbraith
Wow! Thanks for all the replies, everyone. That was fast. Went with the open table + frame combo. Thanks! Sean - List hosting provided by Directions Magazine | www.directionsmag.com | To unsubscribe, e-mail: [EMAIL PROTECTED]

MI-L How to delete selected rows?

2004-07-19 Thread Majzoub Sami
Hi all, I would like to know if there is a function (or a way) in MapBasic that permits us to delete several rows at a time. Isn't it possible to select the specific rows and delete them by a way or another in MapBasic? Thanks Sami -

MI-L MapPoint File Importer

2004-07-19 Thread Charles Kane
Does anyone know of a mapbasic program that will allow you to import MapPoint files? Charles Kane CDS Business Mapping 67 Broad Street, 6th Floor Boston, MA 02109 Phone: 617-737- Fax: 617-737-6233 This communication, together with any attachments hereto or links contained herein, is

MI-L training course material

2004-07-19 Thread Robert Crossley
Hi all, I am presenting a training course for my application users, and need to include some core MapInfo skills. Is there any standard training course material out there in the public domain or for a reasonable per person charge? It has been years since I have looked at the tutorial data that

MI-L EasiMaps 6 Configuration Tool

2004-07-19 Thread Kerrie Urquhart
Hello List, Can anyone help with an answer to this query? After changing and saving the Selection Fill Style in the Print Settings of the EasiMaps 6 Configuration Tool it keeps reverting to the original setting. Is anyone aware of a way to get around this problem? Regards, Kerrie Urquhart

Re: MI-L training course material

2004-07-19 Thread Bill Thoen
On Tue, 20 Jul 2004, Robert Crossley wrote: I am presenting a training course for my application users, and need to include some core MapInfo skills. Is there any standard training course material out there in the public domain or for a reasonable per person charge? It has been years

MI-L 'pause' button

2004-07-19 Thread Timothy Mashford
I have a bunch of sequential points from a car-mounted GPS, and I've created a script to trace along the points and display a large red dot one at a time - kind of like a 'play' button. I'm wondering how to write a 'pause' button? Is there any way to check if the (e.g.) Escape key was pressed? I