Forum: IT Professionals' Lounge Nov 7th, 2006 |
| Replies: 2 Views: 3,572 We might think this would be easy to answer. We might be wrong.
First, we have to look at what Structured and Object Oriented mean.
Object Oriented (from WikiPedia... |
Forum: VB.NET Nov 7th, 2006 |
| Replies: 26 Views: 6,264 And THIS is why collaborative development is so much fun! Nice catch!
Ned |
Forum: VB.NET Nov 7th, 2006 |
| Replies: 2 Views: 5,246 It's hard to tell what code you want to move to a Function. A couple of things to consider:
If you pass objects to a method BYVAL, you are passing a COPY of the object (i.e. your integer). If you... |
Forum: IT Professionals' Lounge Nov 7th, 2006 |
| Replies: 6 Views: 11,952 Most of the developers that I work with (Application Development, mostly data mining, data collection (as in field engineering inspection data), and reporting) have masters degrees in Computer... |
Forum: VB.NET Nov 7th, 2006 |
| Replies: 2 Views: 4,568 A few things to try. First, kill your output directories (by this, I mean locate your BIN directories and delete the DLL's and EXE's for your project, both Debug and Release). If things continue to... |
Forum: VB.NET Nov 7th, 2006 |
| Replies: 4 Views: 3,175 OH, you can still use the old Office COM objects via Interop, but you will be running unmanaged code and will have to deal with memory leaks and other issues with some of the older Office dll's. The... |
Forum: VB.NET Nov 7th, 2006 |
| Replies: 26 Views: 6,264 Good points, Mr. Iamthwee! The string.Split method does allow you to pass a string Array of 'match' values for your delimiters. While this is a simple problem begging for a simple solution (and yours... |
Forum: IT Professionals' Lounge Nov 7th, 2006 |
| Replies: 16 Views: 4,962 Amen, my brethren. Younger programmers and folks who are new to posting in Tech forums, please take note of this thread.
This is how professionals agree to disagree, find common ground, and... |
Forum: VB.NET Nov 7th, 2006 |
| Replies: 4 Views: 11,525 Guimas provides the method IF you want to use ODBC. The original question was whether or ODBC is required. See my post two above this one - the code I provided is the sum total of what's required... |
Forum: VB.NET Nov 4th, 2006 |
| Replies: 26 Views: 6,264 Once you have the string from your console in a variable, you can pretty much use the code I provided as written. Provide what code you've got, along with a description of the problem you face and... |
Forum: IT Professionals' Lounge Nov 4th, 2006 |
| Replies: 16 Views: 4,962 Thanks for your response, SOS. Good debate, more common ground than appeared evident at first!
I guess the only thing that still bothers me is the concept that systems development is more... |
Forum: VB.NET Nov 4th, 2006 |
| Replies: 3 Views: 4,351 Check out ListView and ListViewItem.
1. The ListView is the main container
1. ListViews contain ListViewItems. These are your rows.
2. ListViewItems contain SubItems. These are your columns.
... |
Forum: VB.NET Nov 4th, 2006 |
| Replies: 26 Views: 6,264 Here's how I do this (and we all have to do this alot)
strText = "My Text To Count Words" ' (LTRIMmed and RTRIMmed)
dim aryWords() as string = strText.split(" ")
dim WordCount =... |
Forum: IT Professionals' Lounge Nov 3rd, 2006 |
| Replies: 16 Views: 4,962 Wow. Quite a few slams and assumptions there... I know, your 2 cents. Please tolerate mine as well.
1. Hmmm. So you're in this for the love of it? Money's not an issue in your life, at least at... |
Forum: Computer Science Nov 3rd, 2006 |
| Replies: 3 Views: 1,809 Well, the Systems Engineer path may NOT be the way to go for someone dedicated to Programming. From knowledge of job posting info (and the standard job description for Systems Engineer), you don't do... |
Forum: VB.NET Nov 3rd, 2006 |
| Replies: 26 Views: 6,264 Ah, GUI coding. I'd almost say that you took a similar path to mine. I was a senior everything late in my mainframe days, so when I got to program I typically got to work on the fun stuff (for me,... |
Forum: VB.NET Nov 3rd, 2006 |
| Replies: 26 Views: 6,264 Indeed, it does. Here's where hard-won philosophy of programming comes in (I don't know your experience, but I've been at this most of my life). The most efficient answer is not always the best. ... |
Forum: Community Introductions Nov 3rd, 2006 |
| Replies: 6 Views: 1,158 Thanks - I work in corporate America (meaning that I don't get to pick my tools as often as I'd like :)
We use VS2003 (not quite ready to go 2005 yet, but it's in the works). I'm one of those... |
Forum: VB.NET Nov 3rd, 2006 |
| Replies: 26 Views: 6,264 We don't care about the number of "",s we care about the difference between the old length (with the vowels intact) and the new length (with one of the vowels converted to ""). Example:
Text =... |
Forum: VB.NET Nov 3rd, 2006 |
| Replies: 26 Views: 6,264 How about this (if your strings are relatively short):
To get a count of each vowel without 'walking the string':
' strMyText is the string returned from the console
dim strMyTextCaps =... |
Forum: Community Introductions Nov 3rd, 2006 |
| Replies: 6 Views: 1,158 Hi, Y'all. My name's not Ned Frankly. It's Jay. Ned's a nom-de-web that I've used for about 10 years now, and he shows no signs of giving up :) .
So... I'm in my mid forties, I've been a... |
Forum: VB.NET Nov 3rd, 2006 |
| Replies: 1 Views: 1,219 HashTables. Custom made for this process, but they won't scale well (really depends on the amount of memory in the machine). They are a 1 to 1 lookup, as in the dictionary you describe.
Database... |
Forum: IT Professionals' Lounge Nov 3rd, 2006 |
| Replies: 67 Views: 14,127 Let's see. I'd say Forth, but that would date me. It became Prologue after awhile, and is still one of the best 4GL's ever written. 6582 Assembler was fun, too (especially on a Commodore 64, which... |
Forum: VB.NET Nov 3rd, 2006 |
| Replies: 3 Views: 4,351 Need a little more info...
Is this a bound listview (did you give it a datasource and bind it in the code behind) or is it manually constructed, either through code or through the properties for... |
Forum: VB.NET Nov 3rd, 2006 |
| Replies: 5 Views: 11,814 Wayne's technique is about the only way you're going to pull this off if you're using 'real' windows.
If you've noticed in many games which 'take over your screen', the developers actually... |
Forum: VB.NET Nov 3rd, 2006 |
| Replies: 4 Views: 11,525 You can connect through oleDB (no ODBC required):
Dim SelectText as String = "Select * from myTable"
Dim SqlConn As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data... |