Re: [DUG]: 64 bit ints

2002-08-19 Thread Rohit Gupta
True, but all integers will be converted to 64bits at each call, all throughout your code which you do not want if you are worried about efficiency. ANd the integere version existed years before the int64 version... this ensures that old code is not adversely affected. - Original Message --

[DUG]: TThread to TObject conversion

2002-08-19 Thread Robert Martin
Juts moving an app. from using a Thread to a Std object. Is there a good way to have an object that frees itself after doing its work. i.e current code Tmythread.Create(Params, Params, Params, Params);//Thread runs and frees i.e desired code TMyWasThread.Create(SameParams,SamePara

RE: [DUG]: TThread to TObject conversion

2002-08-19 Thread Stacey Verner
You could use a class procedure that creates the object, does stuff and free's it. Stacey > -Original Message- > From: Robert Martin [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, 20 August 2002 12:09 p.m. > To: Multiple recipients of list delphi > Subject: [DUG]: TThread to TObject conver

[DUG]: Richedit

2002-08-19 Thread Allan Vergara
Hi folks, Has anyone encountered problems while using TRichEdit on a multi-threaded environment? I'm getting the error EOSError 1400, Invalid window handle. Any thoughts, comments, etc is much appreciated. Thanks ---

[DUG]: Model Maker

2002-08-19 Thread Andreas Toth
Does anyone out there use/used Model Maker? If so, what is/was your experiences, issues, and thoughts about it? Also, how would you rate the learning curve? -Andreas --- New Zealand Delphi Users group - Delphi List - [E

[DUG]: Strange TActions Behaviour

2002-08-19 Thread vss
HI all. IN Delphi 6, I have been playing around with the TActionManager. I create some actions, then put a TActionToolbar on the form. Then I drag the actions form the TActionManager to the TActionToolbar. The actions appear as expected. I then run the app. and the actions are all disabled ! I m

RE: [DUG]: Strange TActions Behaviour

2002-08-19 Thread Kuet-Fung Chong
Jeremy, Have you written the OnExecute event handlers for the actions? If there is no OnExecute event handler, then the action will not be enabled. Make sense, really. Cheers, Kuet-Fung. -Original Message- From: vss [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 20 August 2002 15:50 To: Mult

Re: [DUG]: Strange TActions Behaviour

2002-08-19 Thread vss
OKhehehe...it appears you need to HAVE someting in the action execute event...THEN its fineI guess that figures :-) Jeremy -Original Message- From: "vss" <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Date: Tue, 20 Aug 2002 15:49:38 +1200 Subject:

RE: [DUG]: Model Maker

2002-08-19 Thread Leigh Wanstead
Hi Andreas, Check here. http://groups.yahoo.com/group/mmexplorer/ Cheers Leigh -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Andreas Toth Sent: Tuesday, August 20, 2002 3:32 PM To: Multiple recipients of list delphi Subject: [DUG]: Model Maker Does

RE: [DUG]: Strange TActions Behaviour

2002-08-19 Thread vss
hehehe...yeah I figyre this out...DUH what a wally I am -Original Message- From: Kuet-Fung Chong <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Date: Tue, 20 Aug 2002 15:59:50 +1200 Subject: RE: [DUG]: Strange TActions Behaviour > Jeremy, > > Have you wr