Click here to Skip to main content
15,905,682 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: i cant setup visual studio..?strange problem.. Pin
Vasudevan Deepak Kumar15-Jun-07 2:56
Vasudevan Deepak Kumar15-Jun-07 2:56 
QuestionHow can i solve this? Pin
$uresh $hanmugam12-Jun-07 23:59
$uresh $hanmugam12-Jun-07 23:59 
AnswerRe: How can i solve this? Pin
Fatbuddha 113-Jun-07 2:27
Fatbuddha 113-Jun-07 2:27 
AnswerRe: How can i solve this? Pin
Dave Kreskowiak13-Jun-07 3:56
mveDave Kreskowiak13-Jun-07 3:56 
AnswerRe: How can i solve this? Pin
Christian Graus14-Jun-07 11:21
protectorChristian Graus14-Jun-07 11:21 
QuestionDoes .Net have anything like COM standalone server? Pin
Shao Voon Wong12-Jun-07 20:47
mvaShao Voon Wong12-Jun-07 20:47 
AnswerRe: Does .Net have anything like COM standalone server? Pin
Pete O'Hanlon13-Jun-07 2:15
mvePete O'Hanlon13-Jun-07 2:15 
GeneralRe: Does .Net have anything like COM standalone server? Pin
Shao Voon Wong13-Jun-07 15:33
mvaShao Voon Wong13-Jun-07 15:33 
GeneralRe: Does .Net have anything like COM standalone server? Pin
Not Active13-Jun-07 17:01
mentorNot Active13-Jun-07 17:01 
Questionvisual studio 2005 with framework 1.1 Pin
xiaowenjie12-Jun-07 19:59
xiaowenjie12-Jun-07 19:59 
AnswerRe: visual studio 2005 with framework 1.1 Pin
szukuro12-Jun-07 22:11
szukuro12-Jun-07 22:11 
AnswerRe: visual studio 2005 with framework 1.1 Pin
Manas Bhardwaj13-Jun-07 0:51
professionalManas Bhardwaj13-Jun-07 0:51 
AnswerRe: visual studio 2005 with framework 1.1 Pin
DavidNohejl13-Jun-07 1:07
DavidNohejl13-Jun-07 1:07 
AnswerRe: visual studio 2005 with framework 1.1 Pin
originSH13-Jun-07 5:18
originSH13-Jun-07 5:18 
AnswerRe: visual studio 2005 with framework 1.1 Pin
Vasudevan Deepak Kumar15-Jun-07 3:05
Vasudevan Deepak Kumar15-Jun-07 3:05 
QuestionWeird System.BadImageFormatException Pin
Vaibhav Gawali12-Jun-07 19:26
Vaibhav Gawali12-Jun-07 19:26 
QuestionResizing bitonal bitmap image losing quality. Pin
vikram srirangam12-Jun-07 19:08
vikram srirangam12-Jun-07 19:08 
AnswerRe: Resizing bitonal bitmap image losing quality. Pin
Vasudevan Deepak Kumar15-Jun-07 3:07
Vasudevan Deepak Kumar15-Jun-07 3:07 
AnswerRe: Resizing bitonal bitmap image losing quality. Pin
Vasudevan Deepak Kumar15-Jun-07 3:08
Vasudevan Deepak Kumar15-Jun-07 3:08 
QuestionShow dividing lines between subroutines in text editor Pin
B_miller12-Jun-07 5:09
B_miller12-Jun-07 5:09 
AnswerRe: Show dividing lines between subroutines in text editor Pin
Mike Dimmick12-Jun-07 5:23
Mike Dimmick12-Jun-07 5:23 
QuestionBeginInvoke in multi-processor machine Pin
Adam_contel12-Jun-07 5:06
Adam_contel12-Jun-07 5:06 
AnswerRe: BeginInvoke in multi-processor machine Pin
Luc Pattyn12-Jun-07 5:31
sitebuilderLuc Pattyn12-Jun-07 5:31 
AnswerRe: BeginInvoke in multi-processor machine Pin
Robert Rohde13-Jun-07 19:31
Robert Rohde13-Jun-07 19:31 
Hi,

your usage of BeginInvoke doesn't say that your log method is only called by on thread at a time. You have to lock it instead:
'class variable
Private objMyLock As Object = New Object()

Public Sub LogSafe()
   SyncLock objMyLock
      'Do your logging here
      'Once one thread has passed SyncLock all next threads
      'will stop there until this thread has exited the block.
   End SyncLock
End Sub



GeneralRe: BeginInvoke in multi-processor machine Pin
Adam_contel13-Jun-07 19:45
Adam_contel13-Jun-07 19:45 

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.