Click here to Skip to main content
16,010,488 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: net framework 2 Pin
Dave Kreskowiak23-Feb-09 4:33
mveDave Kreskowiak23-Feb-09 4:33 
Questionremote access to sql server 2000 by c# Pin
H.R22-Feb-09 22:47
H.R22-Feb-09 22:47 
AnswerRe: remote access to sql server 2000 by c# Pin
Greg Chelstowski23-Feb-09 2:15
Greg Chelstowski23-Feb-09 2:15 
GeneralRe: remote access to sql server 2000 by c# Pin
H.R1-Mar-09 2:41
H.R1-Mar-09 2:41 
GeneralRe: remote access to sql server 2000 by c# Pin
Greg Chelstowski2-Mar-09 4:38
Greg Chelstowski2-Mar-09 4:38 
QuestionTabControl Flickering Pin
invictus322-Feb-09 9:15
invictus322-Feb-09 9:15 
AnswerRe: TabControl Flickering Pin
Thomas Stockwell23-Feb-09 15:46
professionalThomas Stockwell23-Feb-09 15:46 
GeneralRe: TabControl Flickering Pin
invictus324-Feb-09 19:25
invictus324-Feb-09 19:25 
Setting doublebuffered on the form did not have any effect. However, the following code did clear up this and other repaint issues easily:

protected override System.Windows.Forms.CreateParams CreateParams
{
get
{
var cp = base.CreateParams;
cp.ExStyle |= 0x2000000;
return cp;
}
}


I find it really strange that this isn't enabled by default from Microsoft since the TabControl looks like crap without it, and there are no apparent downside of using the fix above except that you get a bit more memory usage and a few more lines of code.

Please, if possible, enlighten min why Microsoft decided to drop this option as on by default? For the record; it sets the WS_EX_COMPOSITED Window property. In MSDNAA I can't find any information indicating why this is not enabled.
QuestionFind .NET transaction that is blocking another transaction Pin
Webster Jones21-Feb-09 21:33
Webster Jones21-Feb-09 21:33 
AnswerRe: Find .NET transaction that is blocking another transaction Pin
Jon Rista22-Feb-09 7:38
Jon Rista22-Feb-09 7:38 
QuestionHow to connect microsift sql server 2005 using microsoft vb.net Pin
rohan404021-Feb-09 18:18
rohan404021-Feb-09 18:18 
AnswerRe: How to connect microsift sql server 2005 using microsoft vb.net Pin
ABitSmart21-Feb-09 19:52
ABitSmart21-Feb-09 19:52 
AnswerRe: How to connect microsift sql server 2005 using microsoft vb.net Pin
Dave Kreskowiak22-Feb-09 4:04
mveDave Kreskowiak22-Feb-09 4:04 
QuestionLearning c# on the .net framework. Pin
Ivan200920-Feb-09 7:51
Ivan200920-Feb-09 7:51 
AnswerRe: Learning c# on the .net framework. Pin
PIEBALDconsult20-Feb-09 8:10
mvePIEBALDconsult20-Feb-09 8:10 
AnswerRe: Learning c# on the .net framework. Pin
Eddy Vluggen20-Feb-09 8:35
professionalEddy Vluggen20-Feb-09 8:35 
AnswerRe: Learning c# on the .net framework. Pin
Kevin McFarlane22-Feb-09 6:43
Kevin McFarlane22-Feb-09 6:43 
GeneralRe: Learning c# on the .net framework. Pin
Ivan200923-Feb-09 9:32
Ivan200923-Feb-09 9:32 
AnswerRe: Learning c# on the .net framework. Pin
beckrao22-Feb-09 21:38
beckrao22-Feb-09 21:38 
NewsThe greatest companion, made with .NET Pin
Hadi Fakhreddine20-Feb-09 2:58
Hadi Fakhreddine20-Feb-09 2:58 
GeneralRe: The greatest companion, made with .NET Pin
Pete O'Hanlon20-Feb-09 3:56
mvePete O'Hanlon20-Feb-09 3:56 
GeneralRe: The greatest companion, made with .NET Pin
Hadi Fakhreddine20-Feb-09 4:24
Hadi Fakhreddine20-Feb-09 4:24 
Questionaccess calender database from mobile Pin
S.M. Abdullah Al Jobayer20-Feb-09 2:49
S.M. Abdullah Al Jobayer20-Feb-09 2:49 
Questioniis error Pin
aratireddy19-Feb-09 23:23
aratireddy19-Feb-09 23:23 
AnswerRe: iis error Pin
Aman Bhullar22-Feb-09 23:45
Aman Bhullar22-Feb-09 23: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.