Posts
 
Reputation
Joined
Last Seen
Ranked #206
Strength to Increase Rep
+8
Strength to Decrease Rep
-2
96% Quality Score
Upvotes Received
155
Posts with Upvotes
127
Upvoting Members
87
Downvotes Received
6
Posts with Downvotes
6
Downvoting Members
4
39 Commented Posts
7 Endorsements
Ranked #260
Ranked #224
~272.92K People Reached
About Me

Extra Short Bio

Interests
§
PC Specs
Not very impressive

344 Posted Topics

Member Avatar for samaru
Member Avatar for Hanz Jude
Member Avatar for TheNewKid

Refer to [this](http://msdn.microsoft.com/en-us/library/windows/desktop/bb787875%28v=vs.85%29.aspx) MSDN article.

Member Avatar for Greg_21
0
577
Member Avatar for Derkarol

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 );

Member Avatar for Derkarol
0
2K
Member Avatar for Xozz

Your FieldNames each have a terminating null, so as the error indicates, one of the names is too long.

Member Avatar for DGPickett
0
268
Member Avatar for user287961
Member Avatar for Sappie

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.

Member Avatar for tinstaafl
0
330
Member Avatar for Sagar_16

At line 60 you declare float temp = 0; Move the declaration to the top of main.

Member Avatar for nullptr
0
153
Member Avatar for kimmy2467
Member Avatar for kouty

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);

Member Avatar for kouty
0
1K
Member Avatar for angbatangprog

`printf("Please fill in the boilerplate code provided and one of our human code bots may decide to assist you\n");`

Member Avatar for Apoorva_2
0
6K
Member Avatar for dukoolsharma
Member Avatar for Vikrant Singhal
-1
565
Member Avatar for amvx86

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?

Member Avatar for rproffitt
0
613
Member Avatar for Yoni_2
Member Avatar for COKEDUDE

Try void replacevalue(char **pinput1) { char string[ ] = "here is the replacement string"; strcpy(*pinput1, string); }

Member Avatar for nullptr
0
2K
Member Avatar for alan.davies

![Capture.JPG](/attachments/large/3/7253ee192d3941478489733db40537af.JPG) Windows 7x64 with Internet Explorer 11 - dead hamburger and overlap.

Member Avatar for Dani
1
4K
Member Avatar for JustinRunyon

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 …

Member Avatar for nullptr
0
250
Member Avatar for paulofficial

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.

Member Avatar for nullptr
0
152
Member Avatar for rproffitt
Member Avatar for HAMMAD_5
Member Avatar for R1S8K
Member Avatar for dongtrien
Member Avatar for Rafin Ishraq

http://www.oracle.com/technetwork/java/javase/downloads/index.html

Member Avatar for scheppy
-4
156
Member Avatar for Addison111
Member Avatar for John_165

> I get value answer 21 which looked like not the smallest integer If you used 10000 instead of 1000 you would get 21.

Member Avatar for rproffitt
0
1K
Member Avatar for vishalonne

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]`

Member Avatar for DIVYANSHI MANGAL
0
1K
Member Avatar for COKEDUDE
Member Avatar for Prathamesh_1
Member Avatar for rubberman
0
497
Member Avatar for zebnoon1
Member Avatar for rproffitt
0
557
Member Avatar for B E
Member Avatar for Joe_32
Member Avatar for thines01
0
404
Member Avatar for anukavi

http://msdn.microsoft.com/en-us/library/windows/desktop/ms706749%28v=vs.85%29.aspx

Member Avatar for Sahar_3
-1
1K
Member Avatar for Noor_7
Member Avatar for happygeek
Member Avatar for happygeek
1
922
Member Avatar for Jhai_1

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.

Member Avatar for Reverend Jim
0
780
Member Avatar for mariam_6

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?

Member Avatar for nullptr
0
185
Member Avatar for gurupts

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).

Member Avatar for Reverend Jim
0
1K
Member Avatar for Frank_19

Show the code you have written and explain any problems that you may be having.

Member Avatar for ddanbe
0
132
Member Avatar for KevinVernon
Member Avatar for Dani

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

Member Avatar for Dani
0
683
Member Avatar for Sherwin_4

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 << …

Member Avatar for Sherwin_4
0
2K
Member Avatar for Mr.M

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));

Member Avatar for Mr.M
0
2K
Member Avatar for diafol

Geez, I just thought that I had suddenly become quite a popular member.

Member Avatar for Dani
0
1K
Member Avatar for diafol

>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 diafol
1
591
Member Avatar for Its_1
Member Avatar for IntegratedTweak
Member Avatar for petersim

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 …

Member Avatar for rproffitt
-1
484
Member Avatar for KiraMuller

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.

Member Avatar for nullptr
0
279
Member Avatar for JOSheaIV
Member Avatar for mnewsome

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 IntegratedTweak
0
370

The End.