473,396 Members | 2,111 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

New to OOP

Kat
I have created a class for a list of products, not too difficult actually!
I've created properties for product name, size, etc. However, each product
may have one or more categories they fit in to, such as a toothpaste may go
into grocery items and it may go under drugstore items. Do I create a
separate class for these categories, and link that class like you would the
database, a one to many? How else would I handle this, maybe a property as
a list would be better, can I do that?
Feb 10 '07 #1
22 984

"Kat" <Ka**********@yahoo.comwrote in message
news:O9**************@TK2MSFTNGP03.phx.gbl...
>I have created a class for a list of products, not too difficult actually!
I've created properties for product name, size, etc. However, each
product may have one or more categories they fit in to, such as a
toothpaste may go into grocery items and it may go under drugstore items.
Do I create a separate class for these categories, and link that class
like you would the database, a one to many? How else would I handle this,
maybe a property as a list would be better, can I do that?
I would make a separate class for the categories, with a CategoryID field
being the primary key.

Then add a property to your Product class for a corresponding instance of
Category, and a property for the category name.

Private _CategoryInstance As Category
Public Property CategoryInstance() As Category
Get
Return _CategoryInstance
End Get
Private Set(ByVal value As Category)
_CategoryInstance = value
End Set
End Property

Public ReadOnly Property CategoryName() As String
Get
Return CategoryInstance.CategoryName
End Get
End Property

Private _CategoryID As Integer
Public Property CategoryID() As Integer
Get
Return _CategoryID
End Get
Private Set(ByVal value As Integer)
'This is the Set for the CategoryID field in your
' Product class.
'When this is set, go read the database or whatever and
' populate your Category instance for that specific ID.
'Don't re-get the category description if the value hasn't changed
If _CategoryID <value then
_CategoryID = value
CategoryInstance = Category.Create(CategoryID)
End If
End Set
End Property

The Create method in what would be my Category class would create a new
instance of Category for that ID, and go get any corresponding fields for
it and fill them in.

Hope this helps.
Robin S.
Ts'i mahnu uterna ot twan ot geifur hingts uto.


Feb 10 '07 #2
I wouldn't worry about OOP

OOP makes your programs run slower; that means you 'shoudln't use it'

-Aaron

Feb 10 '07 #3

<aa*********@gmail.comwrote in message
news:11*********************@v33g2000cwv.googlegro ups.com...
>I wouldn't worry about OOP

OOP makes your programs run slower; that means you 'shoudln't use it'

-Aaron
Gosh, I guess you didn't write them correctly, or they would be faster. Why
don't you post some of your code, and we will help you improve its
performance?

Robin S.
Ts'i mahnu uterna ot twan ot geifur hingts uto.
Feb 10 '07 #4
Now, Robin, by his own admission, Aaron stated that he just tosses a bunch
of variants together and doesn't worry about the consequences. If the
customer wants the code to run faster and tighter, then THEY can make it
that way themselves.

Bruce

"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:j6******************************@comcast.com. ..
Gosh, I guess you didn't write them correctly, or they would be faster.
Why don't you post some of your code, and we will help you improve its
performance?

Feb 10 '07 #5
"Kat" <Ka**********@yahoo.comwrote in
news:O9**************@TK2MSFTNGP03.phx.gbl:
Do I create a
separate class for these categories, and link that class like you
would the database, a one to many? How else would I handle this,
maybe a property as a list would be better, can I do that?
Take a look at Collections and Generics - they let you store one or more
objects in a list type structure.
Feb 10 '07 #6
Yes, you're right (of course). How silly of me. That's right up there with
giving the users SQLServer and telling them to do their own data access.

Robin S.
----------------------------------
"Bruce W. Darby" <kr******@atcomcast.netwrote in message
news:sc******************************@comcast.com. ..
Now, Robin, by his own admission, Aaron stated that he just tosses a
bunch of variants together and doesn't worry about the consequences. If
the customer wants the code to run faster and tighter, then THEY can make
it that way themselves.

Bruce

"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:j6******************************@comcast.com. ..
>Gosh, I guess you didn't write them correctly, or they would be faster.
Why don't you post some of your code, and we will help you improve its
performance?


Feb 11 '07 #7
Kat,

In my idea should you not conflict OO with OOP.

Everything that you can do in VB.Net is OOP as long as you avoid shared
classes (and modules which are the same).

If you have productinformation that describes the whole class of your
products, than you can create a class Toothpasta which inherits that
productclass drugstore items..

However be aware that the current databaseservers don't work 1 at 1 with
this concept, the DataSet, DataTable concept does, however to get the above
sitation you ave to be for that a little bit more creative.

Be as well aware that by defining in classes you quick put the horse behind
the cart.

A bike has wheels
Front weels and rheer weels
Those have spokes, a different length on the brake side than on the other
side.
Spokes are divided in classes, by instance for racing and for day to day
traveling.

I can go on, but this kind of dividing is endless and in my idea without
sense

Cor

"Kat" <Ka**********@yahoo.comschreef in bericht
news:O9**************@TK2MSFTNGP03.phx.gbl...
>I have created a class for a list of products, not too difficult actually!
I've created properties for product name, size, etc. However, each product
may have one or more categories they fit in to, such as a toothpaste may go
into grocery items and it may go under drugstore items. Do I create a
separate class for these categories, and link that class like you would the
database, a one to many? How else would I handle this, maybe a property as
a list would be better, can I do that?

Feb 11 '07 #8
Kat
Thanks, all, this helps a lot!

"Kat" <Ka**********@yahoo.comwrote in message
news:O9**************@TK2MSFTNGP03.phx.gbl...
>I have created a class for a list of products, not too difficult actually!
I've created properties for product name, size, etc. However, each product
may have one or more categories they fit in to, such as a toothpaste may go
into grocery items and it may go under drugstore items. Do I create a
separate class for these categories, and link that class like you would the
database, a one to many? How else would I handle this, maybe a property as
a list would be better, can I do that?

Feb 12 '07 #9
On Feb 10, 8:08 pm, "RobinS" <Rob...@NoSpam.yah.nonewrote:
Yes, you're right (of course). How silly of me. That's right up there with
giving the users SQLServer and telling them to do their own data access.

Robin S.
----------------------------------
Robin/Bruce - I realize you two are thinking you are helping the
newsgroup out by engaging Aaron, but in reality you are just
encouraging him to troll more. If you must reply (like say he's
misleading a newbie), just create a single post that explains to other
viewers why he is wrong and leave it at that. This pointless taunting
going between Aaron, you, Bruce and others is subtracting from the
value of the newsgroup. After all, If you don't feed the trolls they
will go away...

Thanks,

Seth Rowe

"Bruce W. Darby" <kraco...@atcomcast.netwrote in messagenews:sc******************************@comca st.com...
Now, Robin, by his own admission, Aaron stated that he just tosses a
bunch of variants together and doesn't worry about the consequences. If
the customer wants the code to run faster and tighter, then THEY can make
it that way themselves.
Bruce
"RobinS" <Rob...@NoSpam.yah.nonewrote in message
news:j6******************************@comcast.com. ..
Gosh, I guess you didn't write them correctly, or they would be faster.
Why don't you post some of your code, and we will help you improve its
performance?

Feb 12 '07 #10
Kat wrote:
I have created a class for a list of products, not too difficult actually!
I've created properties for product name, size, etc. However, each product
may have one or more categories they fit in to, such as a toothpaste may go
into grocery items and it may go under drugstore items. Do I create a
separate class for these categories, and link that class like you would the
database, a one to many? How else would I handle this, maybe a property as
a list would be better, can I do that?
One possible way of doing what you want is to declare interfaces to
represent the "categories" your objects fit in.

For instance:

<aircode>
Interface IGrocery
'members specific to Grocery items
End Interface

Interface IDrugstore
'members specific for Drugstore items
End Interface

Interface IVegetable
Inherits IGrocery
'...
End Interface

Class Toothpaste
Inherits Products
Implements IGrocery, IDrugstore
'...
End Class

Class Tomato
Inherits Products
Implements IVegetable
'...
End Class

Dim Vegetables As New List(Of IVegetable)
Dim Groceries As New List(Of IGrocery)
Dim DrugstoreItems As New List(Of IDrugstore)

Dim AToothPaste As New Toothpaste
Dim ATomato As New Tomato

Vegetables.Add(ATomato)
DrugstoreItems.Add(AToothPaste)
Groceries.Add(AToothPaste)
Groceries.Add(ATomato) 'How come??
</aircode>

An interface indicates that an object is of a given category and
implements a given functionality. Notice that this is strictly OOP
related, and has nothing to do with a database-wise approach.

HTH.

Regards,

Branco.



Feb 12 '07 #11
Thank you, Seth. I've composed several replies recently in which I was
going to make similar comments about Robin and Bruce but I chose not to send
them because I didn't want to perpetuate the problem. In my mind they are
no better than Aaron and are in fact hurting their own reputations by
lowering themselves to his level. "Grow up" is one term I use with my kids
when they act this way - it shouldn't have to be said in a professional news
group.
"rowe_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@q2g2000cwa.googlegro ups.com...
On Feb 10, 8:08 pm, "RobinS" <Rob...@NoSpam.yah.nonewrote:
>Yes, you're right (of course). How silly of me. That's right up there
with
giving the users SQLServer and telling them to do their own data access.

Robin S.
----------------------------------
Robin/Bruce - I realize you two are thinking you are helping the
newsgroup out by engaging Aaron, but in reality you are just
encouraging him to troll more. If you must reply (like say he's
misleading a newbie), just create a single post that explains to other
viewers why he is wrong and leave it at that. This pointless taunting
going between Aaron, you, Bruce and others is subtracting from the
value of the newsgroup. After all, If you don't feed the trolls they
will go away...

Thanks,

Seth Rowe

>"Bruce W. Darby" <kraco...@atcomcast.netwrote in
messagenews:sc******************************@comc ast.com...
Now, Robin, by his own admission, Aaron stated that he just tosses a
bunch of variants together and doesn't worry about the consequences. If
the customer wants the code to run faster and tighter, then THEY can
make
it that way themselves.
Bruce
"RobinS" <Rob...@NoSpam.yah.nonewrote in message
news:j6******************************@comcast.com ...
Gosh, I guess you didn't write them correctly, or they would be
faster.
Why don't you post some of your code, and we will help you improve its
performance?


Feb 12 '07 #12
Seth,

You are, of course, correct. I don't LIKE to feed trolls, but there are
times where I feel that some kind of response is necessary to let the troll
know that their input is less than desired. It appears that I may have made
some 'trolls' of the troll, so I must apologize to the group for wasting
bandwidth on that. I'll do my best to remain out of any future conversations
with the person who desires such attention.

Bruce

"rowe_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@q2g2000cwa.googlegro ups.com...
On Feb 10, 8:08 pm, "RobinS" <Rob...@NoSpam.yah.nonewrote:
>Yes, you're right (of course). How silly of me. That's right up there
with
giving the users SQLServer and telling them to do their own data access.

Robin S.
----------------------------------
Robin/Bruce - I realize you two are thinking you are helping the
newsgroup out by engaging Aaron, but in reality you are just
encouraging him to troll more. If you must reply (like say he's
misleading a newbie), just create a single post that explains to other
viewers why he is wrong and leave it at that. This pointless taunting
going between Aaron, you, Bruce and others is subtracting from the
value of the newsgroup. After all, If you don't feed the trolls they
will go away...

Thanks,

Seth Rowe

>"Bruce W. Darby" <kraco...@atcomcast.netwrote in
messagenews:sc******************************@comc ast.com...
Now, Robin, by his own admission, Aaron stated that he just tosses a
bunch of variants together and doesn't worry about the consequences. If
the customer wants the code to run faster and tighter, then THEY can
make
it that way themselves.
Bruce
"RobinS" <Rob...@NoSpam.yah.nonewrote in message
news:j6******************************@comcast.com ...
Gosh, I guess you didn't write them correctly, or they would be
faster.
Why don't you post some of your code, and we will help you improve its
performance?


Feb 12 '07 #13
msnews,

Thank you for 'thinking' of making such posts. Again I apologize for making
misuse of this forum. I actually came to the reallization on my own, it's
just sometimes I feel that folks who 'think' about saying something are
afraid of standing up and saying what they believe because someone will
think less of them for it. I am grateful that Seth said what he did when he
said it and I can accept admonition and move on with my life. But you
needn't tell me to 'grow up'. Handling the situation as Seth did is enough
to help anyone whose mature enough to realize it. And please, I don't want
you to think less of Robin for what he has posted against Aaron's attacks.
If his responses to Aaron, in ANY of his myriad personalities, is enough to
lessen his reputation for all the help he has given to others on this board,
then your opinion of him was none too high to begin with and that is a
shame. And since I don't have any children to tell to grow up, then my
response to you is to do as you see fit with this post.
No response is necessary.

Bruce
"msnews" <ms****@msnews.comwrote in message
news:Ow**************@TK2MSFTNGP04.phx.gbl...
Thank you, Seth. I've composed several replies recently in which I was
going to make similar comments about Robin and Bruce but I chose not to
send them because I didn't want to perpetuate the problem. In my mind
they are no better than Aaron and are in fact hurting their own
reputations by lowering themselves to his level. "Grow up" is one term I
use with my kids when they act this way - it shouldn't have to be said in
a professional news group.
"rowe_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@q2g2000cwa.googlegro ups.com...
>On Feb 10, 8:08 pm, "RobinS" <Rob...@NoSpam.yah.nonewrote:
>>Yes, you're right (of course). How silly of me. That's right up there
with
giving the users SQLServer and telling them to do their own data access.

Robin S.
----------------------------------
Robin/Bruce - I realize you two are thinking you are helping the
newsgroup out by engaging Aaron, but in reality you are just
encouraging him to troll more. If you must reply (like say he's
misleading a newbie), just create a single post that explains to other
viewers why he is wrong and leave it at that. This pointless taunting
going between Aaron, you, Bruce and others is subtracting from the
value of the newsgroup. After all, If you don't feed the trolls they
will go away...

Thanks,

Seth Rowe

>>"Bruce W. Darby" <kraco...@atcomcast.netwrote in
messagenews:sc******************************@com cast.com...

Now, Robin, by his own admission, Aaron stated that he just tosses a
bunch of variants together and doesn't worry about the consequences.
If
the customer wants the code to run faster and tighter, then THEY can
make
it that way themselves.

Bruce

"RobinS" <Rob...@NoSpam.yah.nonewrote in message
news:j6******************************@comcast.co m...
Gosh, I guess you didn't write them correctly, or they would be
faster.
Why don't you post some of your code, and we will help you improve
its
performance?



Feb 12 '07 #14
run away while you still can

OOP is for retards that listen to Microsoft

ever since Microsoft betrayed the VB community; It occurred to me that
we should 'question microsoft'

Feb 12 '07 #15
run away while you still can

OOP is for retards that listen to Microsoft
for starters, I have 10 books at home that all agree that 'oop makes
for more verbosity and makes code run slower'

ever since Microsoft betrayed the VB community; It occurred to me that
we should 'question microsoft'

Feb 12 '07 #16
hey dipshit wtf is wrong with you?

just because Aaron speaks the truth; does that mean that you MUST
discredit us?

I've got 10 books on OOP at home that consistently claim that OOP
makes:

a) more verbosity
b) slower code
only a fucking idiot would use OOP, IMHO

-Tom


On Feb 10, 1:12 pm, "Bruce W. Darby" <kraco...@atcomcast.netwrote:
Now, Robin, by his own admission, Aaron stated that he just tosses a bunch
of variants together and doesn't worry about the consequences. If the
customer wants the code to run faster and tighter, then THEY can make it
that way themselves.

Bruce

"RobinS" <Rob...@NoSpam.yah.nonewrote in message

news:j6******************************@comcast.com. ..
Gosh, I guess you didn't write them correctly, or they would be faster.
Why don't you post some of your code, and we will help you improve its
performance?- Hide quoted text -

- Show quoted text -

Feb 12 '07 #17
Kat;
you just need to use a DATABASE instead of classes and this OOP crap.
I mean seriously

PRODUCTS, PRODUCT GROUPS; ALL THAT CRAP-- ALL IT IS, IS MERELY DATA
WITHIN THE DATABASE

btw; kat you date 'nate' and you used to live with mandy??

-Tom
On Feb 11, 2:43 am, "Cor Ligthert [MVP]" <notmyfirstn...@planet.nl>
wrote:
Kat,

In my idea should you not conflict OO with OOP.

Everything that you can do in VB.Net is OOP as long as you avoid shared
classes (and modules which are the same).

If you have productinformation that describes the whole class of your
products, than you can create a class Toothpasta which inherits that
productclass drugstore items..

However be aware that the current databaseservers don't work 1 at 1 with
this concept, the DataSet, DataTable concept does, however to get the above
sitation you ave to be for that a little bit more creative.

Be as well aware that by defining in classes you quick put the horse behind
the cart.

A bike has wheels
Front weels and rheer weels
Those have spokes, a different length on the brake side than on the other
side.
Spokes are divided in classes, by instance for racing and for day to day
traveling.

I can go on, but this kind of dividing is endless and in my idea without
sense

Cor

"Kat" <KatMagicB...@yahoo.comschreef in berichtnews:O9**************@TK2MSFTNGP03.phx.gbl. ..
I have created a class for a list of products, not too difficult actually!
I've created properties for product name, size, etc. However, each product
may have one or more categories they fit in to, such as a toothpaste may go
into grocery items and it may go under drugstore items. Do I create a
separate class for these categories, and link that class like you would the
database, a one to many? How else would I handle this, maybe a property as
a list would be better, can I do that?- Hide quoted text -

- Show quoted text -

Feb 12 '07 #18
I never said that people should write their own data access.

I'm saying that end users writing queries is a lot more efficient than
having end users copy and paste, or print it out and re-enter it by
hand into a spreadsheet.

Giving each user a place to create views and sprocs is _REALLY_ basic
concept

and it's better to give them views and sprocs than queries; since ADP
makes sprocs EASIER TO WRITE than silly MDB queries

You kids are really, seriously and honestly, delusional
-Tom


On Feb 12, 7:22 am, "rowe_newsgroups" <rowe_em...@yahoo.comwrote:
On Feb 10, 8:08 pm, "RobinS" <Rob...@NoSpam.yah.nonewrote:Yes, you're right (of course). How silly of me. That's right up there with
giving the users SQLServer and telling them to do their own data access.
Robin S.
----------------------------------

Robin/Bruce - I realize you two are thinking you are helping the
newsgroup out by engaging Aaron, but in reality you are just
encouraging him to troll more. If you must reply (like say he's
misleading a newbie), just create a single post that explains to other
viewers why he is wrong and leave it at that. This pointless taunting
going between Aaron, you, Bruce and others is subtracting from the
value of the newsgroup. After all, If you don't feed the trolls they
will go away...

Thanks,

Seth Rowe
"Bruce W. Darby" <kraco...@atcomcast.netwrote in messagenews:sc******************************@comca st.com...
Now, Robin, by his own admission, Aaron stated that he just tosses a
bunch of variants together and doesn't worry about the consequences. If
the customer wants the code to run faster and tighter, then THEY can make
it that way themselves.
Bruce
"RobinS" <Rob...@NoSpam.yah.nonewrote in message
>news:j6******************************@comcast.com ...
>Gosh, I guess you didn't write them correctly, or they would be faster.
>Why don't you post some of your code, and we will help you improve its
>performance?- Hide quoted text -

- Show quoted text -

Feb 12 '07 #19
msnews;

Why don't you STFU ?

just because your company CENSORS me it doesn't mean that it can
SILENCE me.

I am dead fucking serious.

80% of VB6 programmers 'never wrote a class'

why do we need classes shoved down our throats?

your OOP _CRAP_ is a major roadblock to newbie developers
telling them to 'keep everything in a database and fuck oop' is a
perfectly legitimate strategy.

I am so fucking sorry that your stupid company is powerless to silence
my posts in newsgroups.

maybe Microsoft should have started a bidding war when deja went
titsup

-Tom


On Feb 12, 9:25 am, "msnews" <msn...@msnews.comwrote:
Thank you, Seth. I've composed several replies recently in which I was
going to make similar comments about Robin and Bruce but I chose not to send
them because I didn't want to perpetuate the problem. In my mind they are
no better than Aaron and are in fact hurting their own reputations by
lowering themselves to his level. "Grow up" is one term I use with my kids
when they act this way - it shouldn't have to be said in a professional news
group.

"rowe_newsgroups" <rowe_em...@yahoo.comwrote in message

news:11**********************@q2g2000cwa.googlegro ups.com...
On Feb 10, 8:08 pm, "RobinS" <Rob...@NoSpam.yah.nonewrote:
Yes, you're right (of course). How silly of me. That's right up there
with
giving the users SQLServer and telling them to do their own data access.
Robin S.
----------------------------------
Robin/Bruce - I realize you two are thinking you are helping the
newsgroup out by engaging Aaron, but in reality you are just
encouraging him to troll more. If you must reply (like say he's
misleading a newbie), just create a single post that explains to other
viewers why he is wrong and leave it at that. This pointless taunting
going between Aaron, you, Bruce and others is subtracting from the
value of the newsgroup. After all, If you don't feed the trolls they
will go away...
Thanks,
Seth Rowe
"Bruce W. Darby" <kraco...@atcomcast.netwrote in
messagenews:sc******************************@comca st.com...
Now, Robin, by his own admission, Aaron stated that he just tosses a
bunch of variants together and doesn't worry about the consequences. If
the customer wants the code to run faster and tighter, then THEY can
make
it that way themselves.
Bruce
"RobinS" <Rob...@NoSpam.yah.nonewrote in message
news:j6******************************@comcast.com. ..
Gosh, I guess you didn't write them correctly, or they would be
faster.
Why don't you post some of your code, and we will help you improve its
performance?- Hide quoted text -

- Show quoted text -

Feb 12 '07 #20
Bruce

you need to grow up and pull the big blue dildo out of your ass
Microsoft fucked us all and you're too fucking ignorant to know
otherwise

I am so sorry that you think that 'everything is peachy'

Microsoft is selling a product that doesn't run in 3/4 of the places
that vb6 ran.

WHY DONT YOU SHUT THE FUCK UP UNTIL YOU ARE ON THE WINNING SIDE OF THE
ARGUMENT

FUCK MS THEY KILLED VB; AND I WILL FIGHT THIS WAR UNTIL THEY BRING
BACK VB6 OR GIVE NEW VB AS MUCH POWER AS VBA / VBS / VB6

-Larry Linson Jr Wannabe
(so I could say 'DAD YOU ARE SENILE, RETIRE AND STFU BECAUSE YOU ARE
STUCK IN THE 90s)
On Feb 12, 10:16 am, "Bruce W. Darby" <kraco...@atcomcast.netwrote:
msnews,

Thank you for 'thinking' of making such posts. Again I apologize for making
misuse of this forum. I actually came to the reallization on my own, it's
just sometimes I feel that folks who 'think' about saying something are
afraid of standing up and saying what they believe because someone will
think less of them for it. I am grateful that Seth said what he did when he
said it and I can accept admonition and move on with my life. But you
needn't tell me to 'grow up'. Handling the situation as Seth did is enough
to help anyone whose mature enough to realize it. And please, I don't want
you to think less of Robin for what he has posted against Aaron's attacks.
If his responses to Aaron, in ANY of his myriad personalities, is enough to
lessen his reputation for all the help he has given to others on this board,
then your opinion of him was none too high to begin with and that is a
shame. And since I don't have any children to tell to grow up, then my
response to you is to do as you see fit with this post.
No response is necessary.

Bruce"msnews" <msn...@msnews.comwrote in message

news:Ow**************@TK2MSFTNGP04.phx.gbl...
Thank you, Seth. I've composed several replies recently in which I was
going to make similar comments about Robin and Bruce but I chose not to
send them because I didn't want to perpetuate the problem. In my mind
they are no better than Aaron and are in fact hurting their own
reputations by lowering themselves to his level. "Grow up" is one term I
use with my kids when they act this way - it shouldn't have to be said in
a professional news group.
"rowe_newsgroups" <rowe_em...@yahoo.comwrote in message
news:11**********************@q2g2000cwa.googlegro ups.com...
On Feb 10, 8:08 pm, "RobinS" <Rob...@NoSpam.yah.nonewrote:
Yes, you're right (of course). How silly of me. That's right up there
with
giving the users SQLServer and telling them to do their own data access.
>Robin S.
----------------------------------
Robin/Bruce - I realize you two are thinking you are helping the
newsgroup out by engaging Aaron, but in reality you are just
encouraging him to troll more. If you must reply (like say he's
misleading a newbie), just create a single post that explains to other
viewers why he is wrong and leave it at that. This pointless taunting
going between Aaron, you, Bruce and others is subtracting from the
value of the newsgroup. After all, If you don't feed the trolls they
will go away...
Thanks,
Seth Rowe
>"Bruce W. Darby" <kraco...@atcomcast.netwrote in
messagenews:sc******************************@comc ast.com...
Now, Robin, by his own admission, Aaron stated that he just tosses a
bunch of variants together and doesn't worry about the consequences.
If
the customer wants the code to run faster and tighter, then THEY can
make
it that way themselves.
Bruce
"RobinS" <Rob...@NoSpam.yah.nonewrote in message
news:j6******************************@comcast.com ...
Gosh, I guess you didn't write them correctly, or they would be
faster.
Why don't you post some of your code, and we will help you improve
its
performance?- Hide quoted text -

- Show quoted text -

Feb 12 '07 #21
Thanks, Bruce, I appreciate that.

As for Seth, I will be more particular in my responses to whats-his-name.

Robin S.
---------------------------------------
"Bruce W. Darby" <kr******@atcomcast.netwrote in message
news:D6******************************@comcast.com. ..
msnews,

Thank you for 'thinking' of making such posts. Again I apologize for
making misuse of this forum. I actually came to the reallization on my
own, it's just sometimes I feel that folks who 'think' about saying
something are afraid of standing up and saying what they believe because
someone will think less of them for it. I am grateful that Seth said what
he did when he said it and I can accept admonition and move on with my
life. But you needn't tell me to 'grow up'. Handling the situation as
Seth did is enough to help anyone whose mature enough to realize it. And
please, I don't want you to think less of Robin for what he has posted
against Aaron's attacks. If his responses to Aaron, in ANY of his myriad
personalities, is enough to lessen his reputation for all the help he has
given to others on this board, then your opinion of him was none too high
to begin with and that is a shame. And since I don't have any children to
tell to grow up, then my response to you is to do as you see fit with
this post.
No response is necessary.

Bruce
"msnews" <ms****@msnews.comwrote in message
news:Ow**************@TK2MSFTNGP04.phx.gbl...
>Thank you, Seth. I've composed several replies recently in which I was
going to make similar comments about Robin and Bruce but I chose not to
send them because I didn't want to perpetuate the problem. In my mind
they are no better than Aaron and are in fact hurting their own
reputations by lowering themselves to his level. "Grow up" is one term
I use with my kids when they act this way - it shouldn't have to be said
in a professional news group.
"rowe_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@q2g2000cwa.googlegr oups.com...
>>On Feb 10, 8:08 pm, "RobinS" <Rob...@NoSpam.yah.nonewrote:
Yes, you're right (of course). How silly of me. That's right up there
with
giving the users SQLServer and telling them to do their own data
access.

Robin S.
----------------------------------
Robin/Bruce - I realize you two are thinking you are helping the
newsgroup out by engaging Aaron, but in reality you are just
encouraging him to troll more. If you must reply (like say he's
misleading a newbie), just create a single post that explains to other
viewers why he is wrong and leave it at that. This pointless taunting
going between Aaron, you, Bruce and others is subtracting from the
value of the newsgroup. After all, If you don't feed the trolls they
will go away...

Thanks,

Seth Rowe
"Bruce W. Darby" <kraco...@atcomcast.netwrote in
messagenews:sc******************************@co mcast.com...

Now, Robin, by his own admission, Aaron stated that he just tosses a
bunch of variants together and doesn't worry about the consequences.
If
the customer wants the code to run faster and tighter, then THEY can
make
it that way themselves.

Bruce

"RobinS" <Rob...@NoSpam.yah.nonewrote in message
news:j6******************************@comcast.c om...
Gosh, I guess you didn't write them correctly, or they would be
faster.
Why don't you post some of your code, and we will help you improve
its
performance?




Feb 13 '07 #22
You're most welcome Robin. Meant every word. I respect your abilities as a
developer and as a human being willing to stand up against what is wrong.
But I'm under a gag order and .... MMMMPPHH... :)

"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:io******************************@comcast.com. ..
Thanks, Bruce, I appreciate that.

As for Seth, I will be more particular in my responses to whats-his-name.

Robin S.
---------------------------------------
"Bruce W. Darby" <kr******@atcomcast.netwrote in message
news:D6******************************@comcast.com. ..
>msnews,

Thank you for 'thinking' of making such posts. Again I apologize for
making misuse of this forum. I actually came to the reallization on my
own, it's just sometimes I feel that folks who 'think' about saying
something are afraid of standing up and saying what they believe because
someone will think less of them for it. I am grateful that Seth said what
he did when he said it and I can accept admonition and move on with my
life. But you needn't tell me to 'grow up'. Handling the situation as
Seth did is enough to help anyone whose mature enough to realize it. And
please, I don't want you to think less of Robin for what he has posted
against Aaron's attacks. If his responses to Aaron, in ANY of his myriad
personalities, is enough to lessen his reputation for all the help he has
given to others on this board, then your opinion of him was none too high
to begin with and that is a shame. And since I don't have any children to
tell to grow up, then my response to you is to do as you see fit with
this post.
No response is necessary.

Bruce
"msnews" <ms****@msnews.comwrote in message
news:Ow**************@TK2MSFTNGP04.phx.gbl...
>>Thank you, Seth. I've composed several replies recently in which I was
going to make similar comments about Robin and Bruce but I chose not to
send them because I didn't want to perpetuate the problem. In my mind
they are no better than Aaron and are in fact hurting their own
reputations by lowering themselves to his level. "Grow up" is one term
I use with my kids when they act this way - it shouldn't have to be said
in a professional news group.
"rowe_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@q2g2000cwa.googleg roups.com...
On Feb 10, 8:08 pm, "RobinS" <Rob...@NoSpam.yah.nonewrote:
Yes, you're right (of course). How silly of me. That's right up there
with
giving the users SQLServer and telling them to do their own data
access.
>
Robin S.
----------------------------------
Robin/Bruce - I realize you two are thinking you are helping the
newsgroup out by engaging Aaron, but in reality you are just
encouraging him to troll more. If you must reply (like say he's
misleading a newbie), just create a single post that explains to other
viewers why he is wrong and leave it at that. This pointless taunting
going between Aaron, you, Bruce and others is subtracting from the
value of the newsgroup. After all, If you don't feed the trolls they
will go away...

Thanks,

Seth Rowe
"Bruce W. Darby" <kraco...@atcomcast.netwrote in
messagenews:sc******************************@c omcast.com...
>
Now, Robin, by his own admission, Aaron stated that he just tosses a
bunch of variants together and doesn't worry about the consequences.
If
the customer wants the code to run faster and tighter, then THEY can
make
it that way themselves.
>
Bruce
>
"RobinS" <Rob...@NoSpam.yah.nonewrote in message
news:j6******************************@comcast. com...
Gosh, I guess you didn't write them correctly, or they would be
faster.
Why don't you post some of your code, and we will help you improve
its
performance?




Feb 13 '07 #23

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: William C. White | last post by:
Does anyone know of a way to use PHP /w Authorize.net AIM without using cURL? Our website is hosted on a shared drive and the webhost company doesn't installed additional software (such as cURL)...
2
by: Albert Ahtenberg | last post by:
Hello, I don't know if it is only me but I was sure that header("Location:url") redirects the browser instantly to URL, or at least stops the execution of the code. But appearantely it continues...
3
by: James | last post by:
Hi, I have a form with 2 fields. 'A' 'B' The user completes one of the fields and the form is submitted. On the results page I want to run a query, but this will change subject to which...
0
by: Ollivier Robert | last post by:
Hello, I'm trying to link PHP with Oracle 9.2.0/OCI8 with gcc 3.2.3 on a Solaris9 system. The link succeeds but everytime I try to run php, I get a SEGV from inside the libcnltsh.so library. ...
1
by: Richard Galli | last post by:
I want viewers to compare state laws on a single subject. Imagine a three-column table with a drop-down box on the top. A viewer selects a state from the list, and that state's text fills the...
4
by: Albert Ahtenberg | last post by:
Hello, I have two questions. 1. When the user presses the back button and returns to a form he filled the form is reseted. How do I leave there the values he inserted? 2. When the...
1
by: inderjit S Gabrie | last post by:
Hi all Here is the scenerio ...is it possibly to do this... i am getting valid course dates output on to a web which i have designed ....all is okay so far , look at the following web url ...
2
by: Jack | last post by:
Hi All, What is the PHP equivilent of Oracle bind variables in a SQL statement, e.g. select x from y where z=:parameter Which in asp/jsp would be followed by some statements to bind a value...
3
by: Sandwick | last post by:
I am trying to change the size of a drawing so they are all 3x3. the script below is what i was trying to use to cut it in half ... I get errors. I can display the normal picture but not the...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.