Click here to Skip to main content
15,893,588 members
Home / Discussions / C#
   

C#

 
GeneralRe: UnhandledException Pin
OriginalGriff14-Oct-12 5:12
mveOriginalGriff14-Oct-12 5:12 
GeneralRe: UnhandledException Pin
Hamid_RT14-Oct-12 5:25
Hamid_RT14-Oct-12 5:25 
GeneralRe: UnhandledException Pin
jschell14-Oct-12 6:59
jschell14-Oct-12 6:59 
AnswerRe: UnhandledException Pin
Eddy Vluggen14-Oct-12 3:50
professionalEddy Vluggen14-Oct-12 3:50 
GeneralRe: UnhandledException Pin
Hamid_RT14-Oct-12 4:17
Hamid_RT14-Oct-12 4:17 
GeneralRe: UnhandledException Pin
Eddy Vluggen14-Oct-12 4:22
professionalEddy Vluggen14-Oct-12 4:22 
GeneralRe: UnhandledException Pin
Hamid_RT14-Oct-12 5:08
Hamid_RT14-Oct-12 5:08 
GeneralRe: UnhandledException Pin
Eddy Vluggen14-Oct-12 8:27
professionalEddy Vluggen14-Oct-12 8:27 
QuestionError in Messagebox solution Pin
Saridakis Manolis13-Oct-12 22:56
Saridakis Manolis13-Oct-12 22:56 
AnswerRe: Error in Messagebox solution Pin
Eddy Vluggen14-Oct-12 0:40
professionalEddy Vluggen14-Oct-12 0:40 
AnswerRe: Error in Messagebox solution Pin
Dave Kreskowiak14-Oct-12 3:58
mveDave Kreskowiak14-Oct-12 3:58 
QuestionProblem with OpenCvSharp Pin
Daniel Heinsohn13-Oct-12 11:54
Daniel Heinsohn13-Oct-12 11:54 
AnswerRe: Problem with OpenCvSharp Pin
Eddy Vluggen14-Oct-12 0:40
professionalEddy Vluggen14-Oct-12 0:40 
GeneralRe: Problem with OpenCvSharp Pin
Daniel Heinsohn14-Oct-12 14:01
Daniel Heinsohn14-Oct-12 14:01 
QuestionRe: Problem with OpenCvSharp Pin
Eddy Vluggen15-Oct-12 0:08
professionalEddy Vluggen15-Oct-12 0:08 
Questionwant to see 1page when MDI use. Pin
Subhajit00113-Oct-12 6:15
Subhajit00113-Oct-12 6:15 
AnswerRe: want to see 1page when MDI use. Pin
Dave Kreskowiak13-Oct-12 7:02
mveDave Kreskowiak13-Oct-12 7:02 
QuestionDrawing a 3D polygon from coordinates (KML) Pin
tokano13-Oct-12 5:20
tokano13-Oct-12 5:20 
AnswerRe: Drawing a 3D polygon from coordinates (KML) Pin
Dave Kreskowiak13-Oct-12 7:07
mveDave Kreskowiak13-Oct-12 7:07 
GeneralRe: Drawing a 3D polygon from coordinates (KML) Pin
tokano13-Oct-12 12:10
tokano13-Oct-12 12:10 
GeneralRe: Drawing a 3D polygon from coordinates (KML) Pin
Dave Kreskowiak13-Oct-12 12:39
mveDave Kreskowiak13-Oct-12 12:39 
QuestionHow to Display fingerprint images from fingerprint Device ? Pin
osama_hagrass13-Oct-12 5:18
osama_hagrass13-Oct-12 5:18 
AnswerRe: How to Display fingerprint images from fingerprint Device ? Pin
Dave Kreskowiak13-Oct-12 6:59
mveDave Kreskowiak13-Oct-12 6:59 
Questioncalling a non static method from a static method in a dll class Pin
Fred 3413-Oct-12 0:35
Fred 3413-Oct-12 0:35 
AnswerRe: calling a non static method from a static method in a dll class Pin
n.podbielski13-Oct-12 1:49
n.podbielski13-Oct-12 1:49 
You cannot call TrzInitialize from static method.
Its common sense. Since Invoke.TrzStart is static and you have 10 instances if Invoke class which of them you want to use to call TrzInitialize?
You have to explicilty set that instance like

C#
public static void TrzStart(Invoke instance)
    {
       instace.TrzInitialize();
    }

No more Mister Nice Guy... >: |

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.