RE: [DUG]: Focus not returning

2000-11-12 Thread Jeremy Coulter
ThanksI will TRY and convert this to Pascal...should not be too hard thothanks. Jeremy Coulter -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Nello Sestini Sent: Sunday, November 12, 2000 1:45 PM To: Multiple recipients of list delphi

[DUG]: Web Stuff

2000-11-12 Thread Sandeep
I want to do some web development, and I would like to know how good is Delphi to do the job? I want to put the information from my application's database, so static HTML pages are out of question. What other tools can help me do the job? Regards Sandeep

[DUG]: Encrypting a Password in OnSetText, and OnGetText.

2000-11-12 Thread Stacey Verner
I have a database field, thatcontains an encryptedpassword. I want to do something like the following to decrypt the string when I read it from the dataset,and encrypt it when writing to the dataset, but this doesn't work. I type in the string. Press save and it comes up blank. procedure

Re: [DUG]: Web Stuff

2000-11-12 Thread Neven MacEwan
Sandeep What Web Server? - For NT Delphi is prob as good as anything But if it's relatively simple have you considered PHP, Also look at ZOPE HTH Neven - Original Message - From: Sandeep [EMAIL PROTECTED] To: Multiple recipients of list delphi [EMAIL PROTECTED] Sent: Monday, 13

RE: [DUG]: Web Stuff

2000-11-12 Thread David O'Brien
Depends what your Web Server is. With NT, IIS, Active Server Pages are really easy for DB access. Dave. -Original Message- From: Sandeep [mailto:[EMAIL PROTECTED]] Sent: Monday, 13 November 2000 9:09 a.m. To: Multiple recipients of list delphi Subject: [DUG]: Web Stuff I want to do

RE: [DUG]: Encrypting a Password in OnSetText, and OnGetText.

2000-11-12 Thread Guy Brown
I don't think the Text parameter is initialised with the value of the field. Try something like this: procedure TfEMailOptions.DecryptPassword(Sender: TField; var Text: String; DisplayText: Boolean); begin inherited; Text := DecryptString(Sender.AsString); end; Hope that helps, Guy

Re: [DUG]: Web Stuff

2000-11-12 Thread Sandeep
What Web Server? - For NT Delphi is prob as good as anything But if it's relatively simple have you considered PHP, Also look at ZOPE I've never used PHP and ZOPE before. Can they access database files? It will be like an web extension of my application, so I think Delphi will be a better

RE: [DUG]: INternal Errors

2000-11-12 Thread Rohit Gupta
Was that supposed to be funny ? :-) In case its of any interest, the compiler barfed on a property declaration that used methods defined in the ancestor (as protected). Worked fine in D3. The strange part is that it did not complain while compiling the component, it complained when an

[DUG]: [Q] KeyPreview, KeyDown, DB Aware Controls?

2000-11-12 Thread Donovan J. Edye
G'Day, I need to do some special processing for keys on the numeric keypad. Simple: KeyPrevew := TRUE; And then in the KeyDown event for the form case key of VK_Num0..VKNum9 : begin Key := 0; //Swallow key //Do my

RE: [DUG]: Encrypting a Password in OnSetText, and OnGetText.

2000-11-12 Thread Patrick Dunford
lacks judgment derides his neighbor, but a man of understanding holds his tongue. -- Proverbs 11:12 http://www.heartlight.org/cgi-shl/todaysverse.cgi?day=20001112

RE: [DUG]: Web Stuff

2000-11-12 Thread Patrick Dunford
/ A man who lacks judgment derides his neighbor, but a man of understanding holds his tongue. -- Proverbs 11:12 http://www.heartlight.org/cgi-shl/todaysverse.cgi?day=20001112

RE: [DUG]: Encrypting a Password in OnSetText, and OnGetText.

2000-11-12 Thread Stacey Verner
holds his tongue. -- Proverbs 11:12 http://www.heartlight.org/cgi-shl/todaysverse.cgi?day=20001112 == -- - New Zealand Delphi Users group - Delphi

Re: [DUG]: Web Stuff

2000-11-12 Thread Xander van der Merwe
You might want to look at http://www.asp-express.com/ - its Delphi-based and its free. - Original Message - From: "Sandeep" [EMAIL PROTECTED] To: "Multiple recipients of list delphi" [EMAIL PROTECTED] Sent: Monday, November 13, 2000 9:49 AM Subject: Re: [DUG]: Web Stuff What Web

[DUG]: runtime packages.

2000-11-12 Thread Matthew Comb
Hi people, just playing around with runtime packages.. I can only find the following under help. with OpenDialog1 do if Execute then with PackageList.Items do AddObject(FileName, Pointer(LoadPackage(Filename))); Once past here how do you access the objects within the package? Matt.

Re: [DUG]: runtime packages.

2000-11-12 Thread Matthew Comb
Should have checked there first. Thanks Myles! - Original Message - From: Myles Penlington To: Multiple recipients of list delphi Sent: Monday, November 13, 2000 10:28 AM Subject: RE: [DUG]: runtime packages. There is a demo about runtime packages

RE: [DUG]: [Q] KeyPreview, KeyDown, DB Aware Controls?

2000-11-12 Thread Carl Reynolds
From: Donovan J. Edye [mailto:[EMAIL PROTECTED]] However even though I am "swallowing" the keystroke it is still getting processed by the DB aware control I am currently focussed on (DBEdit, DGGrid etc.) How do I stop the keystroke getting "through to" the DB aware control? Don't call inherited;

RE: [DUG]: [Q] KeyPreview, KeyDown, DB Aware Controls?

2000-11-12 Thread David O'Brien
Isn't it the KeyUp event that goes through to the control? Dave. -Original Message- From: Donovan J. Edye [mailto:[EMAIL PROTECTED]] Sent: Monday, 13 November 2000 10:26 a.m. To: Multiple recipients of list delphi Subject: [DUG]: [Q] KeyPreview, KeyDown, DB Aware Controls? G'Day, I

Re: [DUG]: Web Stuff

2000-11-12 Thread Steve Peacocke
At 09:08 a.m. 13/11/2000 +1300, you wrote: I want to do some web development, and I would like to know how good is Delphi to do the job? I want to put the information from my application's database, so static HTML pages are out of question. What other tools can help me do the job? Delphi has