• Member Avatar for nullptr
    nullptr

    Replied To a Post in Laptop not updating

    Try scanning your PC with [ESET Online Scanner](http://www.eset.com/int/online-scanner-popup/) then Download [Tweaking.Com - Windows Repair Portable](http://www.tweaking.com/files/setups/tweaking.com_windows_repair_aio.zip) to your Desktop and extract the folder from the zip archive. Open the folder and …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Malware "wonderlandads.com' is creating lot of trouble for me..

    You can delete those logs as well as OTL. It would be better if you ran Farbar Recovery Scan Tool. Download [FRST - Farbar Recovery Scan Tool](http://www.bleepingcomputer.com/download/farbar-recovery-scan-tool/) and save it …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Malware "wonderlandads.com' is creating lot of trouble for me..

    Noor, did you upgrade the firmware on your router and are the DNS settings in your router still being changed? If you've not upgraded the firmware, I'd do that first …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Malware "wonderlandads.com' is creating lot of trouble for me..

    I've no idea if upgrading the router firmware would resolve the issue. If you do upgrade then you'd just need to save the SSID, the type of encryption key used …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Malware "wonderlandads.com' is creating lot of trouble for me..

    > Should I change the router password? I'd definitely change the router password. I'll write out some instructions to have a look at the PC you're on. Is it only …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Malware "wonderlandads.com' is creating lot of trouble for me..

    Have you checked your router to see whether the new DNS settings provided by your ISP have been modified? Is access to your router password protected? Are all your other …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Malware "wonderlandads.com' is creating lot of trouble for me..

    Right click on your shortcut to notepad and Run as administrator. Then click on File -> Open and browse to "C:\Windows\System32\drivers\etc\hosts" Add the extra line then Save.
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Malware "wonderlandads.com' is creating lot of trouble for me..

    You should add another line: `127.0.0.1 wonderlandads.com`
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Has Flvto Youtube Converter viruses?

    If it was this - hxxp://www.flvto.biz/youtube-downloader/ - then the alert was likely for PUA (Potentially Unwanted Application) as the installer is bundled with OpenCandy. As long as you were careful …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in a question about Float [Beginner}

    For `S = 1/n`, as 1 and n are both integers you are performing integer division. Assume that n = 4, then the answer is equivalent to asking "How many …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Junction Error

    > Yes, why one directory / file must be deleted. If you mean the link source, it would be so that an empty directory or file can be created with …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Junction Error

    The target directory with files can exist, but the link directory must not initially exist as an on disk directory.
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Junction Error

    To achieve what you are wanting to do, you need to move all the files from `C:\Custom Program Settings\Sublime-Packages` to `C:\Users\<name>\AppData\Roaming\Sublime Text 2\Packages` and then **Delete** `C:\Custom Program Settings\Sublime-Packages`. Once …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Having errors with "no match for 'operator<<' in 'std::cin << n'

    The operator for cin should be `>>` std::cin >> n; std::cin >> x;
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in How to receive and call from dll service

    PsSetCreateProcessNotifyRoutineEx is a kernel mode callback that you would use in a KM driver. Are you developing a driver?
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Understanding byte.Max/MinValue

    As ddanbe pointed out, the byte value is being converted to an integer - BitArray(int32). Effectively what you have written is: BitArray bitArray = new BitArray(255); 255 bits all set …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Anyone Else Seeing DaniWeb Activity Dropping?

    Woj unmasked - https://myspace.com/315853253
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in "Download Protect"

    [AdwCleaner](http://www.bleepingcomputer.com/download/adwcleaner/) should take care of Snapdo and search safe.finder. It requires no installation.
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in "Download Protect"

    Have you tried running Malwarebytes Anti-Malware? There's usually an executable that auto starts with Windows that keeps installing the addon each time it's removed.
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Microsoft virtual wifi - NO DHCP

    Click the properties button, highlight 'Internet Protocol Version 4 (TCP/IPv4)', then click Properties. Make sure that 'Obtain an IP address automatically' is selected.
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in DW API Status

    >Yes, reverted back to the way things were yesterday morning That must be why Firefox was alerting me to an insecure SSL cipher and now it's back to normal.
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Testing pixel colors

    From line 45, you're exceeding the loop bounds, it should be for (int column = 0; column < width; column++) { for (int row = 0; row < height; row++) …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Testing pixel colors

    Change the iteration to for (int row = 0; row < h; row++) { for (int column = 0; column < w; column++) { std::cout << std::hex << (DWORD)GetPixel(hdcSource, column, …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Testing pixel colors

    The only major thing that stands out is the call to `GetDIBits`. Try int GDB = GetDIBits(hdcDest, hbmp, 0, BMI.bmiHeader.biHeight, pPixels, &BMI, DIB_RGB_COLORS);
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Testing pixel colors

    typedef struct tagRGBQUAD { BYTE rgbBlue; BYTE rgbGreen; BYTE rgbRed; BYTE rgbReserved; // must be zero } RGBQUAD; Just mask out the most significant byte. `pPixels[idx] & 0xFFFFFF`
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in C program

    I have no idea as I've not seen your code.
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Testing pixel colors

    Something like: for (int h = 0; h < height; h++) { for (int w = 0; w < width; w++) { // do whatever // pPixels[w + h*width]; } …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Win32 Exception Unhandled

    Try using `this.Controls.Add(ribbon1);`
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in c++win32 - how can i get the X caret on richedit?

    Try EM_LINEINDEX message, specifying `-1` for the `wParam`
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Why daniweb attracts only newbies with no interest to stay in programming

    I think the teachers of these coding classes tell their students "If you have any problems, just copy/paste your homework on Daniweb - the people there really dig that kind …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in WiFi Password Lost

    What exactly are you wanting, the password for the router/modem or the encryption key? As a last resort, you can reset the router or modem to the default factory settings.
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in About Dazah

    My two cents worth for the homepage opening ( a slight rewrite): https://www.dazah.com/ Introducing Dazah, a unique business-oriented social messaging platform designed for the busy professional who works in high …
  • Member Avatar for nullptr
    nullptr

    Marked Solved Status for Inline Code Example Here Inserted

    `Inline Code Example Here` I just noticed a post that contained 'Inline Code Example Here'. This can be reproduced by not selecting any code, then pressing the |>_Inline Code| button. …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Inline Code Example Here Inserted

    Yeah, it would seem so. Thanks :)
  • Member Avatar for nullptr
    nullptr

    Created Inline Code Example Here Inserted

    `Inline Code Example Here` I just noticed a post that contained 'Inline Code Example Here'. This can be reproduced by not selecting any code, then pressing the |>_Inline Code| button. …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in RWC 2015

    > I sincerely hope that Australia get the holy crap beaten out of them by Argentina in the semi. We only have crap, none of which is holy.
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Problem with Code tool

    Checking code tool - please delete.
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Problem with Code tool

    Test, following Dani's directions: LRESULT CALLBACK KeyboardProc(int Code, WPARAM wParam, LPARAM lParam) { if(lParam & 0x40000000) { GetKeyNameText(lParam, szKey, 32); SendMessage(hWndMain, WM_USER, 0, 0); } return CallNextHookEx(hHook, Code, wParam, lParam); …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Problem with Code tool

    Yes that was pasted straight into the Code editor and seemed OK.
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Problem with Code tool

    I've just noticed some anomalies when I try to paste code that aren't consistent with how things previously operated. I can't recall exactly what it was, but I ended up …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in window 10 is good or not?

    It seems you can disable the suggested apps/ads - http://www.zdnet.com/article/how-to-disable-windows-10-start-menu-ads/ Edit. I just noticed that Rev Jim mentioned the opt out aspect.
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in else without a previous if error

    Here's your code, formatted and with curly braces as ddanbe explained. #include <stdio.h> int main(void) { int w; double v, s, t; printf("Dieses Programm berechnet Geschwindigkeiten, Wegdifferenzen und\n" "Zeitdifferenzen fuer …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in window 10 is good or not?

    Supposedly, the telemetry data gathered is used to personalize your experience and provide ads "specially tailored to you". If windows was free, I could understand some advertising, but not for …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Kill a website remotely

    > Hi all i already got a solution thanks for all the input. Cheers Did you go with a cruise missile perchance?
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in C++ - How resize a window console buffer?

    See http://www.cplusplus.com/forum/windows/121444/ post #5. :)
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Some things I miss about the old layout

    My main issue is the with navigating to a page (e.g page 3) of a thread. I either have to scroll to the bottom of the first page to be …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in Obfuscate my EXE program compiled with pyinstaller

    > My exe file contain my mail and password Why does it need to contain your password? Isn't that just asking for trouble?
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in printf not behaving as expected

    From the [GNU C library](http://www.gnu.org/software/libc/manual/html_node/Other-Output-Conversions.html): The ‘%m’ conversion prints the string corresponding to the error code in errno.
  • Member Avatar for nullptr
    nullptr

    Marked Solved Status for 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 …
  • Member Avatar for nullptr
    nullptr

    Replied To a Post in C++

    From what I see at a glance, you've declared a `class G_master` Above that you have variables with the same names as variables and functions in your class. Many of …

The End.