-
Replied To a Post in WHAT SKILL TO BE FIND IN BEST WEB DESIGNING
**1**. It's best to find the capslock key and turn it off. -
Replied To a Post in Post Anomaly
I thought the cache could be the issue, though I expected it would have updated at some point in the 23 hours since originally posted. -
Created Post Anomaly
When I go to Web Development Discussion Community and scroll down to the post titled "What skills do you need to become a good web developer?", I see in the … -
Gave Reputation to Reverend Jim in suplayer
Maybe it's what a bro might ask another bro? As in >S'up playa? -
Replied To a Post in About Dazah
I think it would be more appealing if it were written in the first person - or at least the opening spiel. :) -
Replied To a Post in Unanswered and Self-Answered Threads
> I've also seen many times where a newbie will mark their own new thread solved because they don't realize what the button means. I think sometimes they're just seeing … -
Replied To a Post in Some things I miss about the old layout
I miss that I don't miss anything about it. -
Gave Reputation to diafol in Unanswered and Self-Answered Threads
Just wondering whether self-answered threads (without any contribution) - i.e. OP posts and then marks as solved - should be classed as "unanswered" and show in the Unanswered tab of … -
Replied To a Post in suplayer
A poor attempt at spam with definite need for a spellchecker. What's an energy suplayer? A high voltage hip chicken? -
Replied To a Post in Site redirect issue
If I'm reading your mind correctly, remove the frame that's redirecting to ***.i.illuminationes.com. The obfuscated code repeats 4 times. -
Replied To a Post in Connected to Internet but Browser not working
Lelelele, it would be preferable if you started a new thread rather than resurrect a prehistoric thread. You also need to explain in more detail what problems you are having … -
Replied To a Post in RWC 2015
Sam Burgess needs to come back to the Australia's NRL and hook up with the Rabbitohs. That way my wife will be happy and I'll maintain my sanity - well … -
Replied To a Post in XP Home Edition SP3 Printer Spooler won't start
Dave, That's great news and thanks for the feedback. :) -
Replied To a Post in DDS Help?
In that case, which program listed in the log is old and vulnerable to exploits? -
Replied To a Post in DDS Help?
> Some things say "NetworkServiceNetworkRestricted" or "LocalServiceAndNoImpersonation" does this mean the internet is not connecting? No, they are basically just service categories, each instance of svchost.exe will be running 1 … -
Replied To a Post in XP Home Edition SP3 Printer Spooler won't start
It would be worthwhile slipstreaming service pack 3 into your installation disk. The guide [here](http://www.expertreviews.co.uk/software/8053/how-to-slipstream-an-xp-disc-with-sp3-and-all-other-updates) is comprehensive and relatively easy to follow. If you like, I can get you to … -
Replied To a Post in Formatting encrypted drive
[This article](http://www.pcworld.com/article/157966/laptop_security.html) does a decent job of explaining the role of a TPM chip in hardware-based full disk encryption. -
Replied To a Post in XP Home Edition SP3 Printer Spooler won't start
It appears that the Eset scan found a lot of PUAs. Is your installation disk one for XP service pack 3? Have you tried running SFC from safe mode? For … -
Replied To a Post in Anyone Still Miss/Like Windows XP?
I Installed Windows 7 and happily buried XP. Don't miss it at all. -
Replied To a Post in XP Home Edition SP3 Printer Spooler won't start
Scan your system with Eset's online scanner. If Ramnit is detected, repeat the scan until it's no longer detected. http://www.eset.com/us/online-scanner/ Post back with the results. -
Replied To a Post in Where did the General Chat went?
It's good to see spammers making use of tags. :S -
-
Replied To a Post in ATM using Functions in c language I really need help ASAP
Move lines 41 to 45 to `printIntroMenu() ` I gather that the user id and password are both mean't to be positive integers, if that's the case then it seems … -
Replied To a Post in RWC 2015
After their performance against a bumbling Australia, I'm surprised that no one is screaming "Uruguay FTW!" -
Replied To a Post in ATM using Functions in c language I really need help ASAP
> all you need to do is to fill out the missing code No, **you** need to make an honest attempt to fill out the missing code. No code from … -
Replied To a Post in ATM using Functions in c language I really need help ASAP
`printf("Please fill in the boilerplate code provided and one of our human code bots may decide to assist you\n");` -
Replied To a Post in Problem Solving
I'm not sure but I think Dave was the bus driver and Victor ate fish. -
Replied To a Post in Scary webservice
I imagine that that is the entire point of the site, to be one giant PIA. `hxxps://www.daniweb.com/members/logout` -
Replied To a Post in msoffice
What version of MS Office? Do you get the error when trying to open a document? Are you able to launch Word from the Start Menu? -
Replied To a Post in How to count numbers in C ?
> there is wrong, because i can only put one value .. please help That's because you copy/pasted code that is irrelevant to the question from http://pastebin.com/JQeihwdQ -
Replied To a Post in Traffic light
Yes -
Replied To a Post in Runtime abort when using different input file
Shouldn't line 163 - 167 be: std::vector<SwingIdentified>::iterator SwingIter; for (SwingIter= NamedSwings.begin(); SwingIter!=NamedSwings.end(); SwingIter++) { outfile << *SwingIter << std::endl; // <== } -
Replied To a Post in Runtime abort when using different input file
The 5 minute data is only valid for the first 10420 bytes. Thereafter, the data is padded with the following sequence of bytes: 0x09 0x09 0x09 0x09 0x09 0x09 0x09 … -
Replied To a Post in Determining application network usage.
Have a look at https://msdn.microsoft.com/en-us/library/aa394340%28v=vs.85%29.aspx and related example code. -
Replied To a Post in Problem with calling STL algorithm transform
You have too many arguments as indicated. You could use: `transform(theReadMessage.begin(), theReadMessage.end(), theReadMessage.begin(), ::tolower);` Using a lambda: transform(theReadMessage.begin(), theReadMessage.end(), theReadMessage.begin(), [](char ch) { return tolower(ch); }); -
Replied To a Post in taskbar questions
AFAIK, you'll need to include objbase.h and link ole32.lib. -
Replied To a Post in Exception Handling
> I'm using Dev-Cpp 5.11 TDM-GCC 4.9.2. > What do you think about this? That's the latest Orwell build, so that should be fine. -
Replied To a Post in Exception Handling
Are you using the Orwell fork of Dev-c++? http://orwelldevcpp.blogspot.com.au/ If not, then I'd recommend updating. -
Replied To a Post in Array
From the forum rules: **Do provide evidence of having done some work yourself if posting questions from school or work assignments** Post the code that you have written and explain … -
Replied To a Post in Inputting numbers into matrix, please help
You can do away with the temp variable and just have: num[i][j] = rand() % 10; -
Replied To a Post in Missing output in EXE file
[Flush the input stream](https://www.daniweb.com/software-development/cpp/threads/90228/flushing-the-input-stream) after you get the value of X. After outputting the value of CDF, your program needs to pause so that CDF can be read. Format your … -
Replied To a Post in Hi
Welcome :) -
Replied To a Post in C++ Program
Can you think of a method that uses addition? -
Replied To a Post in converting program and functions fromVs2013 to qt
Your borrowed code: https://github.com/andrew-smythe/3d_env/blob/master/tree.cpp How about you start reading some documentation and doing the work yourself. -
Replied To a Post in C++ Win32 API
Create the control with `ES_READONLY` style or send the `EM_SETREADONLY` message to the control. -
Replied To a Post in New Folder Virus
Try scanning the PC with ESET's online scanner. http://www.eset.com/int/home/products/online-scanner/ -
Replied To a Post in *One Word Game*
pyjamas -
Replied To a Post in *One Word Game*
surprisingly -
Replied To a Post in *One Word Game*
enema -
Replied To a Post in *One Word Game*
undergoing
The End.