Re: [U2] {BDT] Commenting A Block Of Code

2013-01-10 Thread Doug Averch
Bill: Thanks for the call out. But the right answer was given. However, BDT should have a right clickable menu item for toggling commented code blocks. Regards, Doug www.u2lgoic.com/tools.html 'When BDT is not good enough try XLr8Editor" On Thu, Jan 10, 2013 at 8:56 AM, Bill Brutzman wrote: >

Re: [U2] {BDT] Commenting A Block Of Code

2013-01-10 Thread Symeon Breen
My apologies - I did not spot that -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bobby Worley Sent: 10 January 2013 15:28 To: U2 Users List Subject: Re: [U2] {BDT] Commenting A Block Of Code The OP (bill

Re: [U2] {BDT] Commenting A Block Of Code

2013-01-10 Thread Bill Brutzman
Victory... Thanks Ross... for the best answer. Thanks also to Troy, Charles, Brian, Bobby, Dave, Will, Wol, Symeon, Peter, and John-Boy... for responding. I am shocked... that I did not see anything from Doug. --Bill ___ U2-Users mailing list U2-Use

Re: [U2] {BDT] Commenting A Block Of Code

2013-01-10 Thread Charles_Shaffer
Don't know if someone mentioned $DEFINE and $IFDEF, but you can do this to comment out blocks of code. $DEFINE DEBUG later enclose the code in a $IFDEF/$ENDIF block. $IFDEF DEBUG Code to be commented out $ENDIF Then to bring it back undefine DEBUG or move the $IFDEF statement. Charles

Re: [U2] {BDT] Commenting A Block Of Code

2013-01-10 Thread Brian Leach
o: U2 Users List Subject: Re: [U2] {BDT] Commenting A Block Of Code You could surround the lines with an IF statement that always evaluates to false. Not the same as commenting out of course. IF (0) THEN Code you don't want to run. END -Original Message- From: u2-

Re: [U2] {BDT] Commenting A Block Of Code

2013-01-10 Thread Bobby Worley
--Original Message- > From: u2-users-boun...@listserver.u2ug.org > [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bill Brutzman > Sent: 10 January 2013 01:25 > To: U2 Users List > Subject: [U2] {BDT] Commenting A Block Of Code > > Rather than going line-by-line... is ther

Re: [U2] {BDT] Commenting A Block Of Code

2013-01-10 Thread Dave Davis
g] On Behalf Of Bill Brutzman Sent: Wednesday, January 09, 2013 8:25 PM To: U2 Users List Subject: [U2] {BDT] Commenting A Block Of Code Rather than going line-by-line... is there a way... or a trick to highlighting several lines of code... And commenting out all of these lines in aggregate? I h

Re: [U2] {BDT] Commenting A Block Of Code

2013-01-10 Thread Wjhonson
Not G11 ? Ok I'm kidding -Original Message- From: Wols Lists To: u2-users Sent: Thu, Jan 10, 2013 3:18 am Subject: Re: [U2] {BDT] Commenting A Block Of Code On 10/01/13 01:55, Peter Cheney wrote: > Hi Bill, > > In UV's ED use the < (start block) and >

Re: [U2] {BDT] Commenting A Block Of Code

2013-01-10 Thread Wols Lists
On 10/01/13 01:55, Peter Cheney wrote: > Hi Bill, > > In UV's ED use the < (start block) and > (end block) to define a block of > code. > Then do C//*/B > This will prompt for confirmation of change block from line n through m. > Hmmm that's new to me ... What I would have done - let's say

Re: [U2] {BDT] Commenting A Block Of Code

2013-01-10 Thread Brian Leach
sers-boun...@listserver.u2ug.org] On Behalf Of Bill Brutzman Sent: 10 January 2013 01:25 To: U2 Users List Subject: [U2] {BDT] Commenting A Block Of Code Rather than going line-by-line... is there a way... or a trick to highlighting several lines of code... And commenting out all of these lines in aggr

Re: [U2] {BDT] Commenting A Block Of Code

2013-01-10 Thread Symeon Breen
The big question is which editor ? Winted, Unidebugger, BDT , etc ? -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bill Brutzman Sent: 10 January 2013 01:25 To: U2 Users List Subject: [U2] {BDT] Commenting A

Re: [U2] {BDT] Commenting A Block Of Code

2013-01-09 Thread Bernard Lubin
Subject: [U2] {BDT] Commenting A Block Of Code Rather than going line-by-line... is there a way... or a trick to highlighting several lines of code... And commenting out all of these lines in aggregate? I have a legacy program whose code is no longer compliant... that I am trying to isolate

Re: [U2] {BDT] Commenting A Block Of Code

2013-01-09 Thread Peter Cheney
Commenting A Block Of Code Rather than going line-by-line... is there a way... or a trick to highlighting several lines of code... And commenting out all of these lines in aggregate? I have a legacy program whose code is no longer compliant... that I am trying to isola

[U2] {BDT] Commenting A Block Of Code

2013-01-09 Thread Bill Brutzman
Rather than going line-by-line... is there a way... or a trick to highlighting several lines of code... And commenting out all of these lines in aggregate? I have a legacy program whose code is no longer compliant... that I am trying to isolate. --Bill _