--------------- FIDO MESSAGE AREA==> TOPIC: 269 DELPHI Ref: F3K00001 Date: 03/15/98 From: STEVE BATSON Time: 07:51pm \/To: ALL (Read 0 times) Subj: Delphi 4 Has anyone heard anything about Delphi 4? I know it's comming, but I am not on the beta program this time, so I don't know what's going on with it. Actually, it seems a bit more quiet this time around that the last two releases. Steve Batson http://www.bat-soft.com steve@bat-soft.com BTW, Gary, I am still around, just haven't been able to get in here as much. --- HyperMail! v1.22 * Origin: Omni - (916) 388-0905, longest running Sac BBS (1:203/3333) --------------- FIDO MESSAGE AREA==> TOPIC: 269 DELPHI Ref: F3K00002 Date: 03/16/98 From: RYAN POTTS Time: 12:26am \/To: STEVE BATSON (Read 0 times) Subj: Delphi 4 Steve Batson wrote in a message to All: SB> Has anyone heard anything about Delphi 4? I know it's SB> comming, but I am not on the beta program this time, so I SB> don't know what's going on with it. Actually, it seems a bit SB> more quiet this time around that the last two releases. I havevn't heard an specifics. I was on Borland's web site the other day and completed there survey. They are interested in what people like/dislike with 2.0/3.0. What things would people like to see added, yata yata yata. Thanks, Ryan --- * Origin: Midnight Express, Fairlawn Ohio (1:157/110) --------------- FIDO MESSAGE AREA==> TOPIC: 269 DELPHI Ref: F3K00003 Date: 03/15/98 From: SREN W NIELSEN Time: 08:38am \/To: BOB KERSTEN (Read 0 times) Subj: icons Hello Bob |:=) 12-Mar-98, Bob Kersten Wrote to All ABOUT: icons BK> When I create a shortcut for a program, sometimes I can choose between BK> various icons which all are part of the program (exp. Internet Explorer BK> from Microsoft and Internet Mail and/or News from Microsoft). BK> How can I achieve this in v3.0 of Delphi (Client/Server)?! Same way as in other shortcuts. Press right mouse button on shortcut choose Change Icon - Search (search for delphi32.exe in Borland\Delphi3\BIN) choose the icon You want to use. This kan be done from which .DLL,.EXE file You want to use. Bye - Bye -= S W Nielsen =- Email : swn@danbbs.dk --- Terminate 4.00/Pro * Origin: A smart man don't p.. against the wind (2:236/95.21) --------------- FIDO MESSAGE AREA==> TOPIC: 269 DELPHI Ref: F3L00000 Date: 03/14/98 From: GREG MACLELLAN Time: 03:17pm \/To: ALL (Read 0 times) Subj: EConvertError how do you pick up the EConvertError, for example after running Strtoint? what would i do here: procedure tForm1.GetData; var i:integer; begin i := strtoint(edit1.text); if then label1.caption := 'Invalid number!' else begin ... end; end; or does it need to be handled with something like procedure tform1.error; message EconvertError; ? I dont really know much about this windows message/error crap yet :) thanks for any help.. ttyl, greg --- Maximus/2 3.01 * Origin: * Chaos BBS * 6i3.389.O8i6 * Kingston, ON! (1:249/174) --------------- FIDO MESSAGE AREA==> TOPIC: 269 DELPHI Ref: F3L00001 Date: 03/15/98 From: OLE ALMIND MORTENSEN Time: 08:10pm \/To: BOB KERSTEN (Read 0 times) Subj: Re: ListView item invisible Hej Bob! Mandag 09. Marts 1998 kl.20:20 skrev Bob Kersten til All: BK> I'm using a TListView in my Delphi 3.0 program, and I have a problem ith BK> it. When I'm done reading all the items (and subitems) in the ListView, BK> an item will be selected and focused, but it's not visible. I must croll BK> down, using the scrollbar, to make the item visible. :-( You might want to use Listview_EnsureVisible You have to Add CommCtrl to the Uses part. Mvh. Ole, Primeware HTTP://www.nightcall.dk/primeware/ E-Mail: primeware@nightcall.dk --- Prv CDMag 5.50 fra Primeware. * Origin: Nightcall Point (2:237/10.150) --------------- FIDO MESSAGE AREA==> TOPIC: 269 DELPHI Ref: F3M00000 Date: 03/15/98 From: GARY WEINFURTHER Time: 09:24am \/To: BOB KERSTEN (Read 0 times) Subj: ListView item invisible Bob Kersten mentioned this to Gary Weinfurther: BK> I meant the attributes of a particular line in a TString (RichEdit). For BK> example, how can I make a particular line in a RichEdit textbox bold?! I'm not familiar enough with that control to answer you. Perhaps somebody else here can. ...Gary --- GoldED 2.41 * Origin: The Flying Circus BBS, Farmington Hills, MI. (1:2410/905) --------------- FIDO MESSAGE AREA==> TOPIC: 269 DELPHI Ref: F3M00001 Date: 03/15/98 From: GARY WEINFURTHER Time: 10:46pm \/To: ABDUNNASER ALTHOBITY (Read 0 times) Subj: open a web page - Second time ! Abdunnaser Althobity mentioned this to All: AA> Note : I think that opening a web page by Start/Run ( typing AA> http://www.foosite.com in the taskbar ) is not functioning by default in AA> Win95, I mean it's not native in the system but this is a feature the AA> user will get if he did install MS Plus in his machine.. am I right ? You need to have a browser, such as Internet Explorer, installed. ...Gary --- GoldED 2.41 * Origin: The Flying Circus BBS, Farmington Hills, MI, USA. (1:2410/905) --------------- FIDO MESSAGE AREA==> TOPIC: 269 DELPHI Ref: F3N00000 Date: 03/18/98 From: GARY WEINFURTHER Time: 08:12am \/To: GREG MACLELLAN (Read 0 times) Subj: EConvertError Greg MacLellan mentioned this to All: GM> how do you pick up the EConvertError, for example after running rtoint? procedure tForm1.GetData; var i:integer; begin try i := strtoint(edit1.text); except on EConvertError do label1.caption := 'Invalid number!'; end; end; Read up on exception handling. ...Gary --- GoldED 2.41 * Origin: The Flying Circus BBS, Farmington Hills, MI, USA. (1:2410/905) --------------- FIDO MESSAGE AREA==> TOPIC: 269 DELPHI Ref: F3P00000 Date: 03/19/98 From: STEVE ROGERS Time: 06:32pm \/To: GREG MACLELLAN (Read 0 times) Subj: EConvertError GM>how do you pick up the EConvertError, for example after running Strtoint? GM>what would i do here: GM>procedure tForm1.GetData; >var i:integer; >begin > i := strtoint(edit1.text); > if then label1.caption := 'Invalid number!' > else begin > ... > end; >end; You need to use Delphi's exception handler (see the dox about "try"): try i := strtoint(edit1.text); except on EConvertError do label1.caption := 'Invalid number!'; end; --- PCBoard (R) v15.3/M 5 * Origin: Riverdale, Ga (1:133/9024) --------------- FIDO MESSAGE AREA==> TOPIC: 269 DELPHI Ref: F3P00001 Date: 03/18/98 From: BRYAN SMITH Time: 02:38pm \/To: STEVE BATSON (Read 0 times) Subj: Delphi 4 On 15 Mar 98 Steve Batson said to All... SB> Has anyone heard anything about Delphi 4? I know it's comming, but I SB> am not on the beta program this time, so I don't know what's going on SB> with it. It will be interesting to see what they can add to Delphi 3 that people will pay money for. With Internet connectivity already in place, it's going to be hard to convince the "buy every second release" gang to shell out. --- PPoint 2.00 * Origin: Kingston, Canada (1:249/109.11)