- Strength to Increase Rep
- +8
- Strength to Decrease Rep
- -2
- Upvotes Received
- 155
- Posts with Upvotes
- 127
- Upvoting Members
- 87
- Downvotes Received
- 6
- Posts with Downvotes
- 6
- Downvoting Members
- 4
Extra Short Bio
- Interests
- §
- PC Specs
- Not very impressive
344 Posted Topics
Re: Straight after line 49, flush the input stream. | |
Re: Refer to [this](http://msdn.microsoft.com/en-us/library/windows/desktop/bb787875%28v=vs.85%29.aspx) MSDN article. | |
Re: I'll comment the code, I gather that the RegCreateKeyEx call succeeds. lReg = RegSetValueEx( hKeyp, L"ProxyEnable", NULL, REG_SZ, (LPBYTE)&value, // where is the value? sizeof(value) // for a REG_SZ this should be the string length in bytes including the terminating null ); | |
Re: Your FieldNames each have a terminating null, so as the error indicates, one of the names is too long. | |
Re: on line 21, remove **main.** that comes after the semicolon. | |
Re: Try passing a reference in your comparison function: bool CompareWorkshops(const Workshops &W1, const Workshops &W2) If that doesn't work, I'd need to see more of the code. You should also try stepping through the code in the debugger. | |
Re: At line 60 you declare float temp = 0; Move the declaration to the top of main. | |
Re: Check your spelling. You have **crt** and **ctr** | |
Re: In line 21, you are printing the string 'y' as an integer (%d). Change it to %s as follows printf("My first name is %s \n my last name is %s \n and I am %d years old\n", x, y, z); | |
Re: `printf("Please fill in the boilerplate code provided and one of our human code bots may decide to assist you\n");` | |
Re: https://www.programiz.com/python-programming/operators#comparison | |
Re: My preferred timer method is described [here](https://docs.microsoft.com/en-us/windows/desktop/sync/using-timer-queues). What time span are you looking at to check for open windows? | |
Re: std::to_string((uintptr_t)healthDecAddress) | |
Re: Try void replacevalue(char **pinput1) { char string[ ] = "here is the replacement string"; strcpy(*pinput1, string); } | |
Re:  Windows 7x64 with Internet Explorer 11 - dead hamburger and overlap. | |
Re: Something like the following would be a start. int main(void) { int key = 3; int c; while ((c = getchar()) != '\n') { if (isalpha(c)) { c = tolower(c) + key; if (c > 'z') c -= 26; // c = c - 26 } putchar(c); } putchar('\n'); return … | |
Re: No one here is going to write the code for the assignment that you copy/pasted. Please provide the code that you have written and explain where you are having a problem; that way we'll be able to assist you. | |
Re: Attached gif image via Firefox | |
| |
Re: In MS Visual Studio you could use: `map_buffer |= 0xffULL << 32; ` | |
Re: Check your spelling on line 4, it should be `WM_NOTIFY` | |
Re: http://www.oracle.com/technetwork/java/javase/downloads/index.html | |
Re: What does the call to `SetDllDirectory` return? | |
Re: > I get value answer 21 which looked like not the smallest integer If you used 10000 instead of 1000 you would get 21. | |
Re: Using modular arithmetic as already suggested by ken, work out what expressions need to be evaluated in order to produce an output of `arr[0][0] arr[0][2] arr[1][1] arr[2][0] arr[2][2]` | |
Re: I see 511 lines of code that couldn't possibly compile. You have `prinf `not `printf` | |
Re: Have a look at Inno Setup http://www.jrsoftware.org/isinfo.php | |
Re: Have you looked for your music in the windows.old folder? | |
Re: Try float amount = 1886.25; int cents =(int)(amount*100) % 100; | |
Re: http://msdn.microsoft.com/en-us/library/windows/desktop/ms706749%28v=vs.85%29.aspx | |
Re: You should add another line: `127.0.0.1 wonderlandads.com` | |
Re: https://support.microsoft.com/en-us/help/927477/ lol, DW hates all links. | |
Re: Is this the pattern? * * * * * * * * * * * * If it is, post what code you have written in trying to solve your task. We are here to help, not to do your homework. | |
Re: What code have you written to solve your homework? What problems are you having? Break the problem up into smaller pieces. How would you take input for 2 integers? How would you determine whether the 2nd integer is a multiple of the 1st? | |
Re: How to [Create a Standard Windows PE Rescue Environment](http://reflect.macrium.com//help/v5/How_to/Rescue/Create_a_Standard_Windows_PE_Rescue_Environment.htm). | |
Re: Show the code you have written and explain any problems that you may be having. | |
| |
Re: The blue dropdown navigation menu disappears when I log in. Using FF based browser and Win 7. edit: it was a bug caused by Greasemonkey | |
Re: What does the function next return if `n <= 1`? Have it return 0 and then you can test for zero in your count loop. Something like: void hailstone_Sequence(int n) { int count, value = n; for (count = 0; ; count++) { if (value <= 0) break; std::cout << … | |
Re: Your `lphService` variable is defined as a null pointer so it's not possible to return a handle for the service in the call to WFSOpen(...) Either allocate memory dynamically for `lphService` or change the definition to: HSERVICE hService = NULL; ~~ hResult = (WFSOpen(szLogicalName,WFS_DEFAULT_HAPP,"Epson Print",WFS_TRACE_NONE,TWO_MINUTES,RECOGNISED_VERSIONS,&SvcVersion,&SpiVersion,&hService)); | |
![]() | Re: Geez, I just thought that I had suddenly become quite a popular member. |
![]() | Re: >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. ![]() |
Re: Hooray! :) | |
Re: I Installed Windows 7 and happily buried XP. Don't miss it at all. | |
Re: 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 run Repair_Windows.exe. Select the Repairs tab and then click on the 'Open Repairs' button. Select the following Repairs: * 03 … | |
Re: 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 during the installation and opted out of any other software you were offered, then you have nothing to worry about. | |
Re: Woj unmasked - https://myspace.com/315853253 | |
Re: 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. |
The End.