-
Replied To a Post in When i update radeon HD 6700 driver my cpu usage go high
Re. Antone068's suggestion. Caveat user! I know nothing about this tool (DriverTuner), and it may well be malware. Only install it if you are confident it won't mung your system! -
Replied To a Post in Odd question regarding RAM
There are experimental systems that support distributed RAM, but bear in mind that they have horrible latencies since they have to operate over the network. With the faster networks we … -
Replied To a Post in My laptop becomes slow after installing sql server2008
The minimum RAM is 512MB and minimum recommended is 2GB. That is basically for the database server. You should double that to 4GB in order to avoid virtual memory swapping. … -
Replied To a Post in Linux VS CentOS 6.5/7 Minimal VS Ubuntu etc.
@rch1231 The article is not too bad, but there are a lot of mistakes and the author's English leaves something to be desired. @zzmrmartinzz Read more than just this article … -
Replied To a Post in c++
What ddanbe said. To expand. We don't do your homework for you. Show your work, and if appropriate we will help you to sort out your errors. -
Replied To a Post in [win32] - getting HBITMAP from HDC and memory leaks
This is a MS API question, and not relevant generally to C++. We would need to know in detail what the SelectObject() function is doing, and that is not in … -
Replied To a Post in Could I have some guidance on introducing methods into my wages program?
A class method is a single interaction point with an instance of the class. It should do only one thing, and do it well. There are methods to access state … -
Replied To a Post in Why should I learn Java?
I write quite a bit of Java, and learned about it from the inventor, James Gosling, back in 1995 I believe, at a Boston IEEE Conference. I even got an … -
Replied To a Post in php sql calender based booking
Just some general PHP observations: 1. PHP is an object-oriented language. Create appropriate classes, much like you would in Java or C++. Don't mix HTML output and PHP. It makes … -
Replied To a Post in bswap on 64 bit register not working
Yes, on both 32 and 64-bit systems, usually an int is 32-bits, but in your 64-bit system, you need a 64-bit integer, which is a long in the 64-bit system, … -
Replied To a Post in I want to convert a code from C to C++ , but some
Show the C and your C++ code. C++ is C with classes, and some other stuff, like differing syntax for input/output functions. Without code, there is no way to answer … -
Replied To a Post in I need a way to pass an address and get back geo coordinates
I think that both Google Maps and Nokia's Here have API's that can do that for you (probable web services APIs). You need to do some research on their sites … -
Replied To a Post in How to connect to Windows Server Essentials via VPN??
A vpn connection basically makes your system a peer in the network you have connected to. You will be using its DNS servers, LDAP (Active Directory) servers, etc. Even your … -
Replied To a Post in Problem
This is not enough information to help you. Does this happen for all web sites, or only one or a few? What error do you get? A connection reset means … -
Replied To a Post in Are all windows tablets' keyboard connector universal?
You should be able to use a USB keyboard without problems. -
Replied To a Post in Do I have some sort of programming talent?
@Mike2k My grandson is a prodigy, though he has finally hit adulthood (21 this year). At 8 years old he rewired my daughter's kitchen radio in order to receive transmissions … -
Replied To a Post in Windows can't be installed because Windows messed up.
This is a situation where "I told you so" is correct, but not particularly helpful... IE, NEVER install new OS versions directly on your system. This is what virtual machines … -
Replied To a Post in Xubuntu mouse stuck:BUG
What version of Xubuntu and Firefox are you running? Also, what window manager? Finally, is your mount a wireless or wired device? If wireless, is it radio, or infrared. If … -
Replied To a Post in My new PC Build not working!!!
No beeps means not fine... Video adapter info? Answer my questions please if you want some help. I am a certified technician and electrical engineer. I make no assumptions about … -
Replied To a Post in Need best Linux distro for my PC
Is this a 32-bit only CPU, or does it have 64-bit capabilities? My Dell D630 is a Core 2 duo with 64-bit capabilities. I run a clone of Red Hat … -
Replied To a Post in media server, tcp and udp
TCP is connection oriented, suitable for sending complete files. UDP is packet oriented, suitable for sending short messages. TCP will verify that all the data got to the destination, and … -
Replied To a Post in programming
There are a gazillion computer programming languages, some of which are main-stream and some of which are niche languages, and others are just plain old languages (Fortran, APL, PL/M, etc). … -
Replied To a Post in Extending a home network
JorgeM is correct. In our home, I have two wifi access points w/ switches. The router/internet connection and access point is in my office in the basement. The other switch/access-point … -
Replied To a Post in Items on outlook 2003 not syncing to online outlook
I know that current outlook versions do sync with office 365 online, but I don't know about 2003. Check with MS for a plugin that may do that. -
Replied To a Post in need to transform this c++ tictactoe program into a c program
Was your double-posting of this a mistake? Fat fingers? -
Replied To a Post in solving polynomial equations of degree 3 with C++
You can still give your variables sensible names that help the user/programmer to understand your intention. Also, I agree with NathanOliver about preferring the first indentation method. In any case, … -
Replied To a Post in C++ Librairies and functions
All compilers have function libraries, but in truth they are not "standard". IE, what you have in Windows is not what you have in Linux, Unix, OSX (BSD Unix), etc. … -
Replied To a Post in Can SomeBody Help me to Correct this QuickSort Code. I think mistake is in
When I had to sort a linked list in the past, I would put the nodes into an array and use qsort(), then take the sorted output and regenerate the … -
Replied To a Post in Generate Random Number
Go to this site, and study it closely. It has the best RNG tutorials available: http://www.phy.ornl.gov/csep/CSEP/RN/RN.html From the site (I've posted this here before, at least twice): Anyone who considers … -
Replied To a Post in How the parser knows if the expression in for statement returns boolean
Generally, the Expression is a comparison of two operands, such as i >= 0. This is a boolean expression which will return true if i is greater than or equal … -
Replied To a Post in How much should I be payed?
If you are working as an independent consultant doing this, and you are in the USA, then if you are experienced and good at this, you can command around $200USD … -
Replied To a Post in Need help finishing up this code
Not asking for much, are you? You want us to analyze 430+ lines of code. Reduce it to the sections that you are having problems with. FWIW, I charge my … -
Replied To a Post in Factors count
Solved? Can you extract the prime factors for any random number? The prime factors for 12 are not what are shown, but are 1, 2, and 3, and the prime … -
Replied To a Post in record manger
What have you done so far? We don't do your homework for you. Please read the terms of service (TOS) for this site for details. -
Replied To a Post in connect program on the server
What port is the server using? You need to know that. The server should be listening on that port for connection requests, so your client would use a TCP/IP connect … -
Replied To a Post in Need help with my project plz urgent
This graphic is not too helpful. Is this a programming project, or something else? -
Replied To a Post in How to add program to favorite program to list when it has been installed
You should be able to right-click on the panel, and select the "add to panel" option to do what you want. -
Replied To a Post in Visual Basic 2008
Sorry, but we don't do your homework for you. Make an effort. Post the code here. And if it is an honest effort, we will help you. -
Replied To a Post in My new PC Build not working!!!
Just because it makes noises and the fans run doesn't mean the mobo is fine, or anything else. Do you hear any beeps when it starts up? Does it use … -
Replied To a Post in deleting .Trash-1000
By default, deleting files on Linux systems will put the file/directory into the trash folder (works that way on Windows also). If you empty the trash folder, the files in … -
Replied To a Post in Knowldge
Is the Skype app installed? Skype works over WiFi or wired networks. Are you in range of a WiFi access point? Are you connected? -
Replied To a Post in driver video (xp prof) motherboard GA-B85M-D2V????
And you problem is??? -
Replied To a Post in c++ programming
And remember, we don't do your homework for you! -
Replied To a Post in Have ready assembler code, how do I change it into bootable thing?
For a bootable image, you first need to write a boot loader. Not too hard - I've done it in the past. The boot loader executes the code found, then … -
Replied To a Post in i want valid huffman code in c++
Try our friend Google... We don't do your homework for you. -
Replied To a Post in what does it mean ?
Exactly! Pass by value means the receiving function gets only a copy so changes to it are local only. Pass by reference means that the actual passed object is received … -
Gave Reputation to mike_2000_17 in Difference between thread-safe and reentrant?
> if it is not gviging correct answer, then how it is still thread-safe? That's related to what I pointed out about things being relative to how you define your … -
Replied To a Post in Is my Video Card faulty?
This is why we use surge suppressors! Chances are that many components on the motherboard and/or video card were fried with that surge. My system and peripherals are plugged into … -
Replied To a Post in Adding-up Elements of a Two-Dimensional Array
You are almost there. Do the code and show us how you might do it. Basically you are adding the values of arr[0][N] and arr[1][N] where N is 0...4. -
Replied To a Post in solving polynomial equations of degree 3 with C++
It is not nice to post code with some problem, and then not indicate what/where the problem is. What IS your problem? P.S. NathanOliver was being polite...
The End.