|
-
Apr 1st, 2007, 02:16 AM
#1
Thread Starter
Frenzied Member
How do you keep up with VB and Design Patterns
Besides reading books, what are some other best ways to stay tip top on technology, especially Design Patterns and Architecting?
I try often to look at the Microsoft site but that thing is like a zoo. Join newsgroup?
I'll Be Back!
T-1000
Microsoft .Net 2005
Microsoft Visual Basic 6
Prefer using API
-
Apr 1st, 2007, 02:40 AM
#2
Re: How do you keep up with VB and Design Patterns
News groups, user groups, magazines, forums, MSDN, conferences, books, webcasts, websites....
Usual places.
-tg
-
Apr 1st, 2007, 04:21 AM
#3
Re: How do you keep up with VB and Design Patterns
-
Apr 1st, 2007, 08:52 PM
#4
Thread Starter
Frenzied Member
Re: How do you keep up with VB and Design Patterns
 Originally Posted by techgnome
News groups, user groups, magazines, forums, MSDN, conferences, books, webcasts, websites....
What is the difference between News Groups and User Groups? Also, do you have any tips on using each of these effectively?
Thank You
I'll Be Back!
T-1000
Microsoft .Net 2005
Microsoft Visual Basic 6
Prefer using API
-
Apr 2nd, 2007, 12:08 AM
#5
Re: How do you keep up with VB and Design Patterns
News groups are just that.... USer Groups are usualy local people getting together.
Using News Groups effectively is hard.... you just have to dive in and learn how to separate the good postings from the junk.
Best way to use a User Group effectively is to attend a meeting or two.
-tg
-
Apr 2nd, 2007, 03:44 PM
#6
Re: How do you keep up with VB and Design Patterns
 Originally Posted by techgnome
Using News Groups effectively is hard.... you just have to dive in and learn how to separate the good postings from the junk.
First try a few news readers - settle on the most comfortable one.
Find relevant newsgroups.
Read for at least a week, longer on groups that aren't that active (some active groups can have a couple of thousand posts a day). Get a feel for both how the particular group works (what's allowed, what's not) and who are the posters, who are the spammers.
Jump in.
The most difficult part of developing a program is understanding the problem.
The second most difficult part is deciding how you're going to solve the problem.
Actually writing the program (translating your solution into some computer language) is the easiest part.
Please indent your code and use [HIGHLIGHT="VB"] [/HIGHLIGHT] tags around it to make it easier to read.
Please Help Us To Save Ana
-
Apr 2nd, 2007, 08:42 PM
#7
Thread Starter
Frenzied Member
Design Patterns
Design Patterns does not really have a definition. What are some of you design patterns that you can give me as an example?
Thank You
I'll Be Back!
T-1000
Microsoft .Net 2005
Microsoft Visual Basic 6
Prefer using API
-
Apr 2nd, 2007, 10:24 PM
#8
Re: How do you keep up with VB and Design Patterns
Design Patterns is a buzz word that became hot a few years ago. It's yet another "great new thing to make our lives easier and make programs more reliable", and like every other "Great New Thing", it has a few people who swear by it, a few people who swear at it, a few people who make some quick cash writing books about it, and a large number of people who don't really think it is that big a deal.
The concept is that there are proven "patterns" to solve certain common types of problems, and if you use them, you will code better. Bah!! Humbug! There is NO shortcut, and just following some pattern is not going to really make any difference.
My usual boring signature: Nothing
 
-
Apr 2nd, 2007, 10:30 PM
#9
Re: How do you keep up with VB and Design Patterns
I think design patterns were invented to give computer science students a new topic to study.
Does anyone really think to themselves "Ah, I'll use <insert pattern name here> today"? I know I don't.
-
Apr 2nd, 2007, 11:09 PM
#10
Re: How do you keep up with VB and Design Patterns
I think you would only do that if you really had no interest or capability in programming.
My usual boring signature: Nothing
 
-
Apr 4th, 2007, 06:11 PM
#11
Thread Starter
Frenzied Member
Re: How do you keep up with VB and Design Patterns
Thanks guys but can you guys give me a simple example of such use of design pattern?
I'll Be Back!
T-1000
Microsoft .Net 2005
Microsoft Visual Basic 6
Prefer using API
-
Apr 4th, 2007, 08:01 PM
#12
Re: How do you keep up with VB and Design Patterns
I don't think there is any. There is no template either (even though many would say there is - but for me it's just a pure speculation) unless you're designing another callendar - but even so there are thousands of different ways...
-
Apr 5th, 2007, 01:26 AM
#13
Re: How do you keep up with VB and Design Patterns
Just design a program and its logic flow. Then after you are done you will have a pattern of your design.
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum. 
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it! 
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6 
-
Apr 5th, 2007, 04:19 PM
#14
Thread Starter
Frenzied Member
Re: How do you keep up with VB and Design Patterns
I'll Be Back!
T-1000
Microsoft .Net 2005
Microsoft Visual Basic 6
Prefer using API
-
Apr 5th, 2007, 06:55 PM
#15
Re: How do you keep up with VB and Design Patterns
What about them? I have used the Singleton pattern in a couple of places. I even made some thread about that one a couple years ago when I didn't know what it was, at which point several people said "Duh, that's a Singleton!" And well they should.
This highlights the problem with patterns. Sure, you might use a similar, or even identical, construct in many different projects, that stunning realizations makes not a whit of difference to anything. Just because you can put a name on a piece of your design doesn't do you any good at all, because you still have to write it. Perhaps you might be able to go back to existing code, and re-use some, but you could do that no matter what you called the thing.
How can you benefit from knowing the name for the pattern? Perhaps you could ask somebody about the pattern, but by then, you pretty much know the design, so you will be asking about a design you already have. I knew how to write a Singleton before I knew that it had a name.
Of course, if you studied a whole bunch of patterns, then you could sound all erudite by saying "aha, we should use the binary least squares regression pattern here", but then somebody would grab you by the suspenders and snap you into next week. What would anybody do with that? Force their design to fit a pattern?
No, the fact that certain designs seem to appear over and over again in programming does lend them to being named, but it provides no other tangible benefit.
My usual boring signature: Nothing
 
-
Apr 5th, 2007, 10:49 PM
#16
Thread Starter
Frenzied Member
Re: How do you keep up with VB and Design Patterns
Thanks for taking the time to your reply.
I am the same way too. Sometime, I design certain thing but I don't even realize it has a name behind it.
I'll Be Back!
T-1000
Microsoft .Net 2005
Microsoft Visual Basic 6
Prefer using API
-
Apr 6th, 2007, 01:48 PM
#17
Re: How do you keep up with VB and Design Patterns
And that's all that matters. Frankly, I think the whole concept of Design Patters came from marketing, or some other non-programmer group.
My usual boring signature: Nothing
 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|