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

C#

 
QuestionHow to pass user defined oracle type as argument to a stored procedure using c# Pin
Jayakanthan Devarajan2-Jul-07 5:27
Jayakanthan Devarajan2-Jul-07 5:27 
QuestionMDI Application- Child form to query DB only once. Pin
atulagarwal562-Jul-07 4:46
atulagarwal562-Jul-07 4:46 
AnswerRe: MDI Application- Child form to query DB only once. Pin
Not Active2-Jul-07 4:54
mentorNot Active2-Jul-07 4:54 
AnswerRe: MDI Application- Child form to query DB only once. Pin
originSH2-Jul-07 5:05
originSH2-Jul-07 5:05 
QuestionWebsite Search Functionality Pin
dboy2212-Jul-07 3:27
dboy2212-Jul-07 3:27 
AnswerRe: Website Search Functionality Pin
Ed.Poore2-Jul-07 3:43
Ed.Poore2-Jul-07 3:43 
QuestionApplication freezes even though using a thread Pin
Hampus@foi2-Jul-07 3:26
Hampus@foi2-Jul-07 3:26 
AnswerRe: Application freezes even though using a thread Pin
Luc Pattyn2-Jul-07 3:36
sitebuilderLuc Pattyn2-Jul-07 3:36 
Hi,

First of all I assume it is working ?
And I hope the DLL is not doing some GUI stuff of its own.

I guess you only have the DLL, that is not the source, nor a technical description.

You could have a look at the CPU load it creates: open Task Manager, Performance tab
and watch the curve while trying to read/write the GSM. If its close to 100% then
they probably have a busy loop, which is harming your main thread's behavior.

If so, you may try to set a lower priority for that thread;
gsmThread.Priority=ThreadPriority.BelowNormal;
that should solve the GUI part, but may cause the GSM DLL to malfunction...

If CPU load isnt high, they somehow execute (part of) their stuff on the main thread anyhow,
and your thread is pointless.

Smile | :)


GeneralRe: Application freezes even though using a thread Pin
Hampus@foi2-Jul-07 3:57
Hampus@foi2-Jul-07 3:57 
GeneralRe: Application freezes even though using a thread Pin
Luc Pattyn2-Jul-07 4:09
sitebuilderLuc Pattyn2-Jul-07 4:09 
GeneralRe: Application freezes even though using a thread Pin
Hampus@foi2-Jul-07 4:13
Hampus@foi2-Jul-07 4:13 
GeneralRe: Application freezes even though using a thread Pin
Luc Pattyn2-Jul-07 4:24
sitebuilderLuc Pattyn2-Jul-07 4:24 
GeneralRe: Application freezes even though using a thread Pin
Hampus@foi2-Jul-07 23:45
Hampus@foi2-Jul-07 23:45 
GeneralRe: Application freezes even though using a thread Pin
led mike2-Jul-07 4:34
led mike2-Jul-07 4:34 
QuestionC#,CsGL,Texture,Help Pin
foxch2-Jul-07 3:21
foxch2-Jul-07 3:21 
AnswerRe: C#,CsGL,Texture,Help Pin
leppie2-Jul-07 3:47
leppie2-Jul-07 3:47 
AnswerRe: C#,CsGL,Texture,Help Pin
Luc Pattyn2-Jul-07 3:52
sitebuilderLuc Pattyn2-Jul-07 3:52 
GeneralRe: C#,CsGL,Texture,Help Pin
foxch2-Jul-07 4:29
foxch2-Jul-07 4:29 
GeneralRe: C#,CsGL,Texture,Help Pin
foxch2-Jul-07 4:51
foxch2-Jul-07 4:51 
Questionmaximum number of methods supported in C# class Pin
vytheese2-Jul-07 3:18
professionalvytheese2-Jul-07 3:18 
AnswerRe: maximum number of methods supported in C# class Pin
Sathesh Sakthivel2-Jul-07 3:21
Sathesh Sakthivel2-Jul-07 3:21 
GeneralRe: maximum number of methods supported in C# class Pin
Colin Angus Mackay2-Jul-07 3:34
Colin Angus Mackay2-Jul-07 3:34 
GeneralRe: maximum number of methods supported in C# class Pin
vytheese2-Jul-07 3:37
professionalvytheese2-Jul-07 3:37 
GeneralRe: maximum number of methods supported in C# class Pin
Dan Neely2-Jul-07 5:14
Dan Neely2-Jul-07 5:14 
GeneralRe: maximum number of methods supported in C# class Pin
vytheese2-Jul-07 5:23
professionalvytheese2-Jul-07 5:23 

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.