Click here to Skip to main content
15,909,896 members
Home / Discussions / C#
   

C#

 
GeneralRe: Hacking Pin
20212a3-Mar-21 1:07
20212a3-Mar-21 1:07 
GeneralRe: Hacking Pin
trønderen2-Mar-21 11:45
trønderen2-Mar-21 11:45 
QuestionRe: Hacking Pin
Eddy Vluggen2-Mar-21 12:50
professionalEddy Vluggen2-Mar-21 12:50 
AnswerRe: Hacking Pin
trønderen2-Mar-21 16:29
trønderen2-Mar-21 16:29 
GeneralRe: Hacking Pin
Eddy Vluggen2-Mar-21 16:48
professionalEddy Vluggen2-Mar-21 16:48 
GeneralRe: Hacking Pin
trønderen2-Mar-21 17:38
trønderen2-Mar-21 17:38 
GeneralRe: Hacking Pin
Eddy Vluggen6-Mar-21 10:10
professionalEddy Vluggen6-Mar-21 10:10 
GeneralRe: Hacking Pin
Mycroft Holmes1-Mar-21 11:02
professionalMycroft Holmes1-Mar-21 11:02 
GeneralRe: Hacking Pin
Pete O'Hanlon3-Mar-21 2:03
mvePete O'Hanlon3-Mar-21 2:03 
GeneralRe: Hacking Pin
Eddy Vluggen2-Mar-21 9:56
professionalEddy Vluggen2-Mar-21 9:56 
GeneralRe: Hacking Pin
Gerry Schmitz2-Mar-21 18:29
mveGerry Schmitz2-Mar-21 18:29 
QuestionKnight's tour, recursion, dynamic programming, optimization Pin
Kari Trust28-Feb-21 14:30
Kari Trust28-Feb-21 14:30 
AnswerRe: Knight's tour, recursion, dynamic programming, optimization Pin
trønderen28-Feb-21 15:59
trønderen28-Feb-21 15:59 
GeneralRe: Knight's tour, recursion, dynamic programming, optimization Pin
Kari Trust2-Mar-21 2:04
Kari Trust2-Mar-21 2:04 
GeneralRe: Knight's tour, recursion, dynamic programming, optimization Pin
trønderen2-Mar-21 8:53
trønderen2-Mar-21 8:53 
QuestionApplication crashes suddenly without any message [Solved] Pin
Alex Dunlop26-Feb-21 22:05
Alex Dunlop26-Feb-21 22:05 
AnswerRe: Application crashes suddenly without any message Pin
BillWoodruff26-Feb-21 22:23
professionalBillWoodruff26-Feb-21 22:23 
GeneralRe: Application crashes suddenly without any message Pin
Alex Dunlop26-Feb-21 22:29
Alex Dunlop26-Feb-21 22:29 
GeneralRe: Application crashes suddenly without any message Pin
OriginalGriff26-Feb-21 22:35
mveOriginalGriff26-Feb-21 22:35 
AnswerRe: Application crashes suddenly without any message Pin
OriginalGriff26-Feb-21 22:32
mveOriginalGriff26-Feb-21 22:32 
Read the error message - it gives you a lot of information.
Exception Info: System.AccessViolationException
That's not too specific, so you need further information.
So look firsther, and you get a stack trace: it starts with the code that generated the exception, and then goes back up through the call list.
And it's something to do with painting in a label:
at System.Windows.Forms.Label.OnPaint(System.Windows.Forms.PaintEventArgs)

So the most likely culprit is your "special Font", which we can't see.
Start by replacing your font with a "normal" one and see if the problem goes away. If it does, then something you are drawing either doesn't exist in the font, or is badly "described" leading to a major crash.
So add logging to the app to find out what exactly is being shown when it fails, and try that exact text on your dev computer to see if you can track down exactly what is causing the problem.

Sorry, but we can't do any of that for you!
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!

GeneralRe: Application crashes suddenly without any message Pin
Alex Dunlop26-Feb-21 23:01
Alex Dunlop26-Feb-21 23:01 
QuestionHow to reset TextBoxes at once? [Solved] Pin
Alex Dunlop25-Feb-21 7:06
Alex Dunlop25-Feb-21 7:06 
AnswerRe: How to reset TextBoxes at once? Pin
Gerry Schmitz25-Feb-21 8:42
mveGerry Schmitz25-Feb-21 8:42 
GeneralRe: How to reset TextBoxes at once? Pin
OriginalGriff25-Feb-21 8:51
mveOriginalGriff25-Feb-21 8:51 
GeneralRe: How to reset TextBoxes at once? Pin
Gerry Schmitz25-Feb-21 9:17
mveGerry Schmitz25-Feb-21 9:17 

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

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