RE: [DUG]: D3Pro Update Disk rev.1

2001-02-12 Thread Patrick Dunford
thing you have to watch is that later Standard versions have no database components included. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Alan Rose Sent: Monday, 12 February 2001 19:49 To: Multiple recipients of list delphi Subject: RE: [DUG]:

Re:RE: [DUG]: D3Pro Update Disk rev.1

2001-02-12 Thread paul . mckenzie
What I want to get hold of is D3 - I heard it came out in one of the Mags... Paul Reply Separator Subject: RE: [DUG]: D3Pro Update Disk rev.1 Author: [EMAIL PROTECTED] Date: 12/02/2001 18:48 This may be of no use to you, but anyone

Re: [DUG]: Events in DLLS

2001-02-12 Thread Phil Middlemiss
rather than supporting events, support callbacks. Almost the same thing, but slightly different way of going about it. For example, in your DLL you can have an Setup routine that is passed a record with the addresses of the routines that you want to handle an event. The DLL can store those

Re: [DUG]: D3Pro Update Disk rev.1

2001-02-12 Thread Nic Wise
Geoff, if you ftp to 202.37.181.15, with anonymous login, you should be able to get the Delphi 3.02 updates - I can't remember if there was a 3.01 update, but I dont think so. The IP is the DUG FTP server, but the DNS is currently broken, and I can't fix it... it would normally be

RE: [DUG]: Floating windows...

2001-02-12 Thread Mark Derricutt
So as well as creating my TMyComboThing, I create a subclass of the comp I wanna drop down (in my case a TListView) and override CreateParams, and create that. Then to pop it up, I just .visible := true/false it? Sounds fairly simple... Assuming I've got it right.. --On Monday, February

[DUG]: I/O Error 32 on ReWrite

2001-02-12 Thread Mark Howard
Hi I'm getting an I/O Error 32 when I do a ReWrite(AsciiFile). Can someone please tell me where I can finda listing of these numbered Error codes in the Windows documentation. The Delphi errors don't go down that low. Thanks Mark BEGIN:VCARD VERSION:2.1 N:Howard;Mark FN:Mark Howard

Re: [DUG]: Floating windows...

2001-02-12 Thread Phil Middlemiss
Depending on the component class you are popping up, you may not have to create a sub class. For example, if it is a list box, you might be able to get away with creating it as usual and then doing this: SetWindowLong(MyListBox.Handle, GWL_STYLE, (Style or CS_SAVEBITS or WS_POPUP) and

RE: [DUG]: Floating windows...

2001-02-12 Thread Max Nilson
Mark Derricutt asked: So as well as creating my TMyComboThing, I create a subclass of the comp I wanna drop down (in my case a TListView) and override CreateParams, and create that. Exactly. But to keep things simple our library has just one panel descendant that has this capability and

Re: [DUG]: Floating windows...

2001-02-12 Thread Mark Derricutt
--On Tuesday, February 13, 2001 11:52 AM +1300 Phil Middlemiss [EMAIL PROTECTED] wrote: Depending on the component class you are popping up, you may not have to create a sub class. For example, if it is a list box, you might be able to get away with creating it as usual and then doing this:

RE: [DUG]: Floating windows...

2001-02-12 Thread Max Nilson
Is the act of 'popping' it up, just a matter of setting it visible thou? I can't seem to find a working example anywhere on the net :( Yes, just making it visible is all you want. It all we do and it works like a charm. There is a certain amount of state handling you need to do in the base

[DUG]: CPU Window

2001-02-12 Thread Alan Rose
Can anyone tell me how I prevent the CPU window popping up whenever I run printing code such as found in Quick Reports (not an exception). Its almost like there's some sort of breakpoint. In fact theres a line after the current line that reads ntdll.dbgUserBreakPoint. However I have no

Re: [DUG]: I/O Error 32 on ReWrite

2001-02-12 Thread Nello Sestini
There's a list of them here http://msdn.microsoft.com/library/wcedoc/wcesdkr/appendix_2.htm 32 is a Sharing Violation these are also in winerror.h (if you have any windows C compilers around) -ns - Original Message - From: Mark Howard To: Multiple recipients of list

Re: [DUG]: D3Pro Update Disk rev.1

2001-02-12 Thread Glenn Bull
Delphi 4 Standard was also on the cover of the Dec/Jan 2001 issue of Australian Personal Computer. This magazine had 3 CD's with it and was only $9.95. Very good deal. I think doing this is a very good idea of Borlands. It enables people who maybe haven't really considered using Delphi to have a

Re: [DUG]: I/O Error 32 on ReWrite

2001-02-12 Thread Nello Sestini
There's a list of them here http://msdn.microsoft.com/library/wcedoc/wcesdkr/appendix_2.htm after i posted this - i noticed that while the Delphi codes agree with the windows system errors for the low numbers - the high numbers (100,101,106) don't agree. So - I'm not sure what's

[DUG]: Client Data Sets (again)...

2001-02-12 Thread Mark Derricutt
Hi, I have a TQuery that has an ORDER BY clause, this is attached to a Provider-ClientDataSet. When I open the CDS, it doesn't respect the ORDER BY at all, and the contents spew out in some random (but consistent) order. Any idea why? -- There are exceptions, I'm sure, but the Windows 2000

[DUG]: Changing my DUG email adress

2001-02-12 Thread Luke Pascoe
Err, I can't remember the URL of the DUG website, I need to change my email addy from [EMAIL PROTECTED] to [EMAIL PROTECTED] TIA. -- Luke Pascoe Ex-Programming Ex-Ihug [EMAIL PROTECTED] 0800 GET IHUG ext.9764 Give a man a fish and you feed him for a day. Teach him to use the Net and he won't

RE: [DUG]: Events in DLLS

2001-02-12 Thread Jeremy Coulter
Well I found an easier wayread the value in a timer event Cheers, Jeremy -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Phil MiddlemissSent: 13 February, 2001 9:17 AMTo: Multiple recipients of list delphiSubject: Re: [DUG]: Events