Click here to Skip to main content
15,894,337 members
Home / Discussions / C#
   

C#

 
GeneralNet Remoting Pin
Anonymous12-Jul-05 1:18
Anonymous12-Jul-05 1:18 
GeneralRe: Net Remoting Pin
jdkulkarni12-Jul-05 3:16
jdkulkarni12-Jul-05 3:16 
QuestionHow to use DataGrid in C# Pin
A H Khan12-Jul-05 0:05
A H Khan12-Jul-05 0:05 
AnswerRe: How to use DataGrid in C# Pin
exhaulted12-Jul-05 0:19
exhaulted12-Jul-05 0:19 
AnswerRe: How to use DataGrid in C# Pin
Alomgir Miah12-Jul-05 4:35
Alomgir Miah12-Jul-05 4:35 
General.NET Remoting exception Pin
jdkulkarni11-Jul-05 23:53
jdkulkarni11-Jul-05 23:53 
Generaldisplay shortcut menu in taskbar Pin
JockerSoft11-Jul-05 23:08
JockerSoft11-Jul-05 23:08 
GeneralRe: display shortcut menu in taskbar Pin
JockerSoft2-Dec-06 0:53
JockerSoft2-Dec-06 0:53 
private const int WS_CHILD = 0x40000000;
private const int WS_CLIPCHILDREN = 0x2000000;
private const int WS_MINIMIZEBOX = 0x20000;
private const int WS_MAXIMIZEBOX = 0x10000;
private const int WS_SYSMENU = 0x80000;
private const int CS_DBLCLKS = 0x8;

protected override CreateParams CreateParams
{
    get
    {
        CreateParams cp = base.CreateParams;
        cp.Style = WS_CLIPCHILDREN | WS_MINIMIZEBOX | WS_SYSMENU;
        cp.ClassStyle = CS_DBLCLKS;
        return cp;
    }
}



GeneralC# and Windows Shortcuts Pin
exhaulted11-Jul-05 23:04
exhaulted11-Jul-05 23:04 
GeneralRe: C# and Windows Shortcuts Pin
JockerSoft11-Jul-05 23:11
JockerSoft11-Jul-05 23:11 
GeneralRe: C# and Windows Shortcuts Pin
exhaulted12-Jul-05 0:16
exhaulted12-Jul-05 0:16 
QuestionUpdating Version info?!? Pin
Mepho11-Jul-05 23:03
Mepho11-Jul-05 23:03 
GeneralTransparent GUI Pin
amitmohanty11-Jul-05 22:53
amitmohanty11-Jul-05 22:53 
GeneralRe: Transparent GUI Pin
exhaulted11-Jul-05 23:07
exhaulted11-Jul-05 23:07 
GeneralUsing the AppSettingsReader class Pin
OKB11-Jul-05 20:50
OKB11-Jul-05 20:50 
GeneralRe: Using the AppSettingsReader class Pin
Dave Kreskowiak12-Jul-05 5:15
mveDave Kreskowiak12-Jul-05 5:15 
GeneralRe: Using the AppSettingsReader class Pin
OKB12-Jul-05 20:23
OKB12-Jul-05 20:23 
GeneralCalling Functions in C# Pin
Lotus10011-Jul-05 20:25
Lotus10011-Jul-05 20:25 
GeneralCheck ASP.NET Pin
adonis.damian11-Jul-05 20:15
adonis.damian11-Jul-05 20:15 
GeneralRe: Check ASP.NET Pin
Christian Graus11-Jul-05 20:18
protectorChristian Graus11-Jul-05 20:18 
GeneralRe: Check ASP.NET Pin
adonis.damian11-Jul-05 20:24
adonis.damian11-Jul-05 20:24 
GeneralRe: Check ASP.NET Pin
Expert Coming11-Jul-05 21:13
Expert Coming11-Jul-05 21:13 
GeneralRe: Check ASP.NET Pin
Christian Graus12-Jul-05 13:12
protectorChristian Graus12-Jul-05 13:12 
GeneralRe: Check ASP.NET Pin
DavidNohejl12-Jul-05 1:22
DavidNohejl12-Jul-05 1:22 
GeneralLoading and Unloading .dll file in C# Pin
pakFari11-Jul-05 20:14
pakFari11-Jul-05 20:14 

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.