Click here to Skip to main content
15,914,163 members
Home / Discussions / C#
   

C#

 
Generaluser32 overlaying another form Pin
jameswhollister28-Apr-05 19:54
jameswhollister28-Apr-05 19:54 
GeneralSetting a control focus when form is loaded Pin
Anonymous28-Apr-05 17:47
Anonymous28-Apr-05 17:47 
GeneralRe: Setting a control focus when form is loaded Pin
rudy.net28-Apr-05 19:27
rudy.net28-Apr-05 19:27 
GeneralRe: Setting a control focus when form is loaded Pin
Anonymous29-Apr-05 5:37
Anonymous29-Apr-05 5:37 
GeneralRe: Setting a control focus when form is loaded Pin
Kodanda Pani28-Apr-05 19:33
Kodanda Pani28-Apr-05 19:33 
GeneralRe: Setting a control focus when form is loaded Pin
M.Waseem Chishti28-Apr-05 20:23
M.Waseem Chishti28-Apr-05 20:23 
GeneralHide Taskbar from C#.net Pin
Kyaw Soe Khaing28-Apr-05 16:50
Kyaw Soe Khaing28-Apr-05 16:50 
GeneralRe: Hide Taskbar from C#.net Pin
leppie28-Apr-05 19:18
leppie28-Apr-05 19:18 
This code will help, now just read the Windows SDK docs how to use it.
[DllImport("shell32.dll")]
extern static int SHAppBarMessage(int msg, ref APPBARDATA data);

struct APPBARDATA
{
  internal int size;
  IntPtr hwnd;
  uint callback;
  internal uint edge;
  internal Rect rc;
  int lparam;
}


xacc-ide 0.0.15 now with C#, MSIL, C, XML, ASP.NET, Nemerle, MyXaml and HLSL coloring - Screenshots
GeneralRe: Hide Taskbar from C#.net Pin
Fernando Soto28-Apr-05 19:41
Fernando Soto28-Apr-05 19:41 
GeneralSending info to another frame Pin
brian5528-Apr-05 15:44
brian5528-Apr-05 15:44 
GeneralRe: Sending info to another frame Pin
MoustafaS28-Apr-05 17:25
MoustafaS28-Apr-05 17:25 
GeneralPop-Up & AxBrowser Pin
Sergio Luix28-Apr-05 14:09
Sergio Luix28-Apr-05 14:09 
GeneralRe: Pop-Up & AxBrowser Pin
leppie28-Apr-05 19:12
leppie28-Apr-05 19:12 
GeneralRe: Pop-Up & AxBrowser Pin
Sergio Luix28-Apr-05 19:15
Sergio Luix28-Apr-05 19:15 
GeneralRe: Pop-Up & AxBrowser Pin
leppie28-Apr-05 19:25
leppie28-Apr-05 19:25 
GeneralRe: Pop-Up & AxBrowser Pin
Moon Boy28-Apr-05 19:31
Moon Boy28-Apr-05 19:31 
GeneralRe: Pop-Up & AxBrowser Pin
Moon Boy28-Apr-05 19:46
Moon Boy28-Apr-05 19:46 
GeneralGeneral object destruction question: Pin
tantiboh28-Apr-05 13:32
tantiboh28-Apr-05 13:32 
GeneralRe: General object destruction question: Pin
Marc Clifton28-Apr-05 15:38
mvaMarc Clifton28-Apr-05 15:38 
QuestionGetting a timer's remaining time? Pin
tantiboh28-Apr-05 12:38
tantiboh28-Apr-05 12:38 
AnswerRe: Getting a timer's remaining time? Pin
Marc Clifton28-Apr-05 15:51
mvaMarc Clifton28-Apr-05 15:51 
GeneralCreating object instances by their name Pin
Anonymous28-Apr-05 12:08
Anonymous28-Apr-05 12:08 
GeneralRe: Creating object instances by their name Pin
Andy Brummer28-Apr-05 12:29
sitebuilderAndy Brummer28-Apr-05 12:29 
QuestionHow do you program with the GAC? Pin
kmaclean28-Apr-05 11:55
kmaclean28-Apr-05 11:55 
AnswerRe: How do you program with the GAC? Pin
Marc Clifton28-Apr-05 16:00
mvaMarc Clifton28-Apr-05 16:00 

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.