Re: [DUG] Topgrid in BDS2006

2010-04-13 Thread matt
I second that on both counts. I've just ripped telerik out of a million dollar + project as it was too slow for anything outside an intranet deployment. Dev express very good. Matt -- -Original Message- From: "Cameron Hart" Date: Tue, 13 Apr 20

Re: [DUG] Delphi talking to C#

2010-12-13 Thread matt
Depends on requirement for comms. Changes rarely: file, registry changes frequently: local db instance / sockets If sending instructions one way consider msmq Personal preference udp messages, this is same effectively as windows messages Matt -- -Original Message

Re: [DUG] Delphi talking to C#

2010-12-13 Thread matt
Btw don't forget that you can reference dlls from either to either, so potentially you can have delphi app with c# dll talking to a c# app, then you could use wcf -- -Original Message- From: Jeremy Coulter Sender: delphi-boun...@delphi.org.nz Date: Tue, 14 Dec 20

Re: [DUG] Delphi developer with 7 years of experience

2009-01-08 Thread matt
Hi sinu what are your salary expextations and would you be interested to move to c# ? -- -Original Message- From: "sinu sudhakaran" Date: 7 Jan 2009 01:26:05 To: NZ Borland Developers Group - Delphi List Subject: [DUG] Delphi developer with 7 years of experienc

Re: [DUG] Delphi Books

2010-01-04 Thread matt
Hi leigh please call me on 021771777 -- -Original Message- From: Leigh Wanstead Date: Tue, 5 Jan 2010 10:48:17 To: NZ Borland Developers Group - Delphi List Subject: Re: [DUG] Delphi Books Hi Matt, I would like to collect all those books from you. Would you

RE: [DUG] Weird behavior in Vista

2007-04-19 Thread Matt Comb
Is your exe by any chance called: Trojan.exe Explorer.exe or anything else that may cause XP to hurl ;) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nick Sent: Friday, 20 April 2007 10:49 a.m. To: NZ Borland Developers Group - Delphi List Subject: [

RE: [DUG] Best way to make this thread safe

2007-05-16 Thread Matt Comb
rText := LogMessage; Synchronize(InternalLogStuff); End; Procedure InternalLogStuff; Begin Do Whatever you have to do to log it. End; Regards, Matt. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nick Sent: Thursday, 17 May 2007 9:08 a.m. To: NZ Bo

RE: [DUG] Best way to make this thread safe

2007-05-16 Thread Matt Comb
If anyone is interested, I can forward through the code. Cheers, Matt. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Conor Boyd Sent: Thursday, 17 May 2007 9:54 a.m. To: NZ Borland Developers Group - Delphi List Subject: RE: [DUG] Best way to make t

Re: Re: [DUG]: boss's lates idea

2002-12-12 Thread Matt Dee
Will the customer know that this is happening? If so than using email is a very simple way of doing it (probably only a few minutes work). If not the idea is full of problems, many clients who have internet will also use proxy's / firewalls etc which could all cause problems. There's a possible

Re: Re: [DUG]: Shock! Horror!

2002-12-16 Thread Matt Dee
I posted similar on Friday, and no-one seemed interested. Have we become apathetic, or is it just Xmas ? I'm just in denial :-) --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website:

[DUG]: Porting to Delphi 6

2003-01-08 Thread Matt Dee
I'm in the middle of porting our main app to Delphi 6 and I came across this probem. in Delphi 4, the following ran ok: if dbgrdBankAccounts.Field[Ord(bkBankNo) + 1].AsString = Company.sDefaultBankAccount then Under Delphi 6 I get an access violation. However, if I break it down into its co

Re: [DUG]: Porting to Delphi 6

2003-01-12 Thread Matt Dee
From: "James Sugrue" <[EMAIL PROTECTED]> >Maybe it has something to do with the way it was calculating >"Field[Ord(bkBankNo) + 1]" > >What happens if you try : > >Field[(Ord(bkBankNo) + 1)] > > >Otherwise, I got nuttin Thanks, I'll try that tommorow. It's not a huge issue, but I would like to

Re: [DUG]: Porting to Delphi 6

2003-01-12 Thread Matt Dee
>Here's a thought ... > >What type is the index to the Field property? Integer? byte? Cardinal if I remember rightly (at home right now). >What type does Ord() return? Cardinal? Pass. >What type is intBankNo? Integer maybe? intBankNo was an integer I created to assign Ord(bkBankNo) to, so I coul

Re: RE: [DUG]: XP versus NT

2003-02-05 Thread Matt Dee
>I find XP generally no problems and not really any slower if you have a >fast machine Erm So it is in fact slower than 2000? :-) Think I'll stick with 2000 for a while longer. --- New Zealand Delphi Users group

Re: [DUG]: Delphi7

2003-02-13 Thread Matt Dee
Hi. Now comes the crunch when I find for example, my rxlib does not work, and it wont work because the authors have stopped working on it since delphi 5. There's an 'official' delhi 6 version on the delphi super page that may work - I think the project has been moved to SourceForge, hang on

Re: [DUG]: Delphi shared class data members?

2003-02-20 Thread Matt Dee
In the unit the Class is defined, have a variable located in the Implementation section that the methods read/write to. Because it's in the Implementation section it's hidden from the outside. The only problem is that any descendents would have to be declared in the same unit, as otherwise th

Re: [DUG]: RxTrayIcon1.Icons

2003-02-25 Thread Matt Dee
Well the Icons property is a IconList (TIconList), and the Icon property is a TIcon, so just use: RxTrayIcon1.Icon := RxTrayIcon1.Icons[ x ]; Hi anyone familiar with RxTrayIcon1 will know it has a list of icons for the animated property. I think that these icons can be manually used as well

Re: [DUG]: RxTrayIcon1

2003-02-25 Thread Matt Dee
Hi all just figured it out for myself: RxTrayIcon1.Icon.Assign(RxTrayIcon1.icons[0]); //desired icon within [] Just make sure you've already created and assigned an Icon to RxTrayIcon1.Icon, otherwise the call to assign will fail. (I think :-) -

[DUG]: Indy and Norton Anti Virus

2003-03-18 Thread Matt Dee
For some reason any email sent via Indy's SMTP client gets 'cached' by Norton until the sending progam has been closed. Other email clients work fine, and I've used this component (TidSMTP) before with Norton and had no problems. Anyone know anything about this proble

Re: Re: [DUG]: Indy and Norton Anti Virus

2003-03-19 Thread Matt Dee
Wild guess time... are you disconnecting the component after the send is complete? Quite possibly Norton is waiting for the session to close before forwarding the message(s) on to the real email server. If you don't implicitly close the session by disconnecting, then it will likely stay open unt

Re: [DUG]: MousePos

2003-03-27 Thread Matt Dee
I found the global Mouse.CursorPos property. Do I have to use that and subtract the mainform position and the listview position or is there something I've missed? TControl.ScreenToClient(const Point: TPoint): TPoint; Takes a screen cordinate, and translates it into local control cordinates. Tha

[DUG]: Good deal

1999-12-13 Thread Matt Powell
info on the VCL - and a CD-ROM! - Matt --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website: http://www.delphi.org.nz

Re: [DUG]: Knob type controls

1999-12-13 Thread Matt Powell
ask. The result looks quite nice. If you're interested, I can e-mail you the source - it comes with about half a dozen components for stuff like antialiased text, scrolling marquees, knobs, sliders and stuff for an MP3 player

Re: [DUG]: Docs

1999-12-16 Thread Matt Powell
> I don't want to cause a 'virtual riot' but can some-one recommend a > book/help file > for all the Window/Delphi Messages The Windows SDK help file? It comes with Delphi... - Matt --- New Ze

Re: [DUG]: I've had it up to here with TEdit descendants

1999-12-20 Thread Matt Powell
tyle mask, which is pretty much useless). Anybody know if one exists? As for the idea of a repository for replacement edit controls and stuff, why not start one? I'd be keen to see it, and even to contribute if I could... - Matt --

Re: [DUG]: Delphi 3 not working for unknown reasons

2000-01-21 Thread Matt Powell
. Bad and Wrong. Before you go out and buy Delphi 4, make sure you've got all the patches (for Delphi) installed, but you can sleep safley in the knowledge that things will work out alright if you get D4. Probably. - Matt

Re: [DUG]: Delphi 3 not working for unknown reasons

2000-01-23 Thread Matt Powell
sarily forward-compatible) or MS's (breaking existing code by rewriting libraries). But it's bad either way. Grr. - Matt --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website: http://www.delphi.org.nz

Re: [DUG]: Kylix and other cough medicines

2000-01-31 Thread Matt Powell
ity of Unix. That's the way it is (huah). - Matt --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website: http://www.delphi.org.nz

Re: [DUG]: Server time

2000-02-08 Thread Matt Powell
e of a problem. Up in the staff cafeteria in the computer science department at Auckland University, they have (or had when I was last there) a calendar from Sun Microsystems. The date on the calendar? 2038 :) - Matt ---

Re: [DUG]: Server time

2000-02-08 Thread Matt Powell
> Yep - Unix people are going to expect grief around 2036 (or 2048?). "2048 - the REAL Y2K..." - Matt ;) --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]

Re: [DUG]: Streams

2000-02-13 Thread Matt Powell
> Hmm, but will the no. of bytes required to represent the offset number be bigger than > the stream you are compressing? :-) Oh ye of little faith! - Matt --- New Zealand Delphi Users group - Delphi List -

Re: [DUG]: VB Like Case statement

2000-02-14 Thread Matt Powell
d) numerical equivalent... eg 'Hello' = 72 101 108 108 111 = 1001000 1100101 1101100 1101100 110 = 1001 0001 1001 0111 0110 0110 1100 1101 1110 = $919766CDE ...but that would be cumbersome ;) - Matt -

Re: [DUG]: VB Like Case statement

2000-02-15 Thread Matt Powell
ltiple disjoint ranges (like 4,11) that share blocks of code. Does anyone know if any compilers actually implement this method? - Matt --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]

Re: [DUG]: Pirateing

2000-02-15 Thread Matt Powell
me date from the HDD? - Matt --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website: http://www.delphi.org.nz

Re: [DUG]: Bitmaps for toollbar

2000-02-18 Thread Matt Powell
> Can somebody advice on where to get a free collection of bitmaps > representing commonly used actions such as Copy,paste,refresh,save etc. It > is for use with tool bar buttons. /me opens Word /me presses Ctrl-PrintScrn /me opens Photosho

Re: [DUG]: Icons bitmaps etc

2000-02-21 Thread Matt Powell
ndor, is questionable though, isnt it? Well, it depends. The other angle on this is that if everybody uses the same icons, software will ultimately be easier to use... I would hope Microsoft would be keen for this to happen... - Matt ---

[DUG]: Fried Brain

2000-02-23 Thread Matt Powell
ho can help me out, but it'll be freeware anyway :) Rest assured you'll get all the fame I can give you, even if not the fortune... TIA - Matt [1] My current one is unlicensed 30-day shareware, and I'm too cheap to register it. -

Re: [DUG]: D5 being problematic - anyone got ideas.

2000-03-29 Thread Matt Powell
it. (but the correct unit is displayed). Occasionally after a compile, the code explorer window stops responding (D5, Win98, IE5.01, D5 service pack installed). The tree won't expand, or respond to any other stimuli. The only way to fix it seems to be to quit and restar

Re: [DUG]: ComboBox with bitmaps and text

2000-04-04 Thread Matt Powell
t parameters (I'm not at home, so I can't check). Using DrawText enables you to specify all sorts of neat things like vertical justification, ellipsis (shortening the text if it doesn't all fit) and so o

Re: [DUG]: printing data.

2000-04-10 Thread Matt Powell
program was trying to read all sorts of stuff off the default printer, which didn't exist... The solution? Check if the printers array is empty, and if it is, quit :) - Matt --- New Zealand Delphi Users group - Delphi

Re: [DUG]: printing data.

2000-04-10 Thread Matt Powell
formation will be returned from that, otherwise there'll be like a 'default' device with A4 paper, 360 dpi, etc. Comments? - Matt --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website: http://www.delphi.org.nz

Re: [DUG]: thread definition.

2000-04-12 Thread Matt Powell
time-consuming tasks can be placed in the "background", and the program will be faster and more responsive to the user. One downside of multi-tasking, or threads, is that it can take up more resources, but at least it gets rid of the smell." :) - The O

Re: [DUG]: thread definition.

2000-04-12 Thread Matt Powell
problem > Could be extended to the problems of WANs vs LANs :) - Matt --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website: http://www.delphi.org.nz

Re: [DUG]: Packing Problem

2000-04-18 Thread Matt Powell
s2 + s[1]; Delete(s, 1, 1); end; end; StrList.Add(s2); end; S is the packed string, Sym is the separator, and StrList is a (probably empty) TStrings instance. For example: UnpackString('This&is&a&test', '&', Memo

Re: [DUG]: Asynchronous Procedure Calls

2000-04-18 Thread Matt Powell
> Has anybody got any examples using the win32 APC's? (Asynchronous Procedure > Calls). Glad you clarified that. I thought you meant Armoured Personnel Carriers. - Matt --- New Zealand Delphi Users group -

Re: [DUG]: RES in Delphi EXE

2000-05-25 Thread Matt Powell
> Is it possible to query/search an EXE for all the resources in it? if so > how? Try the Delphi/Demos/Resxplor example project. HTH, - Matt --- New Zealand Delphi Users group - Delphi List - [EMAIL PRO

Re: [DUG]: Gradient Fills

2000-06-25 Thread Matt Powell
K only functions seem to be documented in the SDK help, tho'... I wonder why this one wasn't... > Marching onwards I found the below in Delphi's help... Couldn't get that > working (or find the appropriate function) either. No... I think it needs a special type of Canvas

[DUG]: MSHTML

2000-07-09 Thread Matt Powell
Has anybody had any experience with using the MSHTML editor in Delphi? - Matt --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website: http://www.delphi.org.nz

Re: [DUG]: MSHTML

2000-07-10 Thread Matt Powell
lphiZine.com/features/1999/08/di199908rl_f/di199908rl_f.asp Thanks, Matt http://homepages.paradise.net.nz/mattpowe --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website: http://www.delphi.org.nz

Re: [DUG]: Hot Site

2000-07-11 Thread Matt Powell
> CHECK OUT THIS HOT NEW SITE AT www.busty-smoking-babes.com - THE HOTTEST CIGARETTE AND CIGAR SMOKING BIG BUSTED BABES ON THE NET!! What the HELL? - Matt --- New Zealand Delphi Users group - Delphi List - [EM

Re: [DUG]: TCollections...

2000-07-21 Thread Matt Powell
ses the type of the object. Yay. (I'm not quite sure what you mean by "looking in the .dfm no classnames are mentioned for the items"...?) I love OO. It gives me a warm feeling inside. - Matt 8<--- program Project1; uses Classes, Dialogs; {$R *.RES} type TAnima

Re: [DUG]: Bitmap Libs

2000-08-08 Thread Matt Powell
ke Phones and Dollar Signs. > > Actually don't know whether that is legal or not? > > Matt. Well, given that fonts like Wingdings and Webdings are specifically intended to provide a "common interface, I think it'

Re: [DUG]: Collections or Array of Objects

2000-09-07 Thread Matt Powell
space...). IMO it's always better to use a Collection for non-trivial stuff, simply because of the added functionality that TCollection brings to the party. Ah, if only Delphi had a decent collections implementation like Java 2... - Matt ---

Re: [DUG]: CASE tools

2000-09-13 Thread Matt Powell
gt; tools, and any pros or cons you may have discovered during use. Here at UoC we use Rational Rose (Student Edition). It's really slow and quite buggy, but it does the job, I guess (he says, lacking any other experience...) - Matt -

Re: [DUG]: HTML CSS JAVA

2000-09-13 Thread Matt Powell
> Does anyone know how I can place a javascript in a style sheet for > HMTL help. I dont want to place the code for this function in each > html file. JavaScript Style Sheets (JSS) are Netscape-only at the moment, so you may be SOL

Re: [DUG]: Processing Messages (Application.ProcessMessages)

2000-09-24 Thread Matt Powell
unt * b) to it or something, where b is the size of the thing being counted (an event?) I don't know. I'm still a C programmer at heart... Pointers are sooo yummy... If this still makes no sense, it would help if

RE: [DUG] Best way to make this thread safe

2007-05-16 Thread Matt Owens-Smith
Hi Matt, I'd like to see the code too, thanks. Regards Matt Owens-Smith -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matt Comb Sent: Thursday, 17 May 2007 9:59 a.m. To: 'NZ Borland Developers Group - Delphi List' Subject: RE: [DUG] B