Forum: C++
Aug 29th, 2007, 1:55 PM
|
|
Replies: 5
Views: 268
Ahh!! I got so stuck up on the fact it was a...
Ahh!! I got so stuck up on the fact it was a problem with my syntax or an extra loop or something I didn't think about my logic! Thank you for that observation and it is workin once again.
Again,...
|
Forum: C++
Aug 29th, 2007, 12:38 PM
|
|
Replies: 5
Views: 268
Ok, that was my bad I was editing the code for...
Ok, that was my bad I was editing the code for web is all and missed that. In my code the variables are the same. The problem still occurs when the variables are correct, sorry for the messup on...
|
Forum: C++
Aug 29th, 2007, 11:34 AM
|
|
Replies: 5
Views: 268
C++ Getting stuck within a loop.
So I took a break from programming for a few months and am back at it. I am attempting to make a function that will shuffle a deck of cards (52) to 4 players. I have setup a 2d array...
|
Forum: C++
Apr 28th, 2007, 10:48 AM
|
|
Replies: 3
Views: 218
C++ default parameters
I have a question when setting defaults in your parameters (ie: void myMethod(string name = "na", int age = 0)). My question pertains more to a constructor. I have the...
|
Forum: C++
Mar 29th, 2007, 12:00 PM
|
|
Replies: 2
Views: 152
Accessing private variables...
Hello, I am having problems accessing a private variable within my class. I have it setup like this:
class MyClass {
private:
class OtherClass {
public:
OtherClass();
int var1, var2;
};
|
Forum: C++
Mar 16th, 2007, 3:26 PM
|
|
Replies: 8
Views: 209
|
Forum: C++
Mar 16th, 2007, 12:10 PM
|
|
Replies: 8
Views: 209
Unfortunately still getting the same error with...
Unfortunately still getting the same error with the code you mentioned. Im beginning to believe that it is a problem with my professors code because I have two of these operators overloaded to take...
|
Forum: C++
Mar 16th, 2007, 8:52 AM
|
|
Replies: 8
Views: 209
|
Forum: C++
Mar 15th, 2007, 9:47 PM
|
|
Replies: 8
Views: 209
operator overloading <<
Im working ona project that requires me requires me to overload the << operator to take an object and format it. This particular operator is to loop and display all objects within an...
|
Forum: C
Apr 6th, 2006, 5:43 PM
|
|
Replies: 0
Views: 173
Windows Services in C
I was wondering if anybody knew a good resource to get me started on services programing for windows.
Thanks
|
Forum: C
Jan 1st, 2006, 1:14 AM
|
|
Replies: 4
Views: 236
|
Forum: C
Dec 31st, 2005, 11:25 PM
|
|
Replies: 4
Views: 236
Getting Mouse Clicks and keystrokes..
I am wanting to make a click/keystroke counter for an application but dont know what methods to use ect. Is there anyway to get mouse clicks and keystrokes? I am not logging the strokes or anything...
|
Forum: C#
Aug 29th, 2005, 1:58 PM
|
|
Replies: 112
Views: 3,375
|
Forum: C#
Aug 25th, 2005, 12:51 PM
|
|
Replies: 2
Views: 166
C# Forms and VS 2005
I am new to the whole dialog part of C# and have a few questions.
When I create a new Windows Application in VS 2005 it creates a few different files. They being: Program.cs, Form1.cs, and under...
|
Forum: C#
Aug 23rd, 2005, 9:53 PM
|
|
Replies: 1
Views: 182
|
Forum: C#
Aug 23rd, 2005, 9:51 PM
|
|
Replies: 1
Views: 182
Opening a RegistryKey
I am trying to read information from a registry key. This is what I have, and I have double checked with the MSDN Library.
Microsoft.Win32.RegistryKey Rkey =...
|
Forum: C#
Aug 21st, 2005, 7:19 PM
|
|
Replies: 112
Views: 3,375
|
Forum: C++
Aug 20th, 2005, 11:59 AM
|
|
Replies: 5
Views: 204
|
Forum: C++
Aug 20th, 2005, 10:25 AM
|
|
Replies: 5
Views: 204
MFC Help
I just received a copy for the Visual Studio 2005 Beta 2 and I decided I want to learn MFC. I am having a problem with the CFrameWnd::Create function.
Here is what I have for the class:
struct...
|
Forum: Other Programming Languages
Aug 6th, 2005, 2:58 PM
|
|
Replies: 5
Views: 461
|
Forum: Coder's Corner Lounge
Aug 5th, 2005, 11:57 PM
|
|
Replies: 0
Views: 225
Game Development question
I have a few questions about game development and where it might be in a few years. I am planning to do some game development and was wondering what might be the best language to accomplish this. I...
|
Forum: Other Programming Languages
Aug 5th, 2005, 6:42 PM
|
|
Replies: 5
Views: 461
|
Forum: Other Programming Languages
Aug 5th, 2005, 5:57 PM
|
|
Replies: 5
Views: 461
Windows XP registry Patch
I'm trying to make a registry patch to delete and modify a few keys. I am having problems with actually deleting the key. I was wondering if there was a way to do this?
Thanks
|
Forum: Java
Apr 26th, 2005, 5:39 PM
|
|
Replies: 3
Views: 401
|
Forum: Java
Apr 26th, 2005, 5:36 PM
|
|
Replies: 3
Views: 401
Java socket Server compile errors..
I'm trying to make a socket server froma tutorial I found on the net. here is the code:
import java.io.*;
import java.net.*;
public class echo3 {
public static void main(String args[]) {
//...
|
Forum: Java
Feb 20th, 2005, 1:23 PM
|
|
Replies: 3
Views: 216
|
Forum: Java
Feb 20th, 2005, 12:42 PM
|
|
Replies: 3
Views: 216
Errors when compiling simple program
I'm trying to program a small program:
class example {
public static void Main (String args[]){
System.out.println("java drives the web");
}
}
this file is Example.java.
|
Forum: C#
Jan 19th, 2005, 9:03 PM
|
|
Replies: 3
Views: 280
|
Forum: C#
Jan 19th, 2005, 8:31 PM
|
|
Replies: 3
Views: 280
Finding directories
I was wondering if I can use wildcards in a path. I'm trying to find out if a certain directory exists in C:\Program Files..
I know I can use if (!Directory.Exists(C:\Program Files\Test Prog)
But...
|