Forum: C++ Jun 10th, 2009 |
| Replies: 4 Views: 371 yes yes. Could somebody just give
a proper answer?
Php.net hould have its own guides
for this. :-/ |
Forum: C++ Jun 10th, 2009 |
| Replies: 4 Views: 371 Hi,
to answer this question you need to have some experience
about php...
i'm planning to create a http server that supports cgi. Does anyone see the problem in C++ -source? Php doesn't give... |
Forum: Viruses, Spyware and other Nasties Mar 31st, 2009 |
| Replies: 6 Views: 1,557 What does this error message say? |
Forum: C++ Mar 31st, 2009 |
| Replies: 9 Views: 872 My cool "zprintf".
You can change color attributes inside string, like
<c10>Hi <c12>There<c14>!!!!
And you get rid of those SetConsoleTextAttribute -lines!
//Do this somewhere inside your... |
Forum: Viruses, Spyware and other Nasties Mar 30th, 2009 |
| Replies: 7 Views: 1,057 I don't think that your virus - if there is one - can be so smart that it keeps removing your drivers.
First of all you should get network driver working.
Before you tried to reinstall that, did... |
Forum: Viruses, Spyware and other Nasties Mar 30th, 2009 |
| Replies: 7 Views: 1,057 Maybe you could try terminating processes?
It's possible that there is unwanted threads injected to your
processes.
Sometimes if many programs/threads are trying to connect
to somewhere at same... |
Forum: Windows NT / 2000 / XP Dec 20th, 2008 |
| Replies: 1 Views: 2,254 4a 75 73 74 20 68 61 63 6b 20 69 74 2e |
Forum: C++ Aug 17th, 2008 |
| Replies: 4 Views: 1,157 There isn't server hosting, main or another ws functions, but they aren't important now.
#include <stdio.h>
#include <windows.h>
#include <fstream>
using namespace std;
bool... |
Forum: C++ Aug 17th, 2008 |
| Replies: 4 Views: 1,157 I know how to save the bitmap to file and then send it byte by byte. But it could be nice to know how to send bitmap without saving it first, e.g. if the directory doesn't allow you to create new... |
Forum: C++ Aug 17th, 2008 |
| Replies: 4 Views: 1,157 I have to send bitmap and do something like this:
Client:
HBITMAP bmp = LoadBitmap(0,MAKEINTRESOURCE(1));
send(socket,(char*)&bmp,sizeof(HBITMAP),0);
Server: |