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

.NET (Core and Framework)

 
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 
QuestionVc++ .NET? Pin
$uresh $hanmugam12-Jun-07 3:54
$uresh $hanmugam12-Jun-07 3:54 
AnswerRe: Vc++ .NET? Pin
Kevin McFarlane12-Jun-07 6:43
Kevin McFarlane12-Jun-07 6:43 
GeneralRe: Vc++ .NET? Pin
$uresh $hanmugam12-Jun-07 21:49
$uresh $hanmugam12-Jun-07 21:49 
GeneralRe: Vc++ .NET? Pin
Kevin McFarlane12-Jun-07 23:18
Kevin McFarlane12-Jun-07 23:18 
AnswerRe: Vc++ .NET? Pin
Sathesh Sakthivel12-Jun-07 15:45
Sathesh Sakthivel12-Jun-07 15:45 
AnswerRe: Vc++ .NET? Pin
Christian Graus12-Jun-07 16:22
protectorChristian Graus12-Jun-07 16:22 
QuestionVisual Studio VS Visual Studio .net Pin
ForNow11-Jun-07 12:59
ForNow11-Jun-07 12:59 
AnswerRe: Visual Studio VS Visual Studio .net Pin
MatrixCoder11-Jun-07 17:19
MatrixCoder11-Jun-07 17:19 
GeneralRe: Visual Studio VS Visual Studio .net Pin
ForNow11-Jun-07 18:46
ForNow11-Jun-07 18:46 
GeneralRe: Visual Studio VS Visual Studio .net Pin
MatrixCoder11-Jun-07 19:19
MatrixCoder11-Jun-07 19:19 
GeneralRe: Visual Studio VS Visual Studio .net Pin
ForNow11-Jun-07 19:29
ForNow11-Jun-07 19:29 
GeneralRe: Visual Studio VS Visual Studio .net Pin
Kevin McFarlane12-Jun-07 3:17
Kevin McFarlane12-Jun-07 3:17 
GeneralRe: Visual Studio VS Visual Studio .net Pin
ForNow12-Jun-07 6:27
ForNow12-Jun-07 6:27 
GeneralRe: Visual Studio VS Visual Studio .net Pin
Kevin McFarlane12-Jun-07 6:38
Kevin McFarlane12-Jun-07 6:38 
GeneralRe: Visual Studio VS Visual Studio .net Pin
ForNow12-Jun-07 6:40
ForNow12-Jun-07 6:40 
GeneralRe: Visual Studio VS Visual Studio .net Pin
Thomas Stockwell12-Jun-07 4:10
professionalThomas Stockwell12-Jun-07 4:10 

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.