No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
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.
14 Posted Topics
Re: 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 … | |
Re: [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 … | |
Re: 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 … | |
Re: [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 … | |
Re: [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 | |
Re: [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 … | |
Re: 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 … | |
Re: [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. … | |
Re: 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 … ![]() | |
Re: 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? | |
Re: 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 … | |
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, … | |
Re: 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 … | |
Re: [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 … |
The End.