Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~6K People Reached
About Me

Old school programmer in a new world. I never lost the thrill of learning a different language or platform. I can honestly say that I don't recall all of the languages I've learned and forgotten over the years (I know this because I constantly exclaim…

Interests
Motorcycles, Iguanas, Programming, Reading
PC Specs
Off the shelf HP Athlon 64. I code. Games are for XBOX.
Favorite Tags

14 Posted Topics

Member Avatar for vb_learner

How about this (if your strings are relatively short): To get a count of each vowel without 'walking the string': [code] ' strMyText is the string returned from the console dim strMyTextCaps = strMyText.toUpper() 'We don't care about case dim intTextLen = strMyText.length ' So we don't reevaluate every time …

Member Avatar for Edward-eh
0
404
Member Avatar for Virii

[quote=Virii;272987]The main thing that I'm worried about is, if I go the route of CE (because people say that CS is boring, and if you get a degree in CE you'll be more of an AI programming, robotics, electrical guy with programming background whereas in CS you'll just have a …

Member Avatar for ithelp
0
367
Member Avatar for benyam_dessu

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 [URL]http://en.wikipedia.org/wiki/Object_oriented[/URL]) is: [QUOTE] (an) Object-oriented system is composed of [URL="http://en.wikipedia.org/wiki/Object_%28computer_science%29"][COLOR=#0000ff]objects[/COLOR][/URL]. The behaviour of the system is achieved through collaboration between these …

Member Avatar for benyam_dessu
0
187
Member Avatar for webspy

[quote=~s.o.s~;263269](Disclaimer: Just my 2 cents) Yeah thats the main problem with these MS guys, they just do whatever makes them $$$$. But then again it depends on how you see things, many people regard MS as god and will follow whatever put in front of them, so they just go …

Member Avatar for robertkatz
0
150
Member Avatar for Gowsi

[quote=Gowsi;271534]Hi friends.... how to connect MS.Acess database into vb.net...... is any ODBC setting needed?[/quote] You can connect through oleDB (no ODBC required): [code]Dim SelectText as String = "Select * from myTable" Dim SqlConn As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Inetpub\wwwroot\asp_examples1\test.mdb Dim myDA As oledb.oledbDataAdapter= New oledb.oledbDataAdapter(SelectText, SqlConn) [/code] Ned

Member Avatar for Gowsi
0
203
Member Avatar for B.H

[quote=B.H;273125]My problem is....i have done a project in VB.NET with SQL SERVER as the database. My project was running perfect until last day when i tried to run the project i got some errors. Errors : 1) Could not copy temporary files to O/P directory 2) The file Call Center.exe …

Member Avatar for B.H
0
138
Member Avatar for odee

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 recreate Notepad within the game if text editing is required - everything 'Windows' in a well formed Full …

Member Avatar for odee
0
3K
Member Avatar for ohart

[quote=ohart;272836]From what I can gather, it [I]appears[/I] that you cannot access Excel from VB.NET without having Visual Studio 2005 Tools for Office (and a healthy extra sum of money)! Is this really true? There's got to be a way, seeing as you can do it in VB6 without anything extra. …

Member Avatar for ohart
0
118
Member Avatar for geo039

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 pass an object to a method BYREF you are NOT …

Member Avatar for iamthwee
0
199
Member Avatar for wednesday

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 the control?

Member Avatar for NedFrankly
0
128
Member Avatar for Rashakil Fol

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 technically had a 6510 processor - the Commodore Disk drives had a 6502, as …

Member Avatar for Anonymusius
0
691
Member Avatar for NedFrankly

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 programmer in one language or another since I was 15 (yup, …

Member Avatar for happygeek
0
123
Member Avatar for Goitse

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 much coding in the job. In small shops, the architect generally codes (I'm one of the …

Member Avatar for NedFrankly
0
81
Member Avatar for ChadW

[quote=ChadW;265023] I'm sure this could probably be accomplished by using a metric poo-ton of If/Then/Else statements, but I would be willing to bet there would be a much cleaner way of doing this. Suggestions? [/quote] HashTables. Custom made for this process, but they won't scale well (really depends on the …

Member Avatar for NedFrankly
0
92

The End.