Post what you copied last =)

nebula

Golden Member
Apr 4, 2001
1,315
3
0
I was trying to call a couple of local Wolf's to see if they had it. I found out that they are all now Pro-Ex and they do have it. I haven't gone there yet to verify if it's the right one, but she said it was the same was as Ritz. (Ritz owns Pro-Ex) So maybe check that route.

 

moshquerade

No Lifer
Nov 1, 2001
61,504
12
56
Hey Mosh,,

Finally got to brouse your forum,, pretty cool ,,, I registered

What a coinckiedinckie that it's a misnomer for CPU,,, I have a site called CPUs Your Way...

Great minds I guess


Joe
 

WhiteKnight

Platinum Member
May 21, 2001
2,952
0
0
Originally posted by: AbsolutDealage
http://www.goodoldgold.com

In the market for an engagement ring? Did you find those guys through the DT forums?

As for my clipboard:

Tom,
Thanks for your quick response. I didn't even try to buy tickets to
Trilogy Tuesday because there's no way I could get off that day. I was
looking forward to having some of my friends come in to town to go to the
midnight premiere, which I did not realize was only available through
Trilogy Tuesday. Oh well, that's a shame, but I certainly understand the
tough position you are in. Hopefully I'll make it to the Senator at some
point, but I guess I'll have to look elsewhere for a midnight
showing.

Thanks again
 

shekondar

Golden Member
Apr 10, 2003
1,119
0
0
//read canned message from file
BYTE data[4096]; //4k limit should be enough for now...
DWORD len = 0;
FILE *fp = fopen(filename, "rb");
if (!fp)
return ERROR_CAPTURE_FILE_OPEN;

while (!feof(fp) )
{
fread(&data[len], 1, 1, fp);
len++;
}
len--; //back up one byte!

fclose(fp);