1,852 reputation
148
bio website
location Netherlands
age 28
visits member for 2 years, 1 month
seen 4 hours ago
stats profile views 141

May
10
awarded  Yearling
Feb
25
awarded  Critic
Jan
16
comment WinForms App hangs after invoking a delegate from other thread
Most often this kind of problem is caused by a busy main thread. Maybe it is busy waiting for the other thread to finish? (i.e.: click event -> AddNewTab -> Invoke; and Invoke would like to have click event finish first), You could try BeginInvoke but this will cause the changes to be delayed a bit.
Jan
16
awarded  Fanatic
Dec
15
answered how can multiple divs have 85% height and 100% width?
Dec
14
answered Removing “…” button from PropertyGrid collection property
Dec
11
comment After Sending a mail using System.Net.Mail.SmtpClient with a .jpeg file attached to it, I am not able to open that photo
We are probably gonna need some code to see where things go wrong.
Dec
10
comment AccessViolationException error
Is your assumption of 3 bytes per pixel correct? seeing as you are forcing GrayScale (note: i have never used or know the library you are using)
Dec
8
comment Extract all strings between two strings
And +1 for teaching me the +?
Dec
8
comment Extract all strings between two strings
If you add perenthesis "{0}({1}){2}" in the pattern you could use Match.Groups[1] to get the value
Dec
6
answered Dynamically create members of interface
Dec
6
answered Existing .net web application needs to change authentication
Dec
6
comment .Net: SignedXml - Signing xml with transform algorithm exc-c14n
Yes, that should work perfectly fine too.
Dec
6
answered .Net: SignedXml - Signing xml with transform algorithm exc-c14n
Nov
30
comment Existing .net web application needs to change authentication
Try looking into ADFS (Active Directory Federation Services) from Microsoft. It allowes to login on a website using AD authentication without any contact between the server and the AD server. There is also an ASP.net module to integrate in the website.
Nov
3
revised loop through an object and find the not null properties
Made code work in .net < 4
Nov
3
comment loop through an object and find the not null properties
@khellang great idea :), changed my example
Nov
3
answered loop through an object and find the not null properties
Nov
3
comment Memory leak around timer delegate
It looks as if this was the way the developers intended it to work. If i run my test program in .net 4.0 or higher it seems the objects do get collected.
Nov
3
answered Memory leak around timer delegate