Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #44.3K
~4K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

4 Posted Topics

Member Avatar for Miguel Nicholas

To skip the initial text, you can modify your loop as follows: int x = 0; bool beep = true; while (hello[x] != '\0') { cout << hello[x]; if (beep && hello[x] != ' ' && hello[x] != '\n') Beep(950, 50); x++; if (GetAsyncKeyState(VK_ESCAPE)) beep = false; // stop the …

Member Avatar for kidspointdotin
4
3K
Member Avatar for Skate

You are not showing your php code so it is difficult to track the error. The most probable cause is that you are using a variable named $s in your code and the URL also contains s=Search, so you have a conflict between what is posted in the URL and …

Member Avatar for amyuni
0
73
Member Avatar for alle

cursfont.lfWidth = FONTSIZE; should also be changed to cursfont.lfWidth = 0; Your font will look either condensed or stretched if the value you set in lfWidth does not match the average character width of that font.

Member Avatar for amyuni
0
582
Member Avatar for complete

You can use the TextWrapping attribute to configure the way a TextBlock handles text wrapping. The default value is NoWrap, you need to change that to Wrap: <TextBlock Text="This text will wrap automatically." Width="100" TextWrapping="Wrap" />

Member Avatar for amyuni
0
140

The End.