473,396 Members | 1,590 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.

OO design and programming...

I am completely new to vb .net. I am using visual Studio 2005 to redo an
Access 2000 application into a .net OO application using SQL Server 2000 -
so a complete rewrite and re-thinking of how this app will work.

I have NEVER done any OO programming at all although I have used OO
techniques in programs of course - just never actually designed the classes
etc...

So I am just a tad nervous in re-writing this Access application as it is a
large app and I am learning so many new things I have never used before such
as vb.net, OO design, SQL server and Crystal!!! It is a little mind boggling
to be doing a big project using all this new stuff!!!

Right now I figured the best place to start was to look at the existing
application and try to extract from that what some of my classes will be for
the new app and then add new classes. Then from that I can determine the
data required and methods for each class - which will then lead to the
physical SQL Server db design to facilitate my class design. The physical db
will be WAY different than the old Access 2000 design.

I guess I am looking for a little guidance from those who work in this all
the time. Am I doing this in the right order basically ?

I am also looking for a really god book on OO design principals - leaning
towards vb.net would be good but the principals are all the same so just an
overall OO design book would be good.

Does any one know of a good one - or some really good reference material for
this on the internet? I am unsure of things like how many classes do I
really need to mimic a parent child relationship for instance. The parent
would be one class and the children would be yet another class - but would
it be a subclass of the parent etc.. etc.. Figuring out how many classes
and their relationships - when to create new classes or include all the data
in one class is what I am having a hard time with. (when to subclass and
when not to...)

Any help at all would be most appreciated!!!

Thanks, Brad
Nov 23 '06 #1
20 1492
You should design the data structures first, which leads
to your business layer classes, and then the UI.

To quote myself, I just posted the following recommendation
to someone else:

Deborah Kurata has a book coming out in January called "Doing Objects
in VB2005". It explains the GUIDS methodology for analysis and
design, and then shows you explicitly how to set up your 3 layers.
You end up writing an entire application. I found the book clear
and concise, and a lot easier than reading an entire book on theory.
It also had a lot of neat things in it about saving your project
settings, code snippets, and bet of all, binding your data to objects.

Rockford Lhotka also has some business objects books that are
supposed to be definitive.

Robin S.
--------------------------------
"Brad Pears" <do********@notreal.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
>I am completely new to vb .net. I am using visual Studio 2005 to redo an
Access 2000 application into a .net OO application using SQL Server 2000 -
so a complete rewrite and re-thinking of how this app will work.

I have NEVER done any OO programming at all although I have used OO
techniques in programs of course - just never actually designed the
classes etc...

So I am just a tad nervous in re-writing this Access application as it is
a large app and I am learning so many new things I have never used before
such as vb.net, OO design, SQL server and Crystal!!! It is a little mind
boggling to be doing a big project using all this new stuff!!!

Right now I figured the best place to start was to look at the existing
application and try to extract from that what some of my classes will be
for the new app and then add new classes. Then from that I can determine
the data required and methods for each class - which will then lead to the
physical SQL Server db design to facilitate my class design. The physical
db will be WAY different than the old Access 2000 design.

I guess I am looking for a little guidance from those who work in this all
the time. Am I doing this in the right order basically ?

I am also looking for a really god book on OO design principals - leaning
towards vb.net would be good but the principals are all the same so just
an overall OO design book would be good.

Does any one know of a good one - or some really good reference material
for this on the internet? I am unsure of things like how many classes do
I really need to mimic a parent child relationship for instance. The
parent would be one class and the children would be yet another class -
but would it be a subclass of the parent etc.. etc.. Figuring out how
many classes and their relationships - when to create new classes or
include all the data in one class is what I am having a hard time with.
(when to subclass and when not to...)

Any help at all would be most appreciated!!!

Thanks, Brad

Nov 23 '06 #2
How did you manage to see this book ahead of time?? Any chance of getting it
early?? I am starting this now and would be nice to have a good reference
handy...

Thanks for the help.
"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:p8******************************@comcast.com. ..
You should design the data structures first, which leads
to your business layer classes, and then the UI.

To quote myself, I just posted the following recommendation
to someone else:

Deborah Kurata has a book coming out in January called "Doing Objects
in VB2005". It explains the GUIDS methodology for analysis and
design, and then shows you explicitly how to set up your 3 layers.
You end up writing an entire application. I found the book clear
and concise, and a lot easier than reading an entire book on theory.
It also had a lot of neat things in it about saving your project
settings, code snippets, and bet of all, binding your data to objects.

Rockford Lhotka also has some business objects books that are
supposed to be definitive.

Robin S.
--------------------------------
"Brad Pears" <do********@notreal.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
>>I am completely new to vb .net. I am using visual Studio 2005 to redo an
Access 2000 application into a .net OO application using SQL Server
2000 - so a complete rewrite and re-thinking of how this app will work.

I have NEVER done any OO programming at all although I have used OO
techniques in programs of course - just never actually designed the
classes etc...

So I am just a tad nervous in re-writing this Access application as it is
a large app and I am learning so many new things I have never used before
such as vb.net, OO design, SQL server and Crystal!!! It is a little mind
boggling to be doing a big project using all this new stuff!!!

Right now I figured the best place to start was to look at the existing
application and try to extract from that what some of my classes will be
for the new app and then add new classes. Then from that I can determine
the data required and methods for each class - which will then lead to
the physical SQL Server db design to facilitate my class design. The
physical db will be WAY different than the old Access 2000 design.

I guess I am looking for a little guidance from those who work in this
all the time. Am I doing this in the right order basically ?

I am also looking for a really god book on OO design principals - leaning
towards vb.net would be good but the principals are all the same so just
an overall OO design book would be good.

Does any one know of a good one - or some really good reference material
for this on the internet? I am unsure of things like how many classes do
I really need to mimic a parent child relationship for instance. The
parent would be one class and the children would be yet another class -
but would it be a subclass of the parent etc.. etc.. Figuring out how
many classes and their relationships - when to create new classes or
include all the data in one class is what I am having a hard time with.
(when to subclass and when not to...)

Any help at all would be most appreciated!!!

Thanks, Brad


Nov 23 '06 #3
I knew Deborah because she's the head of my local .Net User Group.
I had some extra time, and knew she was working on her book, so
I offered to read it for content and work through all the example
work. It was a great opportunity for both of us. :-D So I'm
sorry, but it's not going to be available until January. It
does sound like exactly what you need. It really brought everything
together for me, and was the foundation for me making the jump from
VB6 to VB.Net. It explained classes and inheritance and objects.
Reading it made it easier for me to understand everything else
I read after that.

On the bright side, January is not very far away?

If you're desperate, you could check out her VB6 for Objects book;
it's available on amazon for like 67 cents. It's in the wrong
version of the language, but you'd get the general idea. That
version has a lot more information on the analysis/design stage,
from what I understand.

If I hear anything about it coming out sooner, or if I can
get my hands on an advance copy, I'll let you know next week.

Robin S.
--------------------------

"Brad Pears" <do********@notreal.comwrote in message
news:uB**************@TK2MSFTNGP06.phx.gbl...
How did you manage to see this book ahead of time?? Any chance of getting
it early?? I am starting this now and would be nice to have a good
reference handy...

Thanks for the help.
"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:p8******************************@comcast.com. ..
>You should design the data structures first, which leads
to your business layer classes, and then the UI.

To quote myself, I just posted the following recommendation
to someone else:

Deborah Kurata has a book coming out in January called "Doing Objects
in VB2005". It explains the GUIDS methodology for analysis and
design, and then shows you explicitly how to set up your 3 layers.
You end up writing an entire application. I found the book clear
and concise, and a lot easier than reading an entire book on theory.
It also had a lot of neat things in it about saving your project
settings, code snippets, and bet of all, binding your data to objects.

Rockford Lhotka also has some business objects books that are
supposed to be definitive.

Robin S.
--------------------------------
"Brad Pears" <do********@notreal.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
>>>I am completely new to vb .net. I am using visual Studio 2005 to redo an
Access 2000 application into a .net OO application using SQL Server
2000 - so a complete rewrite and re-thinking of how this app will work.

I have NEVER done any OO programming at all although I have used OO
techniques in programs of course - just never actually designed the
classes etc...

So I am just a tad nervous in re-writing this Access application as it
is a large app and I am learning so many new things I have never used
before such as vb.net, OO design, SQL server and Crystal!!! It is a
little mind boggling to be doing a big project using all this new
stuff!!!

Right now I figured the best place to start was to look at the existing
application and try to extract from that what some of my classes will be
for the new app and then add new classes. Then from that I can determine
the data required and methods for each class - which will then lead to
the physical SQL Server db design to facilitate my class design. The
physical db will be WAY different than the old Access 2000 design.

I guess I am looking for a little guidance from those who work in this
all the time. Am I doing this in the right order basically ?

I am also looking for a really god book on OO design principals -
leaning towards vb.net would be good but the principals are all the same
so just an overall OO design book would be good.

Does any one know of a good one - or some really good reference material
for this on the internet? I am unsure of things like how many classes
do I really need to mimic a parent child relationship for instance. The
parent would be one class and the children would be yet another class -
but would it be a subclass of the parent etc.. etc.. Figuring out how
many classes and their relationships - when to create new classes or
include all the data in one class is what I am having a hard time with.
(when to subclass and when not to...)

Any help at all would be most appreciated!!!

Thanks, Brad



Nov 23 '06 #4
I think C# is a more intuitive OO language. I will suggest you start
with it instead of VB.

Nov 24 '06 #5
I think C# is a more intuitive OO language. I will suggest you start
with it instead of VB.

Nov 24 '06 #6
I think C# is a more intuitive OO language. I will suggest you start
with it instead of VB.

Nov 24 '06 #7
I disagree, especially if he already knows VBA and/or VB.
Robin S.
------------------------------
"Thomas" <ch*******@gmail.comwrote in message
news:11**********************@j44g2000cwa.googlegr oups.com...
>I think C# is a more intuitive OO language. I will suggest you start
with it instead of VB.

Nov 24 '06 #8
My creds -- I led a project to convert the largest ever Access application
to .Net; I know both Deborah and Rocky and respect their talents...

First, I feel your pain!

Second, question the move at all. Access is not going away soon. I'll
assume you have done so and decided it is necessary.

Third, do not let your management underestimate the magnitude of the task (I
don't think _you_ are). If the Access app is indeed very large, you are in
for a ride. We spent well over $2MM to convert our app.

If you was me, I'd take RobinS' advice, in a way. I'd glom onto to Rocky's
framework and use it as the basis of your redesign. I don't know it
intimately, but I know that Rocky is one smart guy. So you get his wisdom --
and framework -- for the price of a book (actually the framework is
down-loadable for free from his website).

Next, I'd get some VB.Net mentoring. Nothing intensive, but a couple of
days would save you a couple of months if someone walked you through
VisualStudio (2005) and the basics of VB.Net and the .Net framework. You'll
be amazed at how much you already know -- and can discover via
intellisense--, but there is a paradigm shift and once you grok it you are
on your way. There is a ton of info on MSDN and GotDotNet -- so much so
that it is overwhelming at first.

I would suggest that you do accept the fact that you need to rewrite the app
and forget about any magical translation. And don't look back.

Good luck!

HTH,

Prester John

P.S. I don't frequent the discussion groups very often -- email me, if you
want to, at Pr*********@Comast.Net


"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:0e******************************@comcast.com. ..
>I knew Deborah because she's the head of my local .Net User Group.
I had some extra time, and knew she was working on her book, so
I offered to read it for content and work through all the example
work. It was a great opportunity for both of us. :-D So I'm
sorry, but it's not going to be available until January. It
does sound like exactly what you need. It really brought everything
together for me, and was the foundation for me making the jump from
VB6 to VB.Net. It explained classes and inheritance and objects.
Reading it made it easier for me to understand everything else
I read after that.

On the bright side, January is not very far away?

If you're desperate, you could check out her VB6 for Objects book;
it's available on amazon for like 67 cents. It's in the wrong
version of the language, but you'd get the general idea. That
version has a lot more information on the analysis/design stage,
from what I understand.

If I hear anything about it coming out sooner, or if I can
get my hands on an advance copy, I'll let you know next week.

Robin S.
--------------------------

"Brad Pears" <do********@notreal.comwrote in message
news:uB**************@TK2MSFTNGP06.phx.gbl...
>How did you manage to see this book ahead of time?? Any chance of getting
it early?? I am starting this now and would be nice to have a good
reference handy...

Thanks for the help.
"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:p8******************************@comcast.com ...
>>You should design the data structures first, which leads
to your business layer classes, and then the UI.

To quote myself, I just posted the following recommendation
to someone else:

Deborah Kurata has a book coming out in January called "Doing Objects
in VB2005". It explains the GUIDS methodology for analysis and
design, and then shows you explicitly how to set up your 3 layers.
You end up writing an entire application. I found the book clear
and concise, and a lot easier than reading an entire book on theory.
It also had a lot of neat things in it about saving your project
settings, code snippets, and bet of all, binding your data to objects.

Rockford Lhotka also has some business objects books that are
supposed to be definitive.

Robin S.
--------------------------------
"Brad Pears" <do********@notreal.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl.. .
I am completely new to vb .net. I am using visual Studio 2005 to redo an
Access 2000 application into a .net OO application using SQL Server
2000 - so a complete rewrite and re-thinking of how this app will work.

I have NEVER done any OO programming at all although I have used OO
techniques in programs of course - just never actually designed the
classes etc...

So I am just a tad nervous in re-writing this Access application as it
is a large app and I am learning so many new things I have never used
before such as vb.net, OO design, SQL server and Crystal!!! It is a
little mind boggling to be doing a big project using all this new
stuff!!!

Right now I figured the best place to start was to look at the existing
application and try to extract from that what some of my classes will
be for the new app and then add new classes. Then from that I can
determine the data required and methods for each class - which will
then lead to the physical SQL Server db design to facilitate my class
design. The physical db will be WAY different than the old Access 2000
design.

I guess I am looking for a little guidance from those who work in this
all the time. Am I doing this in the right order basically ?

I am also looking for a really god book on OO design principals -
leaning towards vb.net would be good but the principals are all the
same so just an overall OO design book would be good.

Does any one know of a good one - or some really good reference
material for this on the internet? I am unsure of things like how many
classes do I really need to mimic a parent child relationship for
instance. The parent would be one class and the children would be yet
another class - but would it be a subclass of the parent etc.. etc..
Figuring out how many classes and their relationships - when to create
new classes or include all the data in one class is what I am having a
hard time with. (when to subclass and when not to...)

Any help at all would be most appreciated!!!

Thanks, Brad



Nov 24 '06 #9

I second this. VB is easier on the fingers syntactically and is quite
similar to VB 6/VB Script. I would definately take RobinS recommendation
though but especially make sure those you are working for understand what a
big change it is. Sometimes managers see the words "Upgrade Wizard" and
assume this kind of job is a simple button click away from completion.
Sometimes it's actually quicker to re-write the application from the
ground-up than to fiddle around with existing code.

Also remember what Prester John said: question the need to upgrade in the
first place.

"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:9M******************************@comcast.com. ..
>I disagree, especially if he already knows VBA and/or VB.
Robin S.
------------------------------
"Thomas" <ch*******@gmail.comwrote in message
news:11**********************@j44g2000cwa.googlegr oups.com...
>>I think C# is a more intuitive OO language. I will suggest you start
with it instead of VB.


Nov 24 '06 #10
Thomas,

Do you know both languages.

VB.Net is in my idea definetly more OOP than C#.

Cor

"Thomas" <ch*******@gmail.comschreef in bericht
news:11**********************@j44g2000cwa.googlegr oups.com...
>I think C# is a more intuitive OO language. I will suggest you start
with it instead of VB.

Nov 24 '06 #11
Thanks Robin. I really appreciate your advice. I will follow it!

Brad
"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:0e******************************@comcast.com. ..
>I knew Deborah because she's the head of my local .Net User Group.
I had some extra time, and knew she was working on her book, so
I offered to read it for content and work through all the example
work. It was a great opportunity for both of us. :-D So I'm
sorry, but it's not going to be available until January. It
does sound like exactly what you need. It really brought everything
together for me, and was the foundation for me making the jump from
VB6 to VB.Net. It explained classes and inheritance and objects.
Reading it made it easier for me to understand everything else
I read after that.

On the bright side, January is not very far away?

If you're desperate, you could check out her VB6 for Objects book;
it's available on amazon for like 67 cents. It's in the wrong
version of the language, but you'd get the general idea. That
version has a lot more information on the analysis/design stage,
from what I understand.

If I hear anything about it coming out sooner, or if I can
get my hands on an advance copy, I'll let you know next week.

Robin S.
--------------------------

"Brad Pears" <do********@notreal.comwrote in message
news:uB**************@TK2MSFTNGP06.phx.gbl...
>How did you manage to see this book ahead of time?? Any chance of getting
it early?? I am starting this now and would be nice to have a good
reference handy...

Thanks for the help.
"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:p8******************************@comcast.com ...
>>You should design the data structures first, which leads
to your business layer classes, and then the UI.

To quote myself, I just posted the following recommendation
to someone else:

Deborah Kurata has a book coming out in January called "Doing Objects
in VB2005". It explains the GUIDS methodology for analysis and
design, and then shows you explicitly how to set up your 3 layers.
You end up writing an entire application. I found the book clear
and concise, and a lot easier than reading an entire book on theory.
It also had a lot of neat things in it about saving your project
settings, code snippets, and bet of all, binding your data to objects.

Rockford Lhotka also has some business objects books that are
supposed to be definitive.

Robin S.
--------------------------------
"Brad Pears" <do********@notreal.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl.. .
I am completely new to vb .net. I am using visual Studio 2005 to redo an
Access 2000 application into a .net OO application using SQL Server
2000 - so a complete rewrite and re-thinking of how this app will work.

I have NEVER done any OO programming at all although I have used OO
techniques in programs of course - just never actually designed the
classes etc...

So I am just a tad nervous in re-writing this Access application as it
is a large app and I am learning so many new things I have never used
before such as vb.net, OO design, SQL server and Crystal!!! It is a
little mind boggling to be doing a big project using all this new
stuff!!!

Right now I figured the best place to start was to look at the existing
application and try to extract from that what some of my classes will
be for the new app and then add new classes. Then from that I can
determine the data required and methods for each class - which will
then lead to the physical SQL Server db design to facilitate my class
design. The physical db will be WAY different than the old Access 2000
design.

I guess I am looking for a little guidance from those who work in this
all the time. Am I doing this in the right order basically ?

I am also looking for a really god book on OO design principals -
leaning towards vb.net would be good but the principals are all the
same so just an overall OO design book would be good.

Does any one know of a good one - or some really good reference
material for this on the internet? I am unsure of things like how many
classes do I really need to mimic a parent child relationship for
instance. The parent would be one class and the children would be yet
another class - but would it be a subclass of the parent etc.. etc..
Figuring out how many classes and their relationships - when to create
new classes or include all the data in one class is what I am having a
hard time with. (when to subclass and when not to...)

Any help at all would be most appreciated!!!

Thanks, Brad



Nov 24 '06 #12
Thanks John. I really appreciate your advice (as I also said to Robin!). I
will follow it!

You have both been very helpful.

PS.. Yes, the decision was made to move everything over to SQL Server and to
standardize on vb .net apps. We don't have a whole lot of stuff left in
Access so better to do it now than continue to write more in Access and
convert later.

PSS.. What is the specific book name by Rocky that you refer to??

Brad

"Prester John" <pr*********@comcast.netwrote in message
news:e4******************************@comcast.com. ..
My creds -- I led a project to convert the largest ever Access application
to .Net; I know both Deborah and Rocky and respect their talents...

First, I feel your pain!

Second, question the move at all. Access is not going away soon. I'll
assume you have done so and decided it is necessary.

Third, do not let your management underestimate the magnitude of the task
(I don't think _you_ are). If the Access app is indeed very large, you
are in for a ride. We spent well over $2MM to convert our app.

If you was me, I'd take RobinS' advice, in a way. I'd glom onto to
Rocky's framework and use it as the basis of your redesign. I don't know
it intimately, but I know that Rocky is one smart guy. So you get his
wisdom -- and framework -- for the price of a book (actually the
framework is down-loadable for free from his website).

Next, I'd get some VB.Net mentoring. Nothing intensive, but a couple of
days would save you a couple of months if someone walked you through
VisualStudio (2005) and the basics of VB.Net and the .Net framework.
You'll be amazed at how much you already know -- and can discover via
intellisense--, but there is a paradigm shift and once you grok it you are
on your way. There is a ton of info on MSDN and GotDotNet -- so much so
that it is overwhelming at first.

I would suggest that you do accept the fact that you need to rewrite the
app and forget about any magical translation. And don't look back.

Good luck!

HTH,

Prester John

P.S. I don't frequent the discussion groups very often -- email me, if
you want to, at Pr*********@Comast.Net


"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:0e******************************@comcast.com. ..
>>I knew Deborah because she's the head of my local .Net User Group.
I had some extra time, and knew she was working on her book, so
I offered to read it for content and work through all the example
work. It was a great opportunity for both of us. :-D So I'm
sorry, but it's not going to be available until January. It
does sound like exactly what you need. It really brought everything
together for me, and was the foundation for me making the jump from
VB6 to VB.Net. It explained classes and inheritance and objects.
Reading it made it easier for me to understand everything else
I read after that.

On the bright side, January is not very far away?

If you're desperate, you could check out her VB6 for Objects book;
it's available on amazon for like 67 cents. It's in the wrong
version of the language, but you'd get the general idea. That
version has a lot more information on the analysis/design stage,
from what I understand.

If I hear anything about it coming out sooner, or if I can
get my hands on an advance copy, I'll let you know next week.

Robin S.
--------------------------

"Brad Pears" <do********@notreal.comwrote in message
news:uB**************@TK2MSFTNGP06.phx.gbl...
>>How did you manage to see this book ahead of time?? Any chance of
getting it early?? I am starting this now and would be nice to have a
good reference handy...

Thanks for the help.
"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:p8******************************@comcast.co m...
You should design the data structures first, which leads
to your business layer classes, and then the UI.

To quote myself, I just posted the following recommendation
to someone else:

Deborah Kurata has a book coming out in January called "Doing Objects
in VB2005". It explains the GUIDS methodology for analysis and
design, and then shows you explicitly how to set up your 3 layers.
You end up writing an entire application. I found the book clear
and concise, and a lot easier than reading an entire book on theory.
It also had a lot of neat things in it about saving your project
settings, code snippets, and bet of all, binding your data to objects.

Rockford Lhotka also has some business objects books that are
supposed to be definitive.

Robin S.
--------------------------------
"Brad Pears" <do********@notreal.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl. ..
>I am completely new to vb .net. I am using visual Studio 2005 to redo
>an Access 2000 application into a .net OO application using SQL Server
>2000 - so a complete rewrite and re-thinking of how this app will work.
>
I have NEVER done any OO programming at all although I have used OO
techniques in programs of course - just never actually designed the
classes etc...
>
So I am just a tad nervous in re-writing this Access application as it
is a large app and I am learning so many new things I have never used
before such as vb.net, OO design, SQL server and Crystal!!! It is a
little mind boggling to be doing a big project using all this new
stuff!!!
>
Right now I figured the best place to start was to look at the
existing application and try to extract from that what some of my
classes will be for the new app and then add new classes. Then from
that I can determine the data required and methods for each class -
which will then lead to the physical SQL Server db design to
facilitate my class design. The physical db will be WAY different than
the old Access 2000 design.
>
I guess I am looking for a little guidance from those who work in this
all the time. Am I doing this in the right order basically ?
>
I am also looking for a really god book on OO design principals -
leaning towards vb.net would be good but the principals are all the
same so just an overall OO design book would be good.
>
Does any one know of a good one - or some really good reference
material for this on the internet? I am unsure of things like how
many classes do I really need to mimic a parent child relationship for
instance. The parent would be one class and the children would be yet
another class - but would it be a subclass of the parent etc.. etc..
Figuring out how many classes and their relationships - when to create
new classes or include all the data in one class is what I am having a
hard time with. (when to subclass and when not to...)
>
Any help at all would be most appreciated!!!
>
Thanks, Brad
>




Nov 24 '06 #13
http://www.amazon.com/Expert-2005-Bu...e=UTF8&s=books

Rockford Lhotka. Expert VB 2005 Business Objects.
Robin S.
------------------------------------

"Brad Pears" <do********@notreal.comwrote in message
news:eM**************@TK2MSFTNGP04.phx.gbl...
Thanks John. I really appreciate your advice (as I also said to Robin!). I
will follow it!

You have both been very helpful.

PS.. Yes, the decision was made to move everything over to SQL Server and
to standardize on vb .net apps. We don't have a whole lot of stuff left in
Access so better to do it now than continue to write more in Access and
convert later.

PSS.. What is the specific book name by Rocky that you refer to??

Brad

"Prester John" <pr*********@comcast.netwrote in message
news:e4******************************@comcast.com. ..
>My creds -- I led a project to convert the largest ever Access
application to .Net; I know both Deborah and Rocky and respect their
talents...

First, I feel your pain!

Second, question the move at all. Access is not going away soon. I'll
assume you have done so and decided it is necessary.

Third, do not let your management underestimate the magnitude of the task
(I don't think _you_ are). If the Access app is indeed very large, you
are in for a ride. We spent well over $2MM to convert our app.

If you was me, I'd take RobinS' advice, in a way. I'd glom onto to
Rocky's framework and use it as the basis of your redesign. I don't know
it intimately, but I know that Rocky is one smart guy. So you get his
wisdom -- and framework -- for the price of a book (actually the
framework is down-loadable for free from his website).

Next, I'd get some VB.Net mentoring. Nothing intensive, but a couple of
days would save you a couple of months if someone walked you through
VisualStudio (2005) and the basics of VB.Net and the .Net framework.
You'll be amazed at how much you already know -- and can discover via
intellisense--, but there is a paradigm shift and once you grok it you
are on your way. There is a ton of info on MSDN and GotDotNet -- so much
so that it is overwhelming at first.

I would suggest that you do accept the fact that you need to rewrite the
app and forget about any magical translation. And don't look back.

Good luck!

HTH,

Prester John

P.S. I don't frequent the discussion groups very often -- email me, if
you want to, at Pr*********@Comast.Net


"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:0e******************************@comcast.com ...
>>>I knew Deborah because she's the head of my local .Net User Group.
I had some extra time, and knew she was working on her book, so
I offered to read it for content and work through all the example
work. It was a great opportunity for both of us. :-D So I'm
sorry, but it's not going to be available until January. It
does sound like exactly what you need. It really brought everything
together for me, and was the foundation for me making the jump from
VB6 to VB.Net. It explained classes and inheritance and objects.
Reading it made it easier for me to understand everything else
I read after that.

On the bright side, January is not very far away?

If you're desperate, you could check out her VB6 for Objects book;
it's available on amazon for like 67 cents. It's in the wrong
version of the language, but you'd get the general idea. That
version has a lot more information on the analysis/design stage,
from what I understand.

If I hear anything about it coming out sooner, or if I can
get my hands on an advance copy, I'll let you know next week.

Robin S.
--------------------------

"Brad Pears" <do********@notreal.comwrote in message
news:uB**************@TK2MSFTNGP06.phx.gbl...
How did you manage to see this book ahead of time?? Any chance of
getting it early?? I am starting this now and would be nice to have a
good reference handy...

Thanks for the help.
"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:p8******************************@comcast.c om...
You should design the data structures first, which leads
to your business layer classes, and then the UI.
>
To quote myself, I just posted the following recommendation
to someone else:
>
Deborah Kurata has a book coming out in January called "Doing Objects
in VB2005". It explains the GUIDS methodology for analysis and
design, and then shows you explicitly how to set up your 3 layers.
You end up writing an entire application. I found the book clear
and concise, and a lot easier than reading an entire book on theory.
It also had a lot of neat things in it about saving your project
settings, code snippets, and bet of all, binding your data to objects.
>
Rockford Lhotka also has some business objects books that are
supposed to be definitive.
>
Robin S.
--------------------------------
"Brad Pears" <do********@notreal.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl.. .
>>I am completely new to vb .net. I am using visual Studio 2005 to redo
>>an Access 2000 application into a .net OO application using SQL
>>Server 2000 - so a complete rewrite and re-thinking of how this app
>>will work.
>>
>I have NEVER done any OO programming at all although I have used OO
>techniques in programs of course - just never actually designed the
>classes etc...
>>
>So I am just a tad nervous in re-writing this Access application as
>it is a large app and I am learning so many new things I have never
>used before such as vb.net, OO design, SQL server and Crystal!!! It
>is a little mind boggling to be doing a big project using all this
>new stuff!!!
>>
>Right now I figured the best place to start was to look at the
>existing application and try to extract from that what some of my
>classes will be for the new app and then add new classes. Then from
>that I can determine the data required and methods for each class -
>which will then lead to the physical SQL Server db design to
>facilitate my class design. The physical db will be WAY different
>than the old Access 2000 design.
>>
>I guess I am looking for a little guidance from those who work in
>this all the time. Am I doing this in the right order basically ?
>>
>I am also looking for a really god book on OO design principals -
>leaning towards vb.net would be good but the principals are all the
>same so just an overall OO design book would be good.
>>
>Does any one know of a good one - or some really good reference
>material for this on the internet? I am unsure of things like how
>many classes do I really need to mimic a parent child relationship
>for instance. The parent would be one class and the children would be
>yet another class - but would it be a subclass of the parent etc..
>etc.. Figuring out how many classes and their relationships - when to
>create new classes or include all the data in one class is what I am
>having a hard time with. (when to subclass and when not to...)
>>
>Any help at all would be most appreciated!!!
>>
>Thanks, Brad
>>
>
>




Nov 24 '06 #14
RobinS wrote:
>
On the bright side, January is not very far away?
A little farther away than expected. Amazon shows that that book will
not be published until March 27, 2007!! :(

It does sound like a nice book, though.

Chris

Nov 27 '06 #15
OO is _WORTHLESS_

concentrate on a good client-server design on don't listen to the
con-artists that want to sell you on OOP
Brad Pears wrote:
I am completely new to vb .net. I am using visual Studio 2005 to redo an
Access 2000 application into a .net OO application using SQL Server 2000 -
so a complete rewrite and re-thinking of how this app will work.

I have NEVER done any OO programming at all although I have used OO
techniques in programs of course - just never actually designed the classes
etc...

So I am just a tad nervous in re-writing this Access application as it is a
large app and I am learning so many new things I have never used before such
as vb.net, OO design, SQL server and Crystal!!! It is a little mind boggling
to be doing a big project using all this new stuff!!!

Right now I figured the best place to start was to look at the existing
application and try to extract from that what some of my classes will be for
the new app and then add new classes. Then from that I can determine the
data required and methods for each class - which will then lead to the
physical SQL Server db design to facilitate my class design. The physical db
will be WAY different than the old Access 2000 design.

I guess I am looking for a little guidance from those who work in this all
the time. Am I doing this in the right order basically ?

I am also looking for a really god book on OO design principals - leaning
towards vb.net would be good but the principals are all the same so just an
overall OO design book would be good.

Does any one know of a good one - or some really good reference material for
this on the internet? I am unsure of things like how many classes do I
really need to mimic a parent child relationship for instance. The parent
would be one class and the children would be yet another class - but would
it be a subclass of the parent etc.. etc.. Figuring out how many classes
and their relationships - when to create new classes or include all the data
in one class is what I am having a hard time with. (when to subclass and
when not to...)

Any help at all would be most appreciated!!!

Thanks, Brad
Nov 27 '06 #16
the largest Access app ever??

you should have just used Access Data Projects; I probably could have
made your project _MORE_SCALABLE_ for a measly 100k

Larry Linson Jr
ADP Nationalist
Prester John wrote:
My creds -- I led a project to convert the largest ever Access application
to .Net; I know both Deborah and Rocky and respect their talents...

First, I feel your pain!

Second, question the move at all. Access is not going away soon. I'll
assume you have done so and decided it is necessary.

Third, do not let your management underestimate the magnitude of the task (I
don't think _you_ are). If the Access app is indeed very large, you are in
for a ride. We spent well over $2MM to convert our app.

If you was me, I'd take RobinS' advice, in a way. I'd glom onto to Rocky's
framework and use it as the basis of your redesign. I don't know it
intimately, but I know that Rocky is one smart guy. So you get his wisdom --
and framework -- for the price of a book (actually the framework is
down-loadable for free from his website).

Next, I'd get some VB.Net mentoring. Nothing intensive, but a couple of
days would save you a couple of months if someone walked you through
VisualStudio (2005) and the basics of VB.Net and the .Net framework. You'll
be amazed at how much you already know -- and can discover via
intellisense--, but there is a paradigm shift and once you grok it you are
on your way. There is a ton of info on MSDN and GotDotNet -- so much so
that it is overwhelming at first.

I would suggest that you do accept the fact that you need to rewrite the app
and forget about any magical translation. And don't look back.

Good luck!

HTH,

Prester John

P.S. I don't frequent the discussion groups very often -- email me, if you
want to, at Pr*********@Comast.Net


"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:0e******************************@comcast.com. ..
I knew Deborah because she's the head of my local .Net User Group.
I had some extra time, and knew she was working on her book, so
I offered to read it for content and work through all the example
work. It was a great opportunity for both of us. :-D So I'm
sorry, but it's not going to be available until January. It
does sound like exactly what you need. It really brought everything
together for me, and was the foundation for me making the jump from
VB6 to VB.Net. It explained classes and inheritance and objects.
Reading it made it easier for me to understand everything else
I read after that.

On the bright side, January is not very far away?

If you're desperate, you could check out her VB6 for Objects book;
it's available on amazon for like 67 cents. It's in the wrong
version of the language, but you'd get the general idea. That
version has a lot more information on the analysis/design stage,
from what I understand.

If I hear anything about it coming out sooner, or if I can
get my hands on an advance copy, I'll let you know next week.

Robin S.
--------------------------

"Brad Pears" <do********@notreal.comwrote in message
news:uB**************@TK2MSFTNGP06.phx.gbl...
How did you manage to see this book ahead of time?? Any chance of getting
it early?? I am starting this now and would be nice to have a good
reference handy...

Thanks for the help.
"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:p8******************************@comcast.com. ..
You should design the data structures first, which leads
to your business layer classes, and then the UI.

To quote myself, I just posted the following recommendation
to someone else:

Deborah Kurata has a book coming out in January called "Doing Objects
in VB2005". It explains the GUIDS methodology for analysis and
design, and then shows you explicitly how to set up your 3 layers.
You end up writing an entire application. I found the book clear
and concise, and a lot easier than reading an entire book on theory.
It also had a lot of neat things in it about saving your project
settings, code snippets, and bet of all, binding your data to objects.

Rockford Lhotka also has some business objects books that are
supposed to be definitive.

Robin S.
--------------------------------
"Brad Pears" <do********@notreal.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
I am completely new to vb .net. I am using visual Studio 2005 to redo an
Access 2000 application into a .net OO application using SQL Server
2000 - so a complete rewrite and re-thinking of how this app will work.

I have NEVER done any OO programming at all although I have used OO
techniques in programs of course - just never actually designed the
classes etc...

So I am just a tad nervous in re-writing this Access application as it
is a large app and I am learning so many new things I have never used
before such as vb.net, OO design, SQL server and Crystal!!! It is a
little mind boggling to be doing a big project using all this new
stuff!!!

Right now I figured the best place to start was to look at the existing
application and try to extract from that what some of my classes will
be for the new app and then add new classes. Then from that I can
determine the data required and methods for each class - which will
then lead to the physical SQL Server db design to facilitate my class
design. The physical db will be WAY different than the old Access 2000
design.

I guess I am looking for a little guidance from those who work in this
all the time. Am I doing this in the right order basically ?

I am also looking for a really god book on OO design principals -
leaning towards vb.net would be good but the principals are all the
same so just an overall OO design book would be good.

Does any one know of a good one - or some really good reference
material for this on the internet? I am unsure of things like how many
classes do I really need to mimic a parent child relationship for
instance. The parent would be one class and the children would be yet
another class - but would it be a subclass of the parent etc.. etc..
Figuring out how many classes and their relationships - when to create
new classes or include all the data in one class is what I am having a
hard time with. (when to subclass and when not to...)

Any help at all would be most appreciated!!!

Thanks, Brad


Nov 27 '06 #17
you just should use Access Data Projects; it is a much much simpler
environment and much much more productive than VB.net

-Aaron
Brad Pears wrote:
Thanks John. I really appreciate your advice (as I also said to Robin!). I
will follow it!

You have both been very helpful.

PS.. Yes, the decision was made to move everything over to SQL Server and to
standardize on vb .net apps. We don't have a whole lot of stuff left in
Access so better to do it now than continue to write more in Access and
convert later.

PSS.. What is the specific book name by Rocky that you refer to??

Brad

"Prester John" <pr*********@comcast.netwrote in message
news:e4******************************@comcast.com. ..
My creds -- I led a project to convert the largest ever Access application
to .Net; I know both Deborah and Rocky and respect their talents...

First, I feel your pain!

Second, question the move at all. Access is not going away soon. I'll
assume you have done so and decided it is necessary.

Third, do not let your management underestimate the magnitude of the task
(I don't think _you_ are). If the Access app is indeed very large, you
are in for a ride. We spent well over $2MM to convert our app.

If you was me, I'd take RobinS' advice, in a way. I'd glom onto to
Rocky's framework and use it as the basis of your redesign. I don't know
it intimately, but I know that Rocky is one smart guy. So you get his
wisdom -- and framework -- for the price of a book (actually the
framework is down-loadable for free from his website).

Next, I'd get some VB.Net mentoring. Nothing intensive, but a couple of
days would save you a couple of months if someone walked you through
VisualStudio (2005) and the basics of VB.Net and the .Net framework.
You'll be amazed at how much you already know -- and can discover via
intellisense--, but there is a paradigm shift and once you grok it you are
on your way. There is a ton of info on MSDN and GotDotNet -- so much so
that it is overwhelming at first.

I would suggest that you do accept the fact that you need to rewrite the
app and forget about any magical translation. And don't look back.

Good luck!

HTH,

Prester John

P.S. I don't frequent the discussion groups very often -- email me, if
you want to, at Pr*********@Comast.Net


"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:0e******************************@comcast.com. ..
>I knew Deborah because she's the head of my local .Net User Group.
I had some extra time, and knew she was working on her book, so
I offered to read it for content and work through all the example
work. It was a great opportunity for both of us. :-D So I'm
sorry, but it's not going to be available until January. It
does sound like exactly what you need. It really brought everything
together for me, and was the foundation for me making the jump from
VB6 to VB.Net. It explained classes and inheritance and objects.
Reading it made it easier for me to understand everything else
I read after that.

On the bright side, January is not very far away?

If you're desperate, you could check out her VB6 for Objects book;
it's available on amazon for like 67 cents. It's in the wrong
version of the language, but you'd get the general idea. That
version has a lot more information on the analysis/design stage,
from what I understand.

If I hear anything about it coming out sooner, or if I can
get my hands on an advance copy, I'll let you know next week.

Robin S.
--------------------------

"Brad Pears" <do********@notreal.comwrote in message
news:uB**************@TK2MSFTNGP06.phx.gbl...
How did you manage to see this book ahead of time?? Any chance of
getting it early?? I am starting this now and would be nice to have a
good reference handy...

Thanks for the help.
"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:p8******************************@comcast.com ...
You should design the data structures first, which leads
to your business layer classes, and then the UI.

To quote myself, I just posted the following recommendation
to someone else:

Deborah Kurata has a book coming out in January called "Doing Objects
in VB2005". It explains the GUIDS methodology for analysis and
design, and then shows you explicitly how to set up your 3 layers.
You end up writing an entire application. I found the book clear
and concise, and a lot easier than reading an entire book on theory.
It also had a lot of neat things in it about saving your project
settings, code snippets, and bet of all, binding your data to objects.

Rockford Lhotka also has some business objects books that are
supposed to be definitive.

Robin S.
--------------------------------
"Brad Pears" <do********@notreal.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl.. .
I am completely new to vb .net. I am using visual Studio 2005 to redo
an Access 2000 application into a .net OO application using SQL Server
2000 - so a complete rewrite and re-thinking of how this app will work.

I have NEVER done any OO programming at all although I have used OO
techniques in programs of course - just never actually designed the
classes etc...

So I am just a tad nervous in re-writing this Access application as it
is a large app and I am learning so many new things I have never used
before such as vb.net, OO design, SQL server and Crystal!!! It is a
little mind boggling to be doing a big project using all this new
stuff!!!

Right now I figured the best place to start was to look at the
existing application and try to extract from that what some of my
classes will be for the new app and then add new classes. Then from
that I can determine the data required and methods for each class -
which will then lead to the physical SQL Server db design to
facilitate my class design. The physical db will be WAY different than
the old Access 2000 design.

I guess I am looking for a little guidance from those who work in this
all the time. Am I doing this in the right order basically ?

I am also looking for a really god book on OO design principals -
leaning towards vb.net would be good but the principals are all the
same so just an overall OO design book would be good.

Does any one know of a good one - or some really good reference
material for this on the internet? I am unsure of things like how
many classes do I really need to mimic a parent child relationship for
instance. The parent would be one class and the children would be yet
another class - but would it be a subclass of the parent etc.. etc..
Figuring out how many classes and their relationships - when to create
new classes or include all the data in one class is what I am having a
hard time with. (when to subclass and when not to...)

Any help at all would be most appreciated!!!

Thanks, Brad


Nov 27 '06 #18
you just should use Access Data Projects; it is a much much simpler
environment and much much more productive than VB.net

-Larry Linson Jr
ADP Nationalist
Brad Pears wrote:
Thanks John. I really appreciate your advice (as I also said to Robin!). I
will follow it!

You have both been very helpful.

PS.. Yes, the decision was made to move everything over to SQL Server and to
standardize on vb .net apps. We don't have a whole lot of stuff left in
Access so better to do it now than continue to write more in Access and
convert later.

PSS.. What is the specific book name by Rocky that you refer to??

Brad

"Prester John" <pr*********@comcast.netwrote in message
news:e4******************************@comcast.com. ..
My creds -- I led a project to convert the largest ever Access application
to .Net; I know both Deborah and Rocky and respect their talents...

First, I feel your pain!

Second, question the move at all. Access is not going away soon. I'll
assume you have done so and decided it is necessary.

Third, do not let your management underestimate the magnitude of the task
(I don't think _you_ are). If the Access app is indeed very large, you
are in for a ride. We spent well over $2MM to convert our app.

If you was me, I'd take RobinS' advice, in a way. I'd glom onto to
Rocky's framework and use it as the basis of your redesign. I don't know
it intimately, but I know that Rocky is one smart guy. So you get his
wisdom -- and framework -- for the price of a book (actually the
framework is down-loadable for free from his website).

Next, I'd get some VB.Net mentoring. Nothing intensive, but a couple of
days would save you a couple of months if someone walked you through
VisualStudio (2005) and the basics of VB.Net and the .Net framework.
You'll be amazed at how much you already know -- and can discover via
intellisense--, but there is a paradigm shift and once you grok it you are
on your way. There is a ton of info on MSDN and GotDotNet -- so much so
that it is overwhelming at first.

I would suggest that you do accept the fact that you need to rewrite the
app and forget about any magical translation. And don't look back.

Good luck!

HTH,

Prester John

P.S. I don't frequent the discussion groups very often -- email me, if
you want to, at Pr*********@Comast.Net


"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:0e******************************@comcast.com. ..
>I knew Deborah because she's the head of my local .Net User Group.
I had some extra time, and knew she was working on her book, so
I offered to read it for content and work through all the example
work. It was a great opportunity for both of us. :-D So I'm
sorry, but it's not going to be available until January. It
does sound like exactly what you need. It really brought everything
together for me, and was the foundation for me making the jump from
VB6 to VB.Net. It explained classes and inheritance and objects.
Reading it made it easier for me to understand everything else
I read after that.

On the bright side, January is not very far away?

If you're desperate, you could check out her VB6 for Objects book;
it's available on amazon for like 67 cents. It's in the wrong
version of the language, but you'd get the general idea. That
version has a lot more information on the analysis/design stage,
from what I understand.

If I hear anything about it coming out sooner, or if I can
get my hands on an advance copy, I'll let you know next week.

Robin S.
--------------------------

"Brad Pears" <do********@notreal.comwrote in message
news:uB**************@TK2MSFTNGP06.phx.gbl...
How did you manage to see this book ahead of time?? Any chance of
getting it early?? I am starting this now and would be nice to have a
good reference handy...

Thanks for the help.
"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:p8******************************@comcast.com ...
You should design the data structures first, which leads
to your business layer classes, and then the UI.

To quote myself, I just posted the following recommendation
to someone else:

Deborah Kurata has a book coming out in January called "Doing Objects
in VB2005". It explains the GUIDS methodology for analysis and
design, and then shows you explicitly how to set up your 3 layers.
You end up writing an entire application. I found the book clear
and concise, and a lot easier than reading an entire book on theory.
It also had a lot of neat things in it about saving your project
settings, code snippets, and bet of all, binding your data to objects.

Rockford Lhotka also has some business objects books that are
supposed to be definitive.

Robin S.
--------------------------------
"Brad Pears" <do********@notreal.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl.. .
I am completely new to vb .net. I am using visual Studio 2005 to redo
an Access 2000 application into a .net OO application using SQL Server
2000 - so a complete rewrite and re-thinking of how this app will work.

I have NEVER done any OO programming at all although I have used OO
techniques in programs of course - just never actually designed the
classes etc...

So I am just a tad nervous in re-writing this Access application as it
is a large app and I am learning so many new things I have never used
before such as vb.net, OO design, SQL server and Crystal!!! It is a
little mind boggling to be doing a big project using all this new
stuff!!!

Right now I figured the best place to start was to look at the
existing application and try to extract from that what some of my
classes will be for the new app and then add new classes. Then from
that I can determine the data required and methods for each class -
which will then lead to the physical SQL Server db design to
facilitate my class design. The physical db will be WAY different than
the old Access 2000 design.

I guess I am looking for a little guidance from those who work in this
all the time. Am I doing this in the right order basically ?

I am also looking for a really god book on OO design principals -
leaning towards vb.net would be good but the principals are all the
same so just an overall OO design book would be good.

Does any one know of a good one - or some really good reference
material for this on the internet? I am unsure of things like how
many classes do I really need to mimic a parent child relationship for
instance. The parent would be one class and the children would be yet
another class - but would it be a subclass of the parent etc.. etc..
Figuring out how many classes and their relationships - when to create
new classes or include all the data in one class is what I am having a
hard time with. (when to subclass and when not to...)

Any help at all would be most appreciated!!!

Thanks, Brad


Nov 27 '06 #19
Thomas

EAT A DICK FUCKER

we're in a VB 2005 newsgroup; so you should go and sell your wares
elsewhere

-Larry Linson Jr
Thomas wrote:
I think C# is a more intuitive OO language. I will suggest you start
with it instead of VB.
Nov 27 '06 #20
I talked to Deborah, and she confirmed that her information
had changed, and it would probably be March before the book
was available. Sorry about that! Check out Rocky Lhotka's.

Robin S.
---------------------------------
"Chris Dunaway" <du******@gmail.comwrote in message
news:11**********************@h54g2000cwb.googlegr oups.com...
RobinS wrote:
>>
On the bright side, January is not very far away?

A little farther away than expected. Amazon shows that that book will
not be published until March 27, 2007!! :(

It does sound like a nice book, though.

Chris

Nov 27 '06 #21

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

Similar topics

43
by: grz02 | last post by:
Hi, Im an experienced database+software designer and developer, but, unfortunately, anything to do with web-programming and web-systems designs is still a pretty new area to me... (been working...
36
by: Andrea Griffini | last post by:
I did it. I proposed python as the main language for our next CAD/CAM software because I think that it has all the potential needed for it. I'm not sure yet if the decision will get through, but...
2
by: Kymert persson | last post by:
Hi. I was wondering if there are any more C++ books along the lines of "Large scale C++ software design" by Lakos, J. I.e. concerning larger design issues in close relation to C++. I have made a...
7
by: Bora Eryilmaz | last post by:
I am working on designing a set of abstract classes that would be subclassed by the users and they have to implement the abtract (virtual) methods. Does anybody know of a good reference on...
13
by: KV | last post by:
I'm new to OO Design, and I'm fixing to start writing my very first C# program. Given the complexity of OO programming, I would like to run something by this group and get general input. My...
4
by: scottrm | last post by:
I am fairly new to oo design and I am looking at developing an object oriented asp.net application which will be built on top of a relational database. I have read quite a bit of the theory but...
105
by: Christoph Zwerschke | last post by:
Sometimes I find myself stumbling over Python issues which have to do with what I perceive as a lack of orthogonality. For instance, I just wanted to use the index() method on a tuple which does...
22
by: Krivenok Dmitry | last post by:
Hello All! I am trying to implement my own Design Patterns Library. I have read the following documentation about Observer Pattern: 1) Design Patterns by GoF Classic description of Observer....
6
by: JoeC | last post by:
I have a question about designing objects and programming. What is the best way to design objects? Create objects debug them and later if you need some new features just use inhereitance. Often...
19
by: neelsmail | last post by:
Hi, I have been working on C++ for some time now, and I think I have a flair for design (which just might be only my imagination over- stretched.. :) ). So, I tried to find a design...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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
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
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
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.