Click here to Skip to main content
15,923,689 members
Home / Discussions / C#
   

C#

 
GeneralDynamic user controls Pin
HectorB10-Nov-04 7:46
HectorB10-Nov-04 7:46 
GeneralRe: Dynamic user controls Pin
Nick Parker10-Nov-04 8:10
protectorNick Parker10-Nov-04 8:10 
Generaldestroy dll Pin
ppp00110-Nov-04 7:15
ppp00110-Nov-04 7:15 
GeneralRe: destroy dll Pin
Nick Parker10-Nov-04 7:28
protectorNick Parker10-Nov-04 7:28 
GeneralConditional Attributes Pin
Kevin McFarlane10-Nov-04 5:27
Kevin McFarlane10-Nov-04 5:27 
GeneralMonitor Problem Pin
waiwai0910-Nov-04 3:18
waiwai0910-Nov-04 3:18 
GeneralPathfinding (path or no path) in 3D Pin
Sebastian Schneider10-Nov-04 3:04
Sebastian Schneider10-Nov-04 3:04 
GeneralFind and replace in text file Pin
sevan10-Nov-04 2:12
sevan10-Nov-04 2:12 
GeneralRe: Find and replace in text file Pin
Dave Kreskowiak10-Nov-04 3:27
mveDave Kreskowiak10-Nov-04 3:27 
GeneralRe: Find and replace in text file Pin
tom_dx10-Nov-04 12:39
tom_dx10-Nov-04 12:39 
GeneralRe: Find and replace in text file Pin
Dave Kreskowiak10-Nov-04 13:37
mveDave Kreskowiak10-Nov-04 13:37 
GeneralRe: Find and replace in text file Pin
Kraki11-Nov-04 9:06
Kraki11-Nov-04 9:06 
QuestionIs there a way to prevent InitializeComponent() regeneration? Pin
DizzyMobile10-Nov-04 1:26
DizzyMobile10-Nov-04 1:26 
AnswerRe: Is there a way to prevent InitializeComponent() regeneration? Pin
Skynyrd10-Nov-04 5:26
Skynyrd10-Nov-04 5:26 
AnswerRe: Is there a way to prevent InitializeComponent() regeneration? Pin
J4amieC10-Nov-04 5:34
J4amieC10-Nov-04 5:34 
GeneralRe: Is there a way to prevent InitializeComponent() regeneration? Pin
DizzyMobile10-Nov-04 8:35
DizzyMobile10-Nov-04 8:35 
GeneralRe: Is there a way to prevent InitializeComponent() regeneration? Pin
Skynyrd10-Nov-04 9:47
Skynyrd10-Nov-04 9:47 
Generaloverride WndProc allow form resize, move, max and min Pin
Lyhr10-Nov-04 0:51
Lyhr10-Nov-04 0:51 
How can I allow the Form to only do paint and move, resize, maximize and minimize events? I have the code for paint below.

private const int WM_NCPAINT = 0x0085;
private const int WM_PAINT = 0x000F;
private const int WM_ERASEBKGND = 0x0014;
private const int WM_PRINTCLIENT = 0x0318;

[SecurityPermission(SecurityAction.LinkDemand, UnmanagedCode=true)]
protected override void WndProc(ref Message m)
{
if (this.Buzy)
{
if (!((m.Msg == WM_PAINT) || (m.Msg == WM_NCPAINT) || (m.Msg == WM_ERASEBKGND) || (m.Msg == WM_PRINTCLIENT)))
{
return;
}
base.WndProc(ref m);
}
GeneralRe: override WndProc allow form resize, move, max and min Pin
Jay Shankar10-Nov-04 19:36
Jay Shankar10-Nov-04 19:36 
GeneralGet ID of resource Pin
El'Cachubrey10-Nov-04 0:50
El'Cachubrey10-Nov-04 0:50 
GeneralRe: Get ID of resource Pin
Heath Stewart10-Nov-04 8:35
protectorHeath Stewart10-Nov-04 8:35 
GeneralSetPixel in C# Pin
Lost In China10-Nov-04 0:36
sussLost In China10-Nov-04 0:36 
GeneralRe: SetPixel in C# Pin
benjymous10-Nov-04 1:03
benjymous10-Nov-04 1:03 
GeneralRe: SetPixel in C# Pin
ACorbs11-Nov-04 19:10
ACorbs11-Nov-04 19:10 
GeneralRe: SetPixel in C# Pin
Lost In China11-Nov-04 19:56
sussLost In China11-Nov-04 19:56 

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.