RapidFax.com

i have two computers with a game : "need for speed most wanted by EA sports" installed on both computers..i want to play the game on both PCs..using the LAN option from the game menu..Ethernet cards and fax modems are installed on both computers..how can i play LAN game?do i need additional hardware?a router for example??do i need to set up something for i enter the game<i.e network connection??>??details please…thnx in advance

hey please help me solve this problem I’m having. This program seems to run fine with DEV C++, but has errors in Visual Basic. If you guys can please explain to me what exactly I should change in my code because Ive worked hard on this and its a beginners course! please let me know what I should do Asap :)

#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int a1;
int a2;
int a3;
int a4;

int n;

int choice;
string filename;

struct contact //THE INFAMOUS STRUCT.
{ string lastName;
string firstName;
string homePhone;
string cellPhone;
string officePhone;
string pager;
string faxNumber;
};

ifstream inFile; //USED FOR OPENING FILE
int i; //THE COUNTER.
contact List[200]; //ARRAY TO BE STORED IN.
string searchname; //USED WHEN SEARCHING FOR NAME
string searchnum; //USED WHEN SEARCHING FOR NUMBER.

cout<<"Please enter the name of your file below (including the .txt RTF..etc):"<<endl; ////////////////////////////////////
cin>>filename; ////// ///
inFile.open(filename.c_str()); ///// GATHERING ////
if (!inFile) //// OF /////
{cout<<"your file did not open";} // INFO //////
///////////////////////////////

cout<<"How many contacts do you have in your file?"<<endl; //used for counter of loop storing struct arrays.
cin>>n;

cout<<"how would you like to search f-r your contacts?"<<endl<<"if by name press 0, any other number for number"<<endl;
cin>>choice;

if (choice==0) /////////////////////////////////////////////////
{ // //
// IF CHOSEN TO SEARCH BY NAME //
i=0; // //
// //
/////////////////////////////////////////////////
while(i<n) // //
{ // //
inFile >> List[i].lastName; // //
inFile >> List[i].firstName; // STORING OF THE INFO //
inFile >> List[i].homePhone; // FROM THE FILE //
inFile >> List[i].cellPhone; // //
inFile >> List[i].officePhone; // //
inFile >> List[i].pager; // //
inFile >> List[i].faxNumber; // //
// //
i=i+1; // //
// //
// //
} /////////////////////////////////////////////////
i=0;
cout<<"enter last name"<<endl;

cin>>searchname;
i=0;
while (searchname!=List[i].lastName)
{i++;}

//—————————-IF SEARCHED BY NAME—-DISPLAY—————————–//
cout<<endl;
cout<<List[i].lastName<<" , "<<List[i].firstName<<endl;
cout<<"——————–"<<endl;
cout<<"Home Phone: "<<List[i].homePhone<<endl;
cout<<"Office Phone: "<<List[i].officePhone<<endl;
cout<<"Cell Phone: "<<List[i].cellPhone<<endl;
cout<<"Pager: "<<List[i].pager<<endl;
cout<<"Fax Number: "<<List[i].faxNumber<<endl;
cout<<endl;
}

//————————–SEARCH BY PHONE NUMBER————————–//
//————————————————————————–//
//———-

i have two computers with a game : "need for speed most wanted by EA sports" installed on both computers..i want to play the game on both PCs..using the LAN option from the game menu..Ethernet cards and fax modems are installed on both computers..how can i play LAN game?do i need additional hardware?a router for example??do i need to set up something for i enter the game<i.e network connection??>??details please…thnx in advance

trying to make a program so that a file can be read and contacts (for a phone book) can be searched through by name. and later on by phone number. I dont know why the code acts like this please help. and also, if someone can tell me how the user would be able to enter in their own filename so they can use their files I know its a cin but the program doesnt compile right when I do that. SOMEONE PLEASE EXPLAIN CAREFULLY im a beginner :)

#include <iostream>
#include <fstream>
using namespace std;

int main()

{
int i;//counter
int decision;
struct contact
{
string lastName;
string firstName;
string homePhone;
string cellPhone;
string officePhone;
string pager;
string faxNumber;
};
contact List[200];

string searchname;
int searchnumber;
ifstream inFile;
char filename;

cout<<"please enter file name: "<<endl;
cin>>filename;
cout<<endl;
inFile.open("filename.txt");

if (!inFile) {
cerr << "Unable to open file";
}

i=0;
while(!inFile.eof())
{
inFile >> List[i].lastName;
inFile >> List[i].firstName;
inFile >> List[i].homePhone;
inFile >> List[i].cellPhone;
inFile >> List[i].officePhone;
inFile >> List[i].pager;
inFile >> List[i].faxNumber;

i=i+1;

}
cout<<"please choose the number 0 if you choose to search by Last Name;"<<endl;
cout<<"Or choose any other number to search by house number."<<endl;
cin>>decision;
if (decision==0)
//when search by name is chosen
{

cout<<"Please type in the LAST NAME of the person you are trying to reach:"<<endl;
cin>>searchname;
cout<<endl;

i=0;

while(searchname!=List[i].lastName)
{i++;}

cout<< List[i].lastName<<" , "<<List[1].firstName<<endl;
cout<<"——————"<<endl;
cout<<"Home Phone: "<<List[i].homePhone<<endl;
cout<<"Cell Phone: "<<List[i].cellPhone<<endl;
cout<<"Office Phone: "<<List[i].officePhone<<endl;
cout<<"Pager: "<<List[i].pager<<endl;
cout<<"Fax Number: "<<List[i].faxNumber<<endl;
cout<<endl;

system ("PAUSE");
}
}

I am trying to create a program that stores contacts and enables you to search through them.
I first needed to create a txt file and store the numbers and contacts as well as house number work number fax number adress etc….
we get to store as many as 200

Heres the code. This is a beginners course so detailed explanations I would greatttllly appreciate it guys!!

#include <iostream>
#include <iomanip>
#include <fstream>
using namespace std;
int main()
{

struct contact
{ string lastName;
string firstName;
string homePhone;
string cellPhone;
string officePhone;
string pager;
string faxNumber;
};
string LastSearchName;

int choice;
int i=0;
ifstream inFile;
ofstream fout;
contact List[200];
string searchname;
int numbersearch;
cout<<"please enter the name you want for your file"<<endl;

inFile.open("filename.txt");

if (!inFile) {
cerr << "Unable to open file datafile.txt";
}

cout<<endl;

while(!inFile.eof())
{
inFile >> List[i].lastName;
inFile >> List[i].firstName;
inFile >> List[i].homePhone;
inFile >> List[i].cellPhone;
inFile >> List[i].officePhone;
inFile >> List[i].pager;
inFile >> List[i].faxNumber;

}
i=0;

cout<<"Press 0 to search by Name, Press any other number to search by Home number"<<endl;

cin>>choice;

if (choice==0)
{

cout<<"please enter the Last Name of the person you are trying to get contact of:"<<endl;
cin>>searchname;
cout<<endl;
i=0;
while (searchname!=LastSearchName)
{ LastSearchName=List[i++].lastName;

}

cout<<List[i].lastName<<" , "<<List[i].firstName<<endl;
cout<<"Home Phone: "<<List[i].homePhone<<endl;
cout<<"Office Phone: "<<List[i].officePhone<<endl;
cout<<"Pager: "<<List[i].pager<<endl;
cout<<"Fax Number: "<<List[i].faxNumber<<endl;
cout<<endl;
}

else
{cout<<"nevermind";}

inFile.close();

system ("PAUSE");
}

For some reason when I run the program I cannot get it to search through the names to get to the contact information for a specific person….ANY HELP GUYS? oh and can you guys help me in giving the user the ability to name the file its stored in??? im having problems with that… please very detailed results again I am a beginner

The lab screwed up and just sent them to me and not my doctor.
I’ll be faxing them to him tomorrow but I was wondering anyone could give me any insight on this?
(I went for bipolar disorder, but he wanted a blood test)
Everything on the CBC is inrange except for:

Lymphocytes, Aboslute which read out of range 1065 – low- 1200-5200/ cells mcL

Eosinphonphils, Absolute — 9 -Low- 15-500/cells mcL

And on my other page…

A/G Raitio 2.2 High 1.0-2.1 mg/dl

Bilirubin, direct, high .021 < = 0.2 mg/dl

Are this abnormalities something to be concerned out?
I live a clean life style.
I’m 17 years old, 6’0, and 180 pounds.