Archive for July, 2010
Hi I want to develop program in Visual Basic 6, is a small program that lets you input any number from 1 to 5 and automatically display the corresponding number to its row. I have some screenshots i finish the design, my problem is the coding part. please help..here's my print screen screenshots. see the attachments thanks...

Having a MarketPlace in forum is always good for user interaction but I was certain that using forum to add the marketplace actually means that too much of spamming and self promotion. Go4Expert does not encourage that at all. Finally we have launched Go4Expert's Job's Board in partnership with Donanza
Programmers and freelancers do not pay anything to use the Job Board but to post the project you have to pay the fees of $10 but to kick off the new Job Board we have made it complete free for employers as well.
At the time of Payment just apply the coupone
G4EfJobKickOff
And your cost of $10 will become $0.
Hurry because the offer will expire in about one week's time.
What Happens to old Job Forum?
I am sure this question will be bugging your mind and so here is what has been done.
Job Offers / Job Seekers / Freelance Marketplace are all combined and redirected into one forum Job Discussion which was the parent forum of all the Job Sub forums earlier. People can discuss about Jobs and Careers in Job Discussion forum and from now on all Freelance Work and Job Offers can go into Jobs Board.
Share your views and posts in comments below.
Programmers and freelancers do not pay anything to use the Job Board but to post the project you have to pay the fees of $10 but to kick off the new Job Board we have made it complete free for employers as well.
At the time of Payment just apply the coupone
G4EfJobKickOff
And your cost of $10 will become $0.
Hurry because the offer will expire in about one week's time.
What Happens to old Job Forum?
I am sure this question will be bugging your mind and so here is what has been done.
Job Offers / Job Seekers / Freelance Marketplace are all combined and redirected into one forum Job Discussion which was the parent forum of all the Job Sub forums earlier. People can discuss about Jobs and Careers in Job Discussion forum and from now on all Freelance Work and Job Offers can go into Jobs Board.
Share your views and posts in comments below.
Having a MarketPlace in forum is always good for user interaction but I was certain that using forum to add the marketplace actually means that too much of spamming and self promotion. Go4Expert does not encourage that at all. Finally we have launched Go4Expert's Job's Board in partnership with Donanza
Programmers and freelancers do not pay anything to use the Job Board but to post the project you have to pay the fees of $10 but to kick off the new Job Board we have made it complete free for employers.
At the time of Payment just apply the coupon
G4EfJobKickOff
And your cost of $10 will become $0.
Hurry because the offer will expire in about one week's time.
What Happens to old Job Forum?
I am sure this question will be bugging your mind and so here is what has been done.
Job Offers / Job Seekers / Freelance Marketplace are all combined and redirected into one forum Job Discussion which was the parent forum of all the Job Sub forums earlier. People can discuss about Jobs and Careers in Job Discussion forum and from now on all Freelance Work and Job Offers can go into New Board.
If you have more queries do share them in comments below.
Programmers and freelancers do not pay anything to use the Job Board but to post the project you have to pay the fees of $10 but to kick off the new Job Board we have made it complete free for employers.
At the time of Payment just apply the coupon
G4EfJobKickOff
And your cost of $10 will become $0.
Hurry because the offer will expire in about one week's time.
What Happens to old Job Forum?
I am sure this question will be bugging your mind and so here is what has been done.
Job Offers / Job Seekers / Freelance Marketplace are all combined and redirected into one forum Job Discussion which was the parent forum of all the Job Sub forums earlier. People can discuss about Jobs and Careers in Job Discussion forum and from now on all Freelance Work and Job Offers can go into New Board.
If you have more queries do share them in comments below.
Anyone tried this?
Let's face it: despite the new Xbox 360 being joyously quieter and more efficient, the previous model still manages to seduce some of us with its sexy curves. Speaking of which -- according to Joystiq's source, Best Buy's going to kick off August by lowering the prices for the Splinter Cell: Conviction and Final Fantasy XIII previous-gen Xbox 360 bundles. For just $299 -- $50 off the current price point (and $100 off the launch price) -- you still get a copy of the corresponding game title, a 250GB HDD, and two wireless controllers. So that's gaming sorted for the summer; now put that $50 towards some cooling aid and you're good to go.
Update: and the new prices are live. Grab them while they're hot.
SlashGear |
Joystiq | Email this | Comments
Update: and the new prices are live. Grab them while they're hot.
Best Buy to slash prices for old Xbox 360 special edition bundles tomorrow? (Update: yes) originally appeared on Engadget on Sat, 31 Jul 2010 23:58:00 EDT. Please see our terms for use of feeds.
Permalink
SlashGear |
Joystiq | Email this | Comments
Hi,
I intend to store objects in file and retrieve them. But the following program crashes when I compile and run on second time. for first time it runs. I guess there is some problem with append mode because if mode is selected output it runs without problem.
I'm using Dev-c++ to write and compile this program in Windows 7 OS.
Can you help me to identify the problem. I'm struck here when I need to write a program for payroll system of an organization (exam question).

I intend to store objects in file and retrieve them. But the following program crashes when I compile and run on second time. for first time it runs. I guess there is some problem with append mode because if mode is selected output it runs without problem.
I'm using Dev-c++ to write and compile this program in Windows 7 OS.
Can you help me to identify the problem. I'm struck here when I need to write a program for payroll system of an organization (exam question).
Code:
#include<fstream>
#include<iostream>
using namespace std;
ofstream fout;
fstream fin;
class game{
string name;
int year;
public:
game(){name="Olympic"; year=2004;}
game(string n, int y) {name=n; year=y;}
string getName(){ return name;}
int getYear(){ return year;}
};
int main(){
game g("World Cup",2010);
game g10;
fout.open("test.dat",ios::binary|ios::app);
fout.write((char*) &g, sizeof(g));
fout.close();
fin.open("test.dat",ios::binary|ios::in);
while(!fin.eof()){
if(fin.eof())
{ cout<<"---End of File Reached ---"<<endl;
}
fin.read((char*) &g10, sizeof(g10));
cout<<"\nName of Game: "<< g10.getName();
cout<<"\nYear of Game: "<<g10.getYear();
cout<<"\n===================================="<<endl;
}
fin.close();
system("Pause");
}

