Forum: Viruses, Spyware and other Nasties Oct 9th, 2008 |
| Replies: 11 Views: 858 |
Forum: C++ Oct 9th, 2008 |
| Replies: 2 Views: 132 Killing McAfee I am wondering if theres code for removing this software completely, but through code ? It has been a while since I have been working on this type of a project, but now that I am trying I noticed... |
Forum: C++ Feb 1st, 2008 |
| Replies: 1 Views: 287 Need help with this script Ok.. I use c++ numerous times to stream an output to script's to do further operations. Sometimes I need an email script, and will output one and manipulate the script with c++. As dumb as a question... |
Forum: Shell Scripting Feb 1st, 2008 |
| Replies: 0 Views: 887 QUESTION ABOUT .vbs scripts in windows. Ok, I have noticed that everything I like to do in windows using c++ can easily be done with .vbs scripts. Just to clarify the books I looked into buying to teach me .vbs all mostly talk about ... |
Forum: Shell Scripting Jan 27th, 2008 |
| Replies: 0 Views: 537 A script to write an email with a problem! Im developing an application console based in c++ , and needed a quick and easy way to script an outlook email. I found the below script to use which works great, but for one problem.
PROBLEM:
When... |
Forum: C++ Jan 27th, 2008 |
| Replies: 1 Views: 614 Script To Send Email Adress Ok so Im onto my next step.. Ive used c++ to read in an entire file, and got what I needed. The last and final step is to send the information in an email via my already setup outlook account.
The... |
Forum: C++ Jan 27th, 2008 |
| Replies: 9 Views: 1,203 Re: Reading in a file and taking a count WOOOOOOOOOHOOOOOOOOOO
THANK YOU AD... YOU ARE THE MASTER !
SHould be more like MASTER DRAGON or something heh...
heres my updated code
#include <iostream>
#include <string>
#include <vector> |
Forum: C++ Jan 27th, 2008 |
| Replies: 9 Views: 1,203 Re: Reading in a file and taking a count THANKSSSSSSSSS AD I got it almost figured out with your help man :)
Thanks for putting scraps on the table and making me think about it lol
the whole while(getline) idea was masterfull.. BELOW... |
Forum: C++ Jan 27th, 2008 |
| Replies: 9 Views: 1,203 Re: Reading in a file and taking a count Ive searched and searched.. and cannot find something that I can tie this into to accomplish what I am wanting to do.
I have a couple of idea's, but how can I read stuff into a vector and have it... |
Forum: C++ Jan 26th, 2008 |
| Replies: 9 Views: 1,203 Re: Reading in a file and taking a count Ok Im having a small problem with the below code.
I wanted to get basic with the vectors before diong what I am trying to do with the bigger picture of things. Only it's not working like I thought it... |
Forum: C++ Jan 26th, 2008 |
| Replies: 9 Views: 1,203 Re: Reading in a file and taking a count THe only thing that seperates each sentence would be a new line.
Example:
File Name\location: c:\\text.txt
Contents of c:\\text.txt
My name is Cody
My Last name is Oebel
I am getting back into... |
Forum: C++ Jan 26th, 2008 |
| Replies: 9 Views: 1,203 Reading in a file and taking a count Ok here is what I am trying to do at work as it's slower than a turtle in a race right now.
I have a log of text guessing about 40 lines total. the last three sentences are what I am after .. being... |
Forum: C++ Jan 26th, 2008 |
| Replies: 14 Views: 1,713 Re: inputing a text file into an array #include <iostream.h>
#include <fstream.h>
int main()
{
/* open the file to read from in this case being your text file*/
char chars[50];
char newline = '\n'; // for the get line function's 3rd... |
Forum: C++ Jan 24th, 2008 |
| Replies: 3 Views: 407 |
Forum: C++ Jan 24th, 2008 |
| Replies: 3 Views: 407 Crossing fingers* Outputting to an outlook email Ok this is what I am wanting to achieve :
I have a notepad filled with documentation, and there is some key words in the document
that:
IF EXIST = is copied from the document and then sent in an... |
Forum: C++ Jun 14th, 2007 |
| Replies: 1 Views: 499 |
Forum: C++ May 7th, 2007 |
| Replies: 21 Views: 3,297 Re: How To Read A Webpage ? Well yes wget does work for windows after all. The only problem is it doesnt work on the IntraNet page I am trying to read from. It's not reading into wget, but every other external internet webpage... |
Forum: C++ May 7th, 2007 |
| Replies: 21 Views: 3,297 Re: How To Read A Webpage ? wget www.mystuff.com
??????
Ok a few questions. First off, I am windows programming does that make a difference with wget ???
Second if windows is not going to be a problem and I can still use... |
Forum: Visual Basic 4 / 5 / 6 May 7th, 2007 |
| Replies: 4 Views: 1,073 |
Forum: C++ May 6th, 2007 |
| Replies: 4 Views: 1,058 |
Forum: C May 4th, 2007 |
| Replies: 24 Views: 5,694 Re: Timing programs in C Get DEV ! Why are you stuck with Turbo C++ ? BloodShed is problably one of the best compilers out there and compiles efficiantly.
BloodShed makes a super nice compiler with alot of library... |
Forum: C May 4th, 2007 |
| Replies: 24 Views: 5,694 Re: Timing programs in C Get DEV ! Why are you stuck with Turbo C++ ? BloodShed is problably one of the best compilers out there and compiles efficiantly.
Im not a borland person, but bloodshed makes a nice compiler :)... |
Forum: C++ May 4th, 2007 |
| Replies: 4 Views: 1,058 Heres a basic Menu I developed I use alot I hope this helps for some of those wanting to create a basic menu.
#include <iostream>
#include <dos.h>
#include <windows.h>
#include <string.h>
#include <fstream>
using namespace std; |
Forum: C May 4th, 2007 |
| Replies: 24 Views: 5,694 Re: Timing programs in C you may use the example in someting like so.
#include <iostream>
#include <dos.h>
#include <windows.h>
#include <stdlib.h>
using namespace std; |
Forum: C May 4th, 2007 |
| Replies: 24 Views: 5,694 Re: Timing programs in C If you need to using some timing functions to time your programs output then theres nothing more perfect than using windows sleep command.
here are some header files to use for time that you may... |
Forum: C++ May 4th, 2007 |
| Replies: 21 Views: 3,297 Re: How To Read A Webpage ? btw im the same person .. if you dont already know lo..
Any suggestions would be great but I am still searching. |
Forum: C++ May 4th, 2007 |
| Replies: 21 Views: 3,297 Re: How To Read A Webpage ? Nope because I am not web designing.
lol..
hmmmm ... maybe I do need to look into some ole html LOL.
Alll I need to do is get everything from the website into a normal view source format and voila..... |