Forum: Monitors, Displays and Video Cards Jun 6th, 2008 |
| Replies: 39 Views: 141,080 I had a similar problem with my laptop, an IBM X24 Thinkpad. The light would frequently go out, making it almost impossible to see (although you could still make out some details without the light,... |
Forum: VB.NET Mar 7th, 2008 |
| Replies: 4 Views: 2,679 My problem is not with the concept -- I've done this sort of thing before in PHP -- but with the syntax. E.g., this is the effect I want:
// Pseudocode
If (toupper($usernamein) != "JOHNDOE") {
... |
Forum: VB.NET Mar 6th, 2008 |
| Replies: 4 Views: 2,679 Hey guys,
I'm taking a beginner's VB/.NET class. Today we started working on a project involving a simple login form, e.g.:
Public Class Form1
Private Sub btnLogin_Click(ByVal sender As... |
Forum: C++ Feb 28th, 2008 |
| Replies: 3 Views: 1,583 |
Forum: C++ Feb 28th, 2008 |
| Replies: 3 Views: 1,583 Hey guys,
I've been having some trouble setting ios:: flags. In general I don't use using, but without it what I do doesn't work.
#include <iostream>
#include <iomanip>
using namespace std;
... |
Forum: C++ Feb 2nd, 2008 |
| Replies: 14 Views: 6,418 Thanks a lot guys. I'm still pretty new to C++, so this really helped me out. So the line using namespace std; has nothing to do with using iostream over iostream.h? Guess that's another... |
Forum: C++ Jan 31st, 2008 |
| Replies: 14 Views: 6,418 Hey guys, I just have a simple (?) question. What difference is there, if any, between cin and std::cin (for example)? If the latter is better form, why is it so? |