Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. eyesrglazed

    Need help with a function....

    This function is supposed to read from an HTML file saved as "temp.txt"... Unfortunately, it doesn't work more than once running in a loop. I'm not very good at troubleshooting, but it looks like it isn't reading from the beginning of the fiel the second, etc, times... Can someone have a look...
  2. eyesrglazed

    Need help with ASCII map drawer...

    Ok. I am transferring the method I use for a graphing calculator game I wrote over to C++. IMy only problem right now it getting the map to read... Does anyone know why this doesn't work??? #include <iostream> using namespace std; int main() { int map[9][16] = { { 1, 1, 1, 1, 1, 1, 1...
  3. eyesrglazed

    Need help on HTML tag remover...

    This program is supposed to remove the HTML tags from a downloaded HTML file. Here is the code : #include <iostream> #include <fstream> #include <string> #include <windows.h> #include <wininet.h> #pragma comment(lib, "wininet.lib") using namespace std; int main() { ifstream inFile; ofstream...
  4. eyesrglazed

    Timer function...

    I am wondering if there is a way to get a program to run every 15 minutes. If there is, please post it.
  5. eyesrglazed

    Got another one...

    I am now trying to write some code that reads and writes to files in a loop. #include <iostream> #include <fstream> using namespace std; int main() { ifstream inFile; ofstream outFile; inFile.open("temp.dat"); . . //Grab strings inFile.close()...
  6. eyesrglazed

    ifstream help needed...

    I am trying to input from a file on the Internet, although I'm not sure if this is possible. Any ideas?

Part and Inventory Search

Back
Top