Click here to Skip to main content
15,898,036 members
Home / Discussions / C#
   

C#

 
GeneralRe: A C# IDE, apart from VS .NET ?? Pin
sourav_bh13-May-05 0:44
sourav_bh13-May-05 0:44 
GeneralRe: A C# IDE, apart from VS .NET ?? Pin
13-May-05 2:33
suss13-May-05 2:33 
GeneralRe: A C# IDE, apart from VS .NET ?? Pin
amit_mi13-May-05 3:04
amit_mi13-May-05 3:04 
AnswerRe: A C# IDE, apart from VS .NET ?? Pin
ChesterPoindexter13-May-05 3:31
professionalChesterPoindexter13-May-05 3:31 
AnswerRe: A C# IDE, apart from VS .NET ?? Pin
Uwe Keim13-May-05 9:51
sitebuilderUwe Keim13-May-05 9:51 
Generalglobal mouse hooks in .net Pin
G_Zola12-May-05 23:18
G_Zola12-May-05 23:18 
QuestionCan i hide another application? Pin
Anthony Mushrow12-May-05 22:54
professionalAnthony Mushrow12-May-05 22:54 
AnswerRe: Can i hide another application? Pin
eggie513-May-05 1:59
eggie513-May-05 1:59 
You need to get the windows handle by p invoking the windows API function "FindWindow" and pass the windows's title in the first parameter and null for the second. Then you the api function, "ShowWindow" with the two parameters of the window's handle (IntPtr) and either (int) 0 to hide the window or 1 to show it again.

Here is some code samples:

//using System.Runtime.InteropServices

[DllImport("user32.dll")]
private static extern IntPtr FindWindow(string Class, string Title);

[DllImport("user32.dll")]
private static extern bool ShowWindow(IntPtr handle, int swConstOption);

/\ |_ E X E GG
Generala pacman type game source code for c to compile on borland (bcc32) Pin
Member 195662712-May-05 22:45
Member 195662712-May-05 22:45 
GeneralRe: a pacman type game source code for c to compile on borland (bcc32) Pin
mav.northwind12-May-05 23:07
mav.northwind12-May-05 23:07 
GeneralRe: a pacman type game source code for c to compile on borland (bcc32) Pin
lgstef16-May-05 2:11
lgstef16-May-05 2:11 
GeneralRe: a pacman type game source code for c to compile on borland (bcc32) Pin
Michael P Butler12-May-05 23:13
Michael P Butler12-May-05 23:13 
QuestionHow to stop the output console from terminating, in Borland C# Builder ? Pin
sourav_bh12-May-05 21:21
sourav_bh12-May-05 21:21 
AnswerRe: How to stop the output console from terminating, in Borland C# Builder ? Pin
S. Senthil Kumar12-May-05 23:22
S. Senthil Kumar12-May-05 23:22 
GeneralRe: How to stop the output console from terminating, in Borland C# Builder ? Pin
sourav_bh13-May-05 0:10
sourav_bh13-May-05 0:10 
QuestionHow can I implement a ComboBox with ToolTip? Pin
welsrping12-May-05 20:12
welsrping12-May-05 20:12 
AnswerRe: How can I implement a ComboBox with ToolTip? Pin
pubududilena13-May-05 0:00
pubududilena13-May-05 0:00 
GeneralTristate Checkbox Pin
skrishnasarma12-May-05 18:59
skrishnasarma12-May-05 18:59 
GeneralRe: Tristate Checkbox Pin
pubududilena12-May-05 19:12
pubududilena12-May-05 19:12 
GeneralRe: Tristate Checkbox Pin
mav.northwind12-May-05 22:58
mav.northwind12-May-05 22:58 
QuestionHow to convert C# Application exe to C# code again? Pin
pubududilena12-May-05 17:12
pubududilena12-May-05 17:12 
AnswerRe: How to convert C# Application exe to C# code again? Pin
Judah Gabriel Himango12-May-05 18:45
sponsorJudah Gabriel Himango12-May-05 18:45 
GeneralRe: How to convert C# Application exe to C# code again? Pin
Priyank Bolia13-May-05 2:37
Priyank Bolia13-May-05 2:37 
GeneralRe: How to convert C# Application exe to C# code again? Pin
Dave Kreskowiak13-May-05 2:52
mveDave Kreskowiak13-May-05 2:52 
Questionhow to encode string in serialization Pin
Green Fuze12-May-05 14:36
Green Fuze12-May-05 14:36 

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.