Click here to Skip to main content
15,887,449 members

Bugs and Suggestions

   

General discussions, site bug reports and suggestions about the site.

For general questions check out the CodeProject FAQs. To report spam and abuse Head to the Spam and abuse watch. If you wish to report a bug privately, especially those related to security, please email webmaster@codeproject.com

 
GeneralRe: Lost tips&Trick Pin
Dave Kreskowiak9-Jul-17 6:15
mveDave Kreskowiak9-Jul-17 6:15 
AdminRe: Lost tips&Trick PinPopular
Chris Maunder9-Jul-17 5:35
cofounderChris Maunder9-Jul-17 5:35 
GeneralRe: Lost tips&Trick Pin
DaveAuld9-Jul-17 5:47
professionalDaveAuld9-Jul-17 5:47 
JokeRe: Lost tips&Trick Pin
Nelek9-Jul-17 7:57
protectorNelek9-Jul-17 7:57 
GeneralRe: Lost tips&Trick Pin
CodeErgoSum10-Jul-17 19:25
CodeErgoSum10-Jul-17 19:25 
SuggestionThe CodeProject Insider Daily Developer News Newsletter - Missing Last 3 Days Pin
Member 102310997-Jul-17 7:46
professionalMember 102310997-Jul-17 7:46 
GeneralRe: The CodeProject Insider Daily Developer News Newsletter - Missing Last 3 Days Pin
Sean Ewington10-Jul-17 7:41
staffSean Ewington10-Jul-17 7:41 
Bug"Copy code" button not working Pin
OriginalGriff7-Jul-17 5:33
mveOriginalGriff7-Jul-17 5:33 
If you highlight a code block from an article, tip, QA post, or forum then copy it to the clipboard:
C#
/// <summary>
/// Image to reveal as the top is "scratched off"
/// </summary>
private Image _Image = null;
/// <summary>
/// Pen to scratch with - wider reveals more at a time.
/// </summary>
/// <remarks>
/// The colour of this pen *MUST* match the colour used in the Paint event
/// to set the Transparency for the "cover" image.
/// </remarks>
private Pen _ScratchPen = new Pen(Brushes.Red, 5.0F);
/// <summary>
/// Brush to fill the cover image with
/// </summary>
private Brush _CoverBrush = Brushes.LightGray;

It works fine:
C#
/// <summary>
/// Image to reveal as the top is "scratched off"
/// </summary>
private Image _Image = null;
/// <summary>
/// Pen to scratch with - wider reveals more at a time.
/// </summary>
/// <remarks>
/// The colour of this pen *MUST* match the colour used in the Paint event
/// to set the Transparency for the "cover" image.
/// </remarks>
private Pen _ScratchPen = new Pen(Brushes.Red, 5.0F);
/// <summary>
/// Brush to fill the cover image with
/// </summary>
private Brush _CoverBrush = Brushes.LightGray;
If you use the "copy code" button, you get a mess of HTML as well:
HTML
<span class="code-summarycomment">///</span><span class="code-comment"> <span class="code-summarycomment">&lt;</span><span class="code-summarycomment">summary</span><span class="code-summarycomment">&gt;</span>
</span><span class="code-summarycomment">///</span><span class="code-comment"> Image to reveal as the top is "scratched off"
</span><span class="code-summarycomment">///</span><span class="code-comment"> <span class="code-summarycomment">&lt;</span><span class="code-summarycomment">/summary</span><span class="code-summarycomment">&gt;</span>
</span><span class="code-keyword">private</span> Image _Image = <span class="code-keyword">null</span>;
<span class="code-summarycomment">///</span><span class="code-comment"> <span class="code-summarycomment">&lt;</span><span class="code-summarycomment">summary</span><span class="code-summarycomment">&gt;</span>
</span><span class="code-summarycomment">///</span><span class="code-comment"> Pen to scratch with - wider reveals more at a time.
</span><span class="code-summarycomment">///</span><span class="code-comment"> <span class="code-summarycomment">&lt;</span><span class="code-summarycomment">/summary</span><span class="code-summarycomment">&gt;</span>
</span><span class="code-summarycomment">///</span><span class="code-comment"> <span class="code-summarycomment">&lt;</span><span class="code-summarycomment">remarks</span><span class="code-summarycomment">&gt;</span>
</span><span class="code-summarycomment">///</span><span class="code-comment"> The colour of this pen *MUST* match the colour used in the Paint event
</span><span class="code-summarycomment">///</span><span class="code-comment"> to set the Transparency for the "cover" image.
</span><span class="code-summarycomment">///</span><span class="code-comment"> <span class="code-summarycomment">&lt;</span><span class="code-summarycomment">/remarks</span><span class="code-summarycomment">&gt;</span>
</span><span class="code-keyword">private</span> Pen _ScratchPen = <span class="code-keyword">new</span> Pen(Brushes.Red, <span class="code-digit">5</span>.0F);
<span class="code-summarycomment">///</span><span class="code-comment"> <span class="code-summarycomment">&lt;</span><span class="code-summarycomment">summary</span><span class="code-summarycomment">&gt;</span>
</span><span class="code-summarycomment">///</span><span class="code-comment"> Brush to fill the cover image with
</span><span class="code-summarycomment">///</span><span class="code-comment"> <span class="code-summarycomment">&lt;</span><span class="code-summarycomment">/summary</span><span class="code-summarycomment">&gt;</span>
</span><span class="code-keyword">private</span> Brush _CoverBrush = Brushes.LightGray;

Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...
AntiTwitter: @DalekDave is now a follower!

GeneralRe: "Copy code" button not working Pin
Chris Maunder8-Jul-17 10:27
cofounderChris Maunder8-Jul-17 10:27 
GeneralRe: "Copy code" button not working Pin
OriginalGriff8-Jul-17 11:26
mveOriginalGriff8-Jul-17 11:26 
SuggestionForum for excellent open-source resources for .NET ? Pin
BillWoodruff7-Jul-17 2:07
professionalBillWoodruff7-Jul-17 2:07 
SuggestionRe: Forum for excellent open-source resources for .NET ? Pin
Jochen Arndt7-Jul-17 2:29
professionalJochen Arndt7-Jul-17 2:29 
GeneralRe: Forum for excellent open-source resources for .NET ? Pin
BillWoodruff9-Jul-17 4:58
professionalBillWoodruff9-Jul-17 4:58 
GeneralRe: Forum for excellent open-source resources for .NET ? Pin
Ravi Bhavnani9-Jul-17 21:16
professionalRavi Bhavnani9-Jul-17 21:16 
GeneralRe: Forum for excellent open-source resources for .NET ? Pin
BillWoodruff11-Jul-17 22:08
professionalBillWoodruff11-Jul-17 22:08 
QuestionQuestion Removal Pin
Randor 6-Jul-17 8:52
professional Randor 6-Jul-17 8:52 
AnswerRe: Question Removal Pin
User 110609796-Jul-17 8:59
User 110609796-Jul-17 8:59 
GeneralRe: Question Removal Pin
Randor 6-Jul-17 9:14
professional Randor 6-Jul-17 9:14 
GeneralRe: Question Removal Pin
User 110609796-Jul-17 9:24
User 110609796-Jul-17 9:24 
GeneralRe: Question Removal Pin
ZurdoDev7-Jul-17 2:25
professionalZurdoDev7-Jul-17 2:25 
GeneralRe: Question Removal Pin
User 110609797-Jul-17 2:55
User 110609797-Jul-17 2:55 
GeneralRe: Question Removal Pin
ZurdoDev7-Jul-17 2:56
professionalZurdoDev7-Jul-17 2:56 
GeneralRe: Question Removal Pin
User 110609797-Jul-17 3:07
User 110609797-Jul-17 3:07 
GeneralRe: Question Removal Pin
ZurdoDev7-Jul-17 3:09
professionalZurdoDev7-Jul-17 3:09 
GeneralRe: Question Removal Pin
User 110609797-Jul-17 3:13
User 110609797-Jul-17 3:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Flags: FixedAnswered

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.