-
Replied To a Post in Dog Ears
One of my dogs had an ear infection and the odour was exactly as you've described. The only treatment was with antibiotics. These infections can cause a dog an awful … -
Replied To a Post in NTFS format specs needed
For sources, just google for linux ntfs source code, or look at the source for any linux distro. -
Replied To a Post in binary search tree ;help me
I'm about to go to bed, so I've not commented much of the code. You also need to write a function to free the memory used by each node. Here's … -
Replied To a Post in c
Do you have a question regarding any difficulties? -
Replied To a Post in admistrator key
See if you can get a hold of the Windows 8 "Use now and serve me a subpoena later" edition. -
Replied To a Post in Spambot Problem
Thank you gerbil for providing Lynn with that information. > I go on to these sites, get more viruses and no explanation. nice. I was called away on a large … -
Replied To a Post in Spambot Problem
Rogue Killer is only showing two false positives. Download [TDSSKiller](http://support.kaspersky.com/downloads/utils/tdsskiller.exe) and run it. Once it has started, click on 'Change parameters', leave the default settings for 'Object to scan' and … -
Replied To a Post in Spambot Problem
Both links give me a 404 page not found. Just paste the Rogue Killer log into a reply. Download [OTL](http://www.bleepingcomputer.com/download/otl/dl/93/). Just double click to run. In its settings, toggle Output … -
Replied To a Post in Base Conversion
AC23 does equal -21469 when the size of an integer is only 16 bits. Any value from 0x8000 to 0xFFFF will have its most significant bit set, meaning it will … -
Replied To a Post in Spambot Problem
What operating system are you running and is it 32 or 64 bit? What anti-virus is installed? To get started, download and install [Malwarebytes Anti-Malware](http://downloads.malwarebytes.org/mbam-download.php), let it update the database, … -
Replied To a Post in Base Conversion
From the screen shot you posted above, it appears that the size of an unsigned long is only 16 bits (2 bytes) for the Turbo compiler you have. Therefore, when … -
Replied To a Post in Base Conversion
Comment it out to make sure that it fixes the display problem. If everything is OK, then delete it if you like. -
Replied To a Post in Base Conversion
Comment out line 123: `printf("%c\n", hex16[i16]);` -
Replied To a Post in Base Conversion
Follow Schol-R-Lea's advice regarding fixing the conversion functions. For the code you posted above, remove the do while loop from `void Screen_Header()` and simplify it to: void Screen_Header() { clrscr(); … -
Replied To a Post in Bad Grammar
My contribution: The lady played the piano with broken legs. -
Replied To a Post in QUESTION
@Solomon bekele, do not hijack someone elses thread. Please start your own thread and provide the code you have written so far. @neyoibarra, have a look at the functions referenced … -
Replied To a Post in determining whether a string of parentheses is balanced or not
It should be `itemtype::itemtype()` (case sensitive) -
Replied To a Post in BACKSPACE PRob
Here's some code I threw together that demonstrates what you're looking to do. int main() { using std::cout; using std::endl; using std::cin; const int bufsize = 100; const int max_pwd … -
Replied To a Post in SendInput API (math)
Are you calling SendInput like this: int screen_x = GetSystemMetrics( SM_CXVIRTUALSCREEN ); int screen_y = GetSystemMetrics( SM_CYVIRTUALSCREEN ); INPUT input = {0}; input.type = INPUT_MOUSE; input.mi.dx = (x * 65535) … -
Replied To a Post in how can I get hp deskjet2280 sofeware install on my window 7-10 machine
Download from http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=al-74850-1&cc=au&dlc=en&lc=en&os=4063&product=3390947&sw_lang= -
Replied To a Post in Tabs opening in Firefox by themselves hunh?
Try running scans with [AdwCleaner](http://www.bleepingcomputer.com/download/adwcleaner/dl/125/) and [Junkware Removal Tool](http://www.bleepingcomputer.com/download/junkware-removal-tool/dl/131/). Post back if these don't get rid of it. -
Replied To a Post in Virus has disabled Microsoft installer
Go to %windir%\logs\cbs\cbs.log and see if you can copy/paste the log to your desktop. If successful try again with command: findstr /c:"[SR] Cannot" "%userprofile%\Desktop\cbs.log" >"%userprofile%\Desktop\sfcdetails.txt" -
Replied To a Post in Virus has disabled Microsoft installer
It's likely that MSE accessed the file, blocking you from reading it. Try temporarily disabling MSE protection, then open a new elevated cmd prompt and try again. -
Replied To a Post in Virus has disabled Microsoft installer
> And the command prompt said corrupt files found and fixed no errors. Open an elevated command prompt as before and paste in the following: findstr /c:"[SR] Cannot" %windir%\logs\cbs\cbs.log >"%userprofile%\Desktop\sfcdetails.txt" … -
Replied To a Post in Virus has disabled Microsoft installer
The latest Java JRE version is 7 Update 45, uninstall all older versions from Programs and Features. Java 7 Update 25 Java 7 Update 40 Download the updated version (if … -
Replied To a Post in Virus has disabled Microsoft installer
There's a bit of junk to remove and outdated java to uninstall. Also Skype seems to be corrupted. Download [OTL](http://www.bleepingcomputer.com/download/otl/dl/93/) and save it to your desktop. Click on Run Scan. … -
Stopped Watching Virus has disabled Microsoft installer
I got a virus that turned off Microsoft Essentials and prevented me from starting it. I tried getting other programs to remove it but i believe that the virus also … -
Replied To a Post in Virus has disabled Microsoft installer
Just click on the paperclip in the toolbar and attach the DDS logs. -
Replied To a Post in Virus has disabled Microsoft installer
Have you run the scans with JRT and DDS? > Running services, microsoft management console stops responding. I'll look at this once I see your logs. -
Began Watching Virus has disabled Microsoft installer
I got a virus that turned off Microsoft Essentials and prevented me from starting it. I tried getting other programs to remove it but i believe that the virus also … -
Replied To a Post in Virus has disabled Microsoft installer
> it tells me to make sure windows is up to date and I have no idea where to update it since I cant seem to from my computer. Do … -
Replied To a Post in Virus has disabled Microsoft installer
Re-scan with RogueKiller and have it remove everything except: [HJ SMENU][PUM] HKCU[...]\Advanced : Start_ShowMyPics (0) -> FOUND [HJ SMENU][PUM] HKCU[...]\Advanced : Start_ShowMyMusic (0) -> FOUND [HJ DESK][PUM] HKLM[...]\NewStartPanel : {59031a47-3f72-44a7-89c5-5595fe6b30ee} … -
Replied To a Post in How is the weather today in your country?
Warm today and hotter tomorrow, around 35°C in Sydney Australia. -
Replied To a Post in ++ sign and -- sign
Read [this](http://en.cppreference.com/w/cpp/language/operator_incdec). -
Replied To a Post in LongMonthNames in Delphi XE3 and XE4
Try using `FormatSettings.LongMonthNames[12]`. I assume you declared S as a String. -
Replied To a Post in Virus has disabled Microsoft installer
This sounds like a ZeroAccess infection. Run a scan with RogueKiller and post the log file. For 32 bit OS - http://www.adlice.com/softs/roguekiller/RogueKiller.exe For 64 bit OS - http://www.adlice.com/softs/roguekiller/RogueKillerX64.exe Also post … -
Replied To a Post in Substring Issue
Would something like the following fit the requirements? std::string str = "455454554"; std::cout << "*-" << str.substr(str.size() - 4, std::string::npos) << std::endl; -
Replied To a Post in help with iterator & array
> Are you guessing? > Check the op's code before you comment. goto line 12-16. What do you see?... > > Also you provided nothing new and no solution to … -
Replied To a Post in how print void pointer to string?
`cout << *static_cast<int*>(test);`, in what way doesn't this print the int value "in a string way"? > imagine that int is 200, i want print 200, but in a string … -
Replied To a Post in help with iterator & array
`for_each(ptrList.begin(),ptrList.end(),[](int *c){ cout << *c-1;});` It should just be `cout << *c`, otherwise it's subtracting 1 from each value. ie. -1, 9, 19 etc for_each(ptrList.begin(), ptrList.end(), [](int *c){ cout << … -
Replied To a Post in help with iterator & array
At line 12 you've declared an iterator: `vector<int *>::iterator itr = ptrList.begin();` So just use it to iterate through the vector. vector<int *>::iterator itr = ptrList.begin(); for( itr; itr < … -
Replied To a Post in iterator and overloading
Line 17: `cout << *itr << endl;` *itr is of type Integer, so what you want is the value member of class Integer `cout << static_cast<Integer>(*itr).value << endl;`