|
The docs[^] say this:
the name change takes effect the next time the user restarts the computer.
Have you restarted the machine?
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
Can anyone recommend a good library/API for adding PDF output to a graphically-intensive MFC C++ (GDI+ VC++ 6 etc) application?
For example a simple EMF-to-PDF conversion would seem to be sufficient.
It seems to be a common capability of many apps. Is there a standard or common solution I have missed?
|
|
|
|
|
I don't know how easy it is to use - but PDFlib Lite[^] may be an option? There's a commercial version as well if you've got cash to splash.
I presume the Adobe PDF SDK[^] is likely to be out of reach financially?
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
Hello, I'm a programmer, I work with Java, C# and other technologies. I'm also a C++ programmer, I've been using it for a long time, but never commercially as I never found a job involving it or available jobs require too much commercial experience with it. As I'm interested in it, working on graphics applications, MFC or other, how do you think I may interest employers?? My work background is essentially Java and some C# (2 Years). I have been thinking of starting a open source project as a showcase of my skills, anyway it requires lots of spare time... Do you have any suggestions?
|
|
|
|
|
Well, apply for jobs that have C++ openings, and hope for the best.
IMO, unless you make huge documented contributions to a well know open source projects, nobody will notice; especially
if it's your own project (and nobody else is contributing).
This signature was proudly tested on animals.
|
|
|
|
|
Small word of warning. I won't hire anyone doing open source projects and neither will a lot of people I know. It isn't worth the hassles and the competition for time.
Anyone who thinks he has a better idea of what's good for people than people do is a swine.
- P.J. O'Rourke
|
|
|
|
|
|
How to communicate through the UPD server.
What r the way to implement it
|
|
|
|
|
There are lots and lots of ways. Here's one[^].
Now, you need to work out what data you need to send between client and server and then determine a protocol for that data.
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
deadlyabbas wrote: How to communicate through the UPD server.
1) Find the electrical outlet that the server is powered from.
2) Unplug the server.
3) Use your saliva to coat your two of your fingers.
4) Stick the fingers from step (3) into the electrical outlet.
5) Return to this forum after completing step (4)
|
|
|
|
|
led mike wrote: 5) Return to this forum after completing step (4)
Or not...
|
|
|
|
|
shhhhhh, you'll spoil the surprise! 
|
|
|
|
|
You mean, the big fireworks and all the stars and the bright light ? Ooopsss, sorry...
|
|
|
|
|
You're more able in changing identity than writing software, I suppose.
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
|
1. Client-A listens voice from a computer mic and sends the voice to the server 2. The server relays the voice to Client-B, which outputs the voice to a computer speaker.
3. Both Client-A and Client-B listen and speak.
4. Run in a LAN environment.
|
|
|
|
|
You're really called pandit, aren't you. I might be slow, but that's pretty fscking obvious.
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
Stuart Dootson wrote: I might be slow
No, you're not.
Stuart Dootson wrote: fscking obvious
See that's why I started using frak and fraking, to avoid the asterisks. 
|
|
|
|
|
led mike wrote: See that's why I started using frak and fraking, to avoid the asterisks.
fsck[^] makes much more sense to those with *nix backgrounds.
Best Wishes,
-David Delaune
|
|
|
|
|
Randor wrote: fsck[^] makes much more sense to those with *nix backgrounds.
Ok, if you say so.
Stuart Dootson wrote: I might be slow, but that's pretty fscking file system check obvious.
But, you guys really need to get laid once in a while! 
|
|
|
|
|
Randor wrote: fsck[^] makes much more sense to those with *nix backgrounds.
That's the one...although it's Disk Utilility (OS X) these days rather than fsck!
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
Write a UDP based server and two clients:
1. Client-A listens voice from a computer mic and sends the voice to the server 2. The server relays the voice to Client-B, which outputs the voice to a computer speaker.
3. Both Client-A and Client-B listen and speak.
4. Run in a LAN environment.
|
|
|
|
|
|
Hi!
I am trying to build my own Client Server in UDP.
I have managed to create everything in classes.
The problem is that when all the syntax errors finished, I am getting a link problems for all of the communication functions:
sendto
recvfrom
WSACleanup
closesocket
and more.
I have the library in the project: #include <winsock.h>
The error is:
Error 2 error LNK2019: unresolved external symbol _WSACleanup@0 referenced in function "public: void __thiscall CServer::Handle_Connection(void)" (?Handle_Connection@CServer@@QAEXXZ) CServer.obj
Does anyone knows what is the problem?
Thanks
<div class="ForumMod">modified on Thursday, April 16, 2009 1:17 PM</div>
|
|
|
|
|
Look at the documentation for WSACleanup, in the section called Requirements you will find a library that is required.
|
|
|
|