Forum: C++
Feb 23rd, 2005, 10:59 PM
|
|
Replies: 5
Views: 783
Well, now I think I've got the class and...
Well, now I think I've got the class and implementation down.
Class:
#ifndef EMPLOYEE_H
#define COURSE_H
#include <iostream>
using namespace std;
const unsigned LastNameSize = 30;
|
Forum: C++
Feb 22nd, 2005, 12:27 AM
|
|
Replies: 5
Views: 783
|
Forum: C++
Feb 20th, 2005, 9:32 PM
|
|
Replies: 5
Views: 783
Employee Class/Implementation help
#include <iostream.h>
const unsigned LastNameSize = 10;
class Employee {
public:
Employee E1( long id );
Employee E2( long id, char lastName, float payRate, int hours );
long GetId();
char *...
|
Forum: Visual Basic
Nov 30th, 2004, 6:08 PM
|
|
Replies: 8
Views: 439
|
Forum: Visual Basic
Nov 29th, 2004, 11:50 PM
|
|
Replies: 8
Views: 439
Here is the code I have now:
Private Sub...
Here is the code I have now:
Private Sub mnuExit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mnuExit.Click
Dim datBalance As StreamWriter
Dim dgrResult As...
|