[DUG]: Time fields in ReportSmith

2000-01-22 Thread Patrick Dunford
Does anyone know how to get ReportSmith to add up time fields? Patrick Dunford, Christchurch, NZ EnzedRailWeb Sites http://patrick.dunford.com/enzedrailweb/ --- New Zealand

RE: [DUG]: Invalid pointer operation

2000-01-21 Thread Patrick Dunford
on New and Dispose, old habits die hard :) Patrick Dunford, Christchurch, NZ EnzedRailWeb Sites http://patrick.dunford.com/enzedrailweb/ --- New Zealand Delphi Users group - Delphi

RE: [DUG]: Disabled combobox without grey text

2000-01-21 Thread Patrick Dunford
I presume you are referring to the type of combobox that has a text field that people can type in, as well as a dropdown list. The Style property in this case is csDropDown. Change it to csDropDownList and it becomes a read-only list, with no user entry permitted. -Original Message-

RE: [DUG]: Disabled combobox without grey text

2000-01-21 Thread Patrick Dunford
Place the combobox onto a panel and disable the panel. Or, in the OnClick, set ItemIndex to -1 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Tom Munro Glass Sent: Saturday, 22 January 2000 06:32 To: Multiple recipients of list delphi Subject:

RE: [DUG]: IO error values

2000-01-20 Thread Patrick Dunford
The error definitions are all in WINDOWS.PAS, search by ERROR_ For example ERROR_FILE_NOT_FOUND = 2; which hopefully is self explanatory. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Leo Ramakers Sent: Friday, 21 January 2000 15:22 To:

[DUG]: INFO: SetForegroundWindow changed in Win98, 2000

2000-01-20 Thread Patrick Dunford
Patrick Dunford, Christchurch, NZ EnzedRailWeb Sites http://patrick.dunford.com/enzedrailweb/ --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website

[DUG]: Invalid pointer operation

2000-01-20 Thread Patrick Dunford
(declared as PChar) ======== Patrick Dunford, Christchurch, NZ EnzedRailWeb Sites http://patrick.dunford.com/enzedrailweb/ --- New Zealand Delphi Users group - Delphi List - [EMAIL

RE: [DUG]: Invalid pointer operation

2000-01-20 Thread Patrick Dunford
(str1,str2); Patrick Dunford, Christchurch, NZ EnzedRailWeb Sites http://patrick.dunford.com/enzedrailweb/ --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED

[DUG]: FindWindow

2000-01-19 Thread Patrick Dunford
. Patrick Dunford, Christchurch, NZ EnzedRailWeb Sites http://patrick.dunford.com/enzedrailweb/ --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED

[DUG]: FWD: Closing Other Applications

2000-01-18 Thread Patrick Dunford
This message is forwarded from the newsgroup "borland.public.delphi.winapi". --- Begin Forwarded Message --- Subject: Closing Other Applications From: Patrick Dunford [EMAIL PROTECTED] -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I have an application that laun

RE: [DUG]: FWD: Closing Other Applications

2000-01-18 Thread Patrick Dunford
If you don't know the processID there is a problem. I found some code on MSDN the gist of which is: 1. FindWindow 2. if found then GetWindowThreadProcessID 2. IsWindowEnabled 3. if yes then PostMessage(WM_CLOSE...) 4. WaitForSingleObject(hprocess...) etc. -Original Message- From:

RE: [DUG]: FWD: Closing Other Applications

2000-01-18 Thread Patrick Dunford
= 242 hProc^ = -530451 WRes = WAIT_FAILED GetLastError = INVALID_HANDLE so WaitForSingleObject always fails, regardless. According to MS the WaitForSingleObject call should return WAIT_TIMEOUT if it did not close. Patrick Dunford, Christchurch, NZ

[DUG]: Help Cursoring

2000-01-11 Thread Patrick Dunford
for that control from firing? Patrick Dunford, Christchurch, NZ EnzedRailWeb Sites http://patrick.dunford.com/enzedrailweb/ --- New Zealand Delphi Users group - Delphi List

RE: [DUG]: Calling HTMLHelp API

2000-01-11 Thread Patrick Dunford
JGSoft has a freeware unit translating the header file and will automatically redirect OnHelp events MSKB has an article on how to implement contexts I'm putting all this stuff up now at http://www.geocities.com/pjrdunford/delphi/htmlhelp/ -Original Message- From: [EMAIL PROTECTED]

[DUG]: Calling HTMLHelp API

2000-01-10 Thread Patrick Dunford
handler The HTMLHelp workshop is a free download from http://msdn.microsoft.com/workshop/author/htmlhelp/ together with control updates Patrick Dunford, Christchurch, NZ EnzedRailWeb Sites http://patrick.dunford.com/enzedrailweb

RE: [DUG]: Quickreport newbie question

2000-01-09 Thread Patrick Dunford
You would use a Subdetail band for this. It will repeat itself for each detail record. Link it to the detail dataset which is already linked or filtered to the detail records for the master table. Then add fields to it. Subdetail bands can also have a header and a footer band, these are easily

RE: [DUG]: OO Reporting tools

1999-12-22 Thread Patrick Dunford
What happens if it isn't just an OO DB you want to report from? I have had lots of fun lately on a project where I could not use a data aware report with a query because the results from the query had to be compared with the results of a function that had its results in a TStringList. Since then

RE: Re: [DUG]: Date/Time calculations

1999-12-20 Thread Patrick Dunford
to it. What I asked for is very simple - that the offset not be added. Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ --- New Zealand Delphi Users group - Delphi

[DUG]: Unsupported language driver

1999-12-16 Thread Patrick Dunford
This TUTIL32 error is being reported on some Pdox tables I have in a database. It has only occurred since the database was installed on a client's Windows 98 machine. Any ideas? They have BDE 4.01, the machine is set to NZ English

RE: [DUG]: Date/Time calculations

1999-12-16 Thread Patrick Dunford
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Carl Reynolds Sent: Friday, 17 December 1999 11:26 To: Multiple recipients of list delphi Subject: RE: [DUG]: Date/Time calculations The problem is not with the VCL at all. The following code:

RE: [DUG]: Date/Time calculations

1999-12-16 Thread Patrick Dunford
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Carl Reynolds Sent: Friday, 17 December 1999 17:21 To: Multiple recipients of list delphi Subject: RE: [DUG]: Date/Time calculations No. There is no standard Delphi method to do what you're talking

[DUG]: generic exception handlers

1999-12-16 Thread Patrick Dunford
I want to write a procedure that can be passed the name of another procedure and its parameters. It implements an exception handler for that call (so I don't have to write try..except around every single call in my program). Or is there another way of doing it?

[DUG]: Date/Time calculations

1999-12-15 Thread Patrick Dunford
Has anyone else experienced problems with date/time calculations due to Delphi offsetting the date by 30/12/1899 The situation is that I wish to calculate a person's current age which appeared to be simple: subtract their date of birth from the current date then decode into actual years. But

RE: [DUG]: ACTIVATE.

1999-12-14 Thread Patrick Dunford
What exactly are you trying to achieve here. If your app's main window is hidden then it will not have a taskbar button. Or the Application.OnActivate event, or WM_ACTIVATE message handler in your form? -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On

RE: [DUG]: ListView Bug??

1999-12-14 Thread Patrick Dunford
In D3 set ReadOnly true to stop users from changing captions. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jason Coley Sent: Wednesday, 15 December 1999 17:08 To: Multiple recipients of list delphi Subject: [DUG]: ListView Bug?? I'm using

[DUG]: Object Inspector keyboard shortcut

1999-12-12 Thread Patrick Dunford
What is the shortcut that opens nested properties in Object Inspector? The Help says Alt-F10 which is wrong (this is the general shortcut that displays the popup menu) --- New Zealand Delphi Users group - Delphi List -

RE: [DUG]: Windows Large and Small Fonts

1999-12-12 Thread Patrick Dunford
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Mason, John Sent: Monday, 13 December 1999 15:33 To: Multiple recipients of list delphi Subject: Re: [DUG]: Windows Large and Small Fonts The PixelsPerInch setting for large fonts is 120. Under

[DUG]: Passing objects as procedure parameters

1999-12-07 Thread Patrick Dunford
When you pass an object as a procedure parameter and you don't need to pass back any changes to the calling function, do you need the 'var' in front of the instance name in the procedure declaration? I routinely write procedures that receive tables and other instances that I want the changes

RE: [DUG]: Adding of database fields

1999-12-06 Thread Patrick Dunford
Is your table field a Float or Numeric field? Floats lose precision because of the way they are stored (has nothing to do with TFloatField in Delphi) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Eion McIntosh (CHCH) Sent: Tuesday, 7 December 1999

RE: [DUG]: InstallShield

1999-12-06 Thread Patrick Dunford
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Max Nilson Sent: Tuesday, 7 December 1999 16:47 To: Multiple recipients of list delphi Subject: RE: [DUG]: InstallShield Rohit Gupta asked: Its probably been asked anumerous times already, but

[DUG]: PChars and String Casts

1999-12-05 Thread Patrick Dunford
? Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ "These are they who have come out of the great tribulation; they have washed their robes and made them white in the blood of the Lamb" - Revel

[DUG]: TStrings.Objects

1999-12-01 Thread Patrick Dunford
', TObject(vsList)); ComboBox1.Items.AddObject('vsReport', TObject(vsReport)); ComboBox1.Items.AddObject('vsSmallIcon', TObject(vsSmallIcon)); with ComboBox1 do ListView1.ViewStyle := TViewStyle(Items.Objects[ItemIndex]); Patrick Dunford

RE: [DUG]: WIN API function failed

1999-11-30 Thread Patrick Dunford
colour on the display settings could consume 20% of GDI resources. snip Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ "These are they who have come out of the great tribulation; they have washed their robes and made them

RE: [DUG]: Index out of Date

1999-11-25 Thread Patrick Dunford
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Eion McIntosh Sent: Thursday, 25 November 1999 20:45 To: Multiple recipients of list delphi Subject: Re: [DUG]: Index out of Date Patrick Dunford wrote: There are two major possibilities 1

RE: [DUG]: Project source file - form creations

1999-11-25 Thread Patrick Dunford
It seems all the problems are caused by the lack of Application.Initialize in the first line of the project source - a line the Help file tells you you can safely defeat. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Patrick Dunford Sent: Thursday

RE: [DUG]: Form creation / display order

1999-11-25 Thread Patrick Dunford
Never mind I have the answer to this too :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Patrick Dunford Sent: Thursday, 25 November 1999 18:35 To: Multiple recipients of list delphi Subject: [DUG]: Form creation / display order I have

[DUG]: TPrintset / EDSPrint

1999-11-25 Thread Patrick Dunford
Download seems to be available again and claims has been updated to D4. http://www.onedomain.com/edsprint.htm --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website:

RE: [DUG]: Index out of Date

1999-11-24 Thread Patrick Dunford
are getting corrupted. Various fixes which include flushing all the data to disk each time you post, have been suggested here in the past. How frequently is "periodically"? ======== Patrick Dunford, Christchurch, NZ http://patrick.d

[DUG]: Project source file - form creations

1999-11-24 Thread Patrick Dunford
that will work is Application.CreateForm(TLicenseForm, LicenseForm); Application.CreateForm(TLicenseForm, LicenseForm); Application.CreateForm(TBtnBottomDlg, BtnBottomDlg); This is stupid. I don't remember this from Delphi 2. Patrick Dunford

[DUG]: Form creation / display order

1999-11-24 Thread Patrick Dunford
. How do I stop the other form from showing? Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ http://www.trainweb.org/enzedrail/ -- Visit the Canterbury Railway

RE: [DUG]: Printerindex Property

1999-11-23 Thread Patrick Dunford
This eis exactly the problem that TPrintSet was designed to overcome, unfortunately iy is not being updated beyond D3 version. We need a new component :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Eion McIntosh Sent: Tuesday, 23 November 1999

RE: [DUG]: C:\CoolProgs\Pretty Park.exe

1999-11-21 Thread Patrick Dunford
Well there is a little bit more than that to this 1. The server has been very busy sending this file attachment to every list member 2. The list is receiving posts from people outside NZ. Only a trickle so far but if it ever got to the level of some overseas lists which get hundreds of posts a

RE: [DUG]: looking for DBLookupComboBox in DBgrid

1999-11-21 Thread Patrick Dunford
You meam that a Lookup field in a DBGrid won't already do? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Leo Ramakers Sent: Monday, 22 November 1999 16:41 To: Multiple recipients of list delphi Subject: [DUG]: looking for DBLookupComboBox in

RE: [DUG]: C:\CoolProgs\Pretty Park.exe

1999-11-20 Thread Patrick Dunford
up a very vocal minority who get it sent to a cover-all account. So update your mailing system. Onelist operates an effective system that allows nomail and digest subscriptions, archives posts and nukes out e-mail addresses. Patrick Dunford

RE: [DUG]: C:\CoolProgs\Pretty Park.exe

1999-11-20 Thread Patrick Dunford
Just close it then and tell that vocal minority to get webmail accounts. Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Nic Wise Sent

RE: [DUG]: NT Workstation and Delphi 4

1999-11-11 Thread Patrick Dunford
Why don't you just grant yourself administrator rights for the install? Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Mark Derricutt Sent

RE: [DUG]: Listbox Limit

1999-11-10 Thread Patrick Dunford
IIRC it is 32000 lines approx. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jeremy Coulter Sent: Wednesday, 10 November 1999 21:21 To: Multiple recipients of list delphi Subject: [DUG]: Listbox Limit Hi all. I can t find anything in the

RE: [DUG]: Drive A Problem

1999-11-01 Thread Patrick Dunford
No, that doesn't work. The fix appears to be to call the SetCurrentDirectory function in the Win32 API Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED

[DUG]: Delphi 3 message problem

1999-10-30 Thread Patrick Dunford
components are on the suspect list but with no evidence to prove it. The same could equally apply to TCompress again with no proof, I suspect I may never actually know what is going on. Patrick Dunford, Christchurch, NZ http://patrick.dunford.com

Re: [DUG]: Report templates

1999-10-27 Thread Patrick Dunford
) and can reload it. With the source code you should be able to write something similar into your own program. == Patrick Dunford --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED

Re: [DUG]: WIN32 API Function Failed

1999-10-27 Thread Patrick Dunford
Quoting Darren J Gilbertson [EMAIL PROTECTED]: I keep getting this error when opening a particular form. Is there any way of fixing this? Usually means you are out of resources --- New Zealand Delphi Users group -

RE: [DUG]: TStatusBar problem

1999-10-26 Thread Patrick Dunford
I suspect it is more likely to be a bug in D3 and not being a current product will not be fixed by Borland. Hopefully changing to standard panels will sort the problem out. ======== Patrick Dunford, Christchurch, NZ http://patrick.d

RE: [DUG]: TStatusBar problem

1999-10-26 Thread Patrick Dunford
s question, but if you've encountered something is odd with/connected-to TC 5.0, we're certainly interested to know about it and try and help you with it. The main problem I have with TCompress is releasing my registration information in source code. ======== Patri

RE: [DUG]: TListItem.Data

1999-10-25 Thread Patrick Dunford
OK is any event fired when the listview is cleared by the Clear method? Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Terry Johnson Sent

[DUG]: TStatusBar problem

1999-10-25 Thread Patrick Dunford
is getting set with the control's Hint property but it is not displaying on the status bar. It used to work but it has stopped working lately for some strange reason. Patrick Dunford, Christchurch, NZ http://patrick.dunford.com

[DUG]: TListItem.Data

1999-10-24 Thread Patrick Dunford
for me to write code to ensure all the memory is freed? Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ --- New Zealand Delphi Users group - Delphi List - [EMAIL

RE: [DUG]: Upgrade of BDE

1999-10-22 Thread Patrick Dunford
. Is a weekend looming? I have just looked at the BDE 5.01 upgrade self extracting file on the Borland page. It is around 12 Mbytes. IMO the BDE install from Borland does not appear to be compressed (oddly enough) Patrick Dunford, Christchurch, NZ http

RE: [DUG]: SHBrowseForFolder....

1999-10-20 Thread Patrick Dunford
that is: - a wrapper around SHBrowseForFolder API - Allow you to create new folders. Basically GetDirectory with a Browse for folder UI. I use a freeware component from http://www.eden.com/~tfast/pencilneck1.html Patrick Dunford, Christchurch, NZ

RE: [DUG]: Changing control style

1999-10-13 Thread Patrick Dunford
One possibility is something like if x is TDBEdit then with x as TDBEdit do... else if x is TdbCheckBox then with x as TDBCheckBox do typecasting each control as this is the only way you will be able to access its full properties alternatively if x is TDBEdit then begin

RE: [DUG]: BDE Error

1999-10-11 Thread Patrick Dunford
procedure passing the DBI method name and parameters, check will raise the exception if an error result is returned IIRC. Patrick Dunford, Christchurch, NZ http://patrick.dunford.com

RE: [DUG]: BDE Error

1999-10-11 Thread Patrick Dunford
. If no other BDE calls have been made since then it looks like DBIGetErrorEntry would return the error stack but the stack is cleared the next time that a BDE function is called. Patrick Dunford, Christchurch, NZ http://patrick.dunford.com

RE: [DUG]: Makeing a Taskbar like window

1999-10-04 Thread Patrick Dunford
from http://www.geocities.com/SiliconValley/9486/appbar14.zip Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ --- New Zealand Delphi Users group - Delphi List

RE: [DUG]: Losing data in Paradox tables

1999-10-03 Thread Patrick Dunford
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Richard Vowles Sent: Monday, 4 October 1999 10:03 To: Multiple recipients of list delphi Subject: Re: [DUG]: Losing data in Paradox tables I thort that dbiUseIdleTime told it to sync everything -

RE: [DUG]: Losing data in Paradox tables

1999-10-02 Thread Patrick Dunford
Odd, I've never seen problems with data not being flushed before - in this case the table records are quite small (16 bytes each) and losing 2 or 6 is significant. -Original Message- From: Steve Cooney [mailto:[EMAIL PROTECTED]] Sent: Saturday, 2 October 1999 17:53 To: [EMAIL

[DUG]: Losing data in Paradox tables

1999-10-01 Thread Patrick Dunford
I am having unexpected loss of data in Paradox tables. Are there any issues associated with the table not having a primary key? What is the call again that flushes the buffers from the BDE? This is a standalone machine, not network. Patrick Dunford

RE: [DUG]: Accessing Access Tables

1999-09-30 Thread Patrick Dunford
Make your username Admin and password blank. These are the defaults for Access but most users have it turned off. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Tony Sinclair Sent: Thursday, 30 September 1999 20:43 To: Multiple recipients of list

RE: [DUG]: NZ PC World Delphi 5 Review

1999-09-30 Thread Patrick Dunford
I feel a critical letter to NZPCW coming on :) Runtime packages make pretty small EXEs, don't they? Seems to me Mr Palmer is uninformed. Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ -Original Message- From: [EMAIL

[DUG]: Quickreport 2 TQRGroup

1999-09-23 Thread Patrick Dunford
? Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website: http://www.delphi.org.nz

RE: [DUG]: ShellExecute

1999-09-17 Thread Patrick Dunford
is waiting for the process state to become signalled it will be unresponsive. A better way of implementing this is repeat Application.ProcessMessages; until WaitForSingleObject(ProcessInfo.hProcess,0)=WAIT_OBJECT_0; Patrick Dunford

RE: [DUG]: PRINTER - Setting Page Length

1999-09-16 Thread Patrick Dunford
printer list - the PrinterIndex is no longer valid). EDSPrint provides to simple routines, SaveToIniFile and ReadFromIniFile, which allow you to save and restore the current printer and its settings. http://www.onedomain.com/ Patrick Dunford, Christchurch

RE: [DUG]: ANN: Delphi 5 shipping in NZ

1999-09-15 Thread Patrick Dunford
version? Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website: http

RE: [DUG]: ANN: Delphi 5 shipping in NZ

1999-09-15 Thread Patrick Dunford
likely 3. You should be able to cross grade if _nothing_ else. I'll ask Claire tommorow and post something. N Patrick Dunford wrote: -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Nic Wise Sent: Wednesday, 15 September 1999 11:52

RE: [DUG]: Formatting time for TDBEdit control

1999-09-13 Thread Patrick Dunford
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Chris Reynolds Sent: Tuesday, 14 September 1999 12:08 To: Multiple recipients of list delphi Subject: RE: [DUG]: Formatting time for TDBEdit control Sorry Patrick, try 2. Something like

RE: [DUG]: Formatting time for TDBEdit control

1999-09-12 Thread Patrick Dunford
that the TDBEDIt is bound to. Try HH:MM. No, the displayFormat only changes what is displayed. As soon as you put the cursor in that field to edit it the format changes to hh:mm:ss -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Patrick Dunford Sent

RE: [DUG]: XTools

1999-09-12 Thread Patrick Dunford
that they do exist. I wonder if D5 supports HTMLHelp. Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ --- New Zealand Delphi Users group - Delphi List - [EMAIL

[DUG]: Formatting time for TDBEdit control

1999-09-11 Thread Patrick Dunford
, but not when the field is being edited. How do I get the field contents to show in hour:minutes format (no seconds) when editing? Is this anything to do with the GetText or SetText event handlers for the TTimeField? Patrick Dunford, Christchurch, NZ http

[DUG]: Index is read only

1999-09-09 Thread Patrick Dunford
would like to retain the link if at all possible. Using d3 Standard, BDE 4.01 ======== Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ --- New Zealand Delphi Users group -

[DUG]: TDBGrid Lookup Field

1999-09-07 Thread Patrick Dunford
values in the grid, I want to display the text value, and my picklist lets someone pick the text value when they are entering or changing the field, and they never actually see the number. Is it possible? How do I implement it? Patrick Dunford, Christchurch

RE: [DUG]: Thin Database Components.

1999-09-01 Thread Patrick Dunford
. Patrick Dunford, Christchurch, NZhttp://patrick.dunford.com/

RE: [DUG]: Hard drive serial Number

1999-08-31 Thread Patrick Dunford
talked about for many years for the same reason. snip Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ --- New Zealand Delphi Users group - Delphi List - [EMAIL

[DUG]: Override

1999-08-23 Thread Patrick Dunford
to my declared constructor and destructor causes an error message about overriding a static method. So I leave out the override keyword and it compiles. But what is the difference? Patrick Dunford, Christchurch, NZ http://patrick.dunford.com

RE: [DUG]: Override

1999-08-23 Thread Patrick Dunford
constructor and destructor causes an error message about overriding a static method. So I leave out the override keyword and it compiles. But what is the difference? Patrick Dunford, Christchurch, NZ http://patrick.dunford.com

[DUG]: Form Declarations

1999-08-23 Thread Patrick Dunford
automatically whereas any object declared under public, private or whatever has to be explicitly created by the programmer in code. Is that the case? Patrick Dunford, Christchurch, NZ http://patrick.dunford.com

RE: [DUG]: treeview icons

1999-08-23 Thread Patrick Dunford
That possibly makes Peter's problem the bug in the 401COMUPD installer (it removes the DLL rather than replacing it) http://support.microsoft.com/support/kb/articles/Q221/8/36.ASP PRB: 401Comupd.exe Makes System Unbootable

[DUG]: TPersistent.Assign override

1999-08-23 Thread Patrick Dunford
. Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ --- New Zealand Delphi Users group

RE: [DUG]: Override

1999-08-23 Thread Patrick Dunford
the AfterConstruction / BeforeDestruction procedures. There are no such procedures for a TObject or anything in Delphi 3. The best I can come up with is NewInstance / FreeInstance, both of which are declared virtual. What would my code look like? snip Patrick

RE: [DUG]: Circular unit references - gotta love'm!

1999-08-19 Thread Patrick Dunford
at a form, because the class browser lets you get to your forms and components without viewing the form. The browser-thingy in Delphi 4 is a step in that direction, I'm not entirely convinced that it goes far enough along that track. Patrick Dunford

[DUG]: Activating process window

1999-08-13 Thread Patrick Dunford
If my application creates a process using CreateProcess and gets back the process handle hProcess, how do I later get the main window of the application to show? Patrick Dunford, Christchurch, NZ http://patrick.dunford.com

RE: [DUG]: last ramblings before beer time

1999-08-13 Thread Patrick Dunford
). Not having access to the source code, I suppose it is possible that Delphi ignores the message if the child control is not a TWinControl, since the form's OnHelp event isn't fired for TGraphicsControls. Patrick Dunford, Christchurch, NZ http

RE: [DUG]: TSpeedbtn

1999-08-11 Thread Patrick Dunford
you just use an ordinary button or alternatively a 3rd party component. Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Alistair George Sent

RE: [DUG]: Change the settings of the Taskbar

1999-07-29 Thread Patrick Dunford
. Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website: http://www.delphi.org.nz

RE: [DUG]: assigning

1999-07-29 Thread Patrick Dunford
through the group of buttons setting their Down properties to false Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ --- New Zealand Delphi Users group - Delphi List

RE: [DUG]: Change the settings of the Taskbar

1999-07-28 Thread Patrick Dunford
Correction: this message gets sent to appbars when an application goes full-screen, but the mechanism of how an application tells Windows that it is going full screen is unknown to me, it is probably in the Windows function group in the API. -Original Message- From: [EMAIL PROTECTED]

RE: [DUG]: Best Way to Comunicat with NT Services

1999-07-21 Thread Patrick Dunford
There is a freeware mailslot component available from http://www.djernaes.dk/martin/ Mailslots are a one way communication system. Windows 95 uses them to run the Winpopup service. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jeremy Coulter Sent:

RE: Autofrwd[DUG]: Read Only Aliases

1999-07-16 Thread Patrick Dunford
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of P Sheehan Sent: Friday, 16 July 1999 12:05 To: Multiple recipients of list delphi Subject: Re: Autofrwd[DUG]: Read Only Aliases Have the settings been merged ? The BDE3.5 install was done by Wise

[DUG]: Read Only Aliases

1999-07-15 Thread Patrick Dunford
be changed. The only fix appears to be to remove and reinstall the BDE. Anyone have knowledge of this? ======== Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ --- New Zeal

RE: [DUG]: TCP/IP Question

1999-07-13 Thread Patrick Dunford
ÿþ<

RE: [DUG]: Access violation

1999-07-08 Thread Patrick Dunford
Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ http://www.trainweb.org/enzedrail/ --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website: http

RE: [DUG]: C to OBJ

1999-07-05 Thread Patrick Dunford
Patrick Dunford, Christchurch, NZ http://patrick.dunford.com/ http://www.trainweb.org/enzedrail/ --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED

RE: [DUG]: Terminating RAS Connection

1999-07-04 Thread Patrick Dunford
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jeremy Coulter Sent: Sunday, 4 July 1999 22:32 To: Multiple recipients of list delphi Subject: [DUG]: Terminating RAS Connection Hi all. Does anyone know how to progmatically terminate an active

<    1   2   3   4   5   >