Forum: Web Browsers Jun 9th, 2009 |
| Replies: 1 Views: 3,044 Were any patches or updates (i.e. MS Compatibility Toolkit) pushed to the server? In other words, did anything change on the server hosting the application? |
Forum: C++ Jun 20th, 2005 |
| Replies: 3 Views: 10,689 I found some really useful interactive documentation here:
http://www.dre.vanderbilt.edu/Doxygen/Current/html/ace/
It's Doxygen driven and completely interactive, if you need a good way to look... |
Forum: ASP.NET Jun 15th, 2005 |
| Replies: 6 Views: 2,473 Hi fineline,
What OS are you using?
Erica |
Forum: Computer Science Jun 15th, 2005 |
| Replies: 20 Views: 16,513 The point I was trying to make was the other one: I would rather a system be implemented by someone actually understanding networks, memory allocation, IOCompletion ports, etc so a... |
Forum: Computer Science Jun 14th, 2005 |
| Replies: 20 Views: 16,513 Hi there,
I wrote this in my previous post:
... it will ultimately depend on the technical aptitude of the person, not the degree. But to architect a new solution in a networked environment... |
Forum: Community Introductions Jun 13th, 2005 |
| Replies: 317 Views: 127,764 Wayyyy too funny. Great 'profile' :!: |
Forum: Computer Science Jun 13th, 2005 |
| Replies: 20 Views: 16,513 CS fundamentals have been around (officially) since the 60s and haven't changed much. (See Donald Knuth.) Unless there is some redefinition of rudimentary math and/or binary interpretation, not much... |
Forum: C++ Jun 10th, 2005 |
| Replies: 12 Views: 3,607 Hey Scott,
I ran across this in another forum...maybe this is another approach you can take?
http://www.daniweb.com/code/snippet10.html
It is similar, I believe, to what you are trying to do. |
Forum: Community Introductions Jun 10th, 2005 |
| Replies: 317 Views: 127,764 Hey Cane,
I am a newbie myself. Welcome! Re: Mac, there is a forum on here (I just discovered) called Tech Talk. There is a Mac forum there. Hope this helps:... |
Forum: Community Introductions Jun 10th, 2005 |
| Replies: 317 Views: 127,764 |
Forum: Visual Basic 4 / 5 / 6 Jun 9th, 2005 |
| Replies: 16 Views: 23,596 Nah, just ran across another thread on here...thought it was pretty funny, actually. |
Forum: Visual Basic 4 / 5 / 6 Jun 9th, 2005 |
| Replies: 16 Views: 23,596 Maybe the Shaolin of Rant. :cheesy: |
Forum: Visual Basic 4 / 5 / 6 Jun 9th, 2005 |
| Replies: 16 Views: 23,596 Also, the main thing about a class is that it is not a module (.bas) file. Like it was already stated, you can create an instance of a class and access all of its public methods and members.
Did... |
Forum: IT Professionals' Lounge Jun 9th, 2005 |
| Replies: 12 Views: 4,285 Surprised nobody said 'the Antivirus companies write them' so they have something to inoculate/whatever. :mrgreen: Not that I agree, of course. But it's that same old adage...when a crime is... |
Forum: Community Introductions Jun 9th, 2005 |
| Replies: 317 Views: 127,764 This isn't the correct forum. I am not sure there is a 'hardware' forum, either.
:eek: |
Forum: C# Jun 9th, 2005 |
| Replies: 4 Views: 9,078 Hey there silkfire,
On the array question, do you need three distinct arrays? You could create a multidimensional array, like a jagged array:
int [][][] njaggedArray = new int [10][10][10];
... |
Forum: Community Introductions Jun 3rd, 2005 |
| Replies: 317 Views: 127,764 Name: Erica
Nickname: EJ, Jaini, Janine
Height: 5'8''
Weight: Just fine.
Hair: Dark Blonde, shoulder length |
Forum: Computer Science Jun 3rd, 2005 |
| Replies: 20 Views: 16,513 Are you serious???? ROTFLMAO ...or am I gullible? :o
ej |
Forum: Computer Science Jun 3rd, 2005 |
| Replies: 20 Views: 16,513 Hey Castro,
To be honest, it will depend on what you really want to do. The best programmers I've ever worked with have the CS background (not just the degree), because programming is all... |
Forum: C++ Jun 3rd, 2005 |
| Replies: 3 Views: 10,689 Hi everyone,
Just wondering if anyone is interesting in starting a new forum for using ACE? I am new to both ACE and network programming using C++.
Thanks!
ej |
Forum: C++ Jun 3rd, 2005 |
| Replies: 12 Views: 3,607 I think it should work fine, but am interested in what Dave thinks. :?: His function suggestion might be more useful. In a few C# programs I wrote, I have used a variation of the switch case to... |
Forum: C++ Jun 3rd, 2005 |
| Replies: 12 Views: 3,607 Hi Scott,
You have the logic down, but goto, in an expanded form, becomes unmanageable and you end up with many lines of code that are not necessary. Why don't you try to set a variable (for the... |