Click here to Skip to main content
16,004,974 members
Home / Discussions / C#
   

C#

 
GeneralRe: Newline in C# Pin
Blumen23-May-07 20:42
Blumen23-May-07 20:42 
GeneralRe: Newline in C# Pin
Christian Graus23-May-07 21:18
protectorChristian Graus23-May-07 21:18 
GeneralRe: Newline in C# Pin
Blumen23-May-07 21:21
Blumen23-May-07 21:21 
Questionhow to make the form's icon light in taskbar? Pin
jason_mf23-May-07 18:49
jason_mf23-May-07 18:49 
AnswerRe: how to make the form's icon light in taskbar? Pin
Muammar©23-May-07 21:02
Muammar©23-May-07 21:02 
GeneralRe: how to make the form's icon light in taskbar? Pin
jason_mf23-May-07 21:25
jason_mf23-May-07 21:25 
JokeRe: how to make the form's icon light in taskbar? Pin
Seishin#23-May-07 22:49
Seishin#23-May-07 22:49 
AnswerRe: how to make the form's icon light in taskbar? Pin
MIHAI_MTZ23-May-07 22:52
MIHAI_MTZ23-May-07 22:52 
I'm quite sure there is an easier method; something like this.focus() or this.activate() but it doesn't seem to work...

On the other side this does work. You'll need to allow unsafe code in your project

[DllImport("user32.dll")]
public static extern bool FlashWindowEx(ref FLASHINFO fInfo);


private void timer1_Tick(object sender, EventArgs e)
{
unsafe
{
FLASHINFO fInfo = new FLASHINFO();
fInfo.cbSize = sizeof(FLASHINFO);
fInfo.dwFlags = 2;
fInfo.hwnd = this.Handle;
fInfo.uCount = 2;
fInfo.dwTimeout = 0;
bool result = FlashWindowEx(ref fInfo);
}
}
}
}



public struct FLASHINFO
{
public Int32 cbSize;
public IntPtr hwnd;
public int dwFlags;
public UInt32 uCount;
public int dwTimeout;
}
GeneralRe: how to make the form's icon light in taskbar? Pin
jason_mf24-May-07 3:04
jason_mf24-May-07 3:04 
GeneralRe: how to make the form's icon light in taskbar? Pin
MIHAI_MTZ24-May-07 7:10
MIHAI_MTZ24-May-07 7:10 
QuestionOk, so I'm 'plugged in'. Now what? Need help with plugin/host communication. Pin
Paul Groetzner23-May-07 18:10
Paul Groetzner23-May-07 18:10 
AnswerRe: Ok, so I'm 'plugged in'. Now what? Need help with plugin/host communication. Pin
led mike23-May-07 19:09
led mike23-May-07 19:09 
GeneralRe: Ok, so I'm 'plugged in'. Now what? Need help with plugin/host communication. Pin
Paul Groetzner24-May-07 4:32
Paul Groetzner24-May-07 4:32 
GeneralRe: Ok, so I'm 'plugged in'. Now what? Need help with plugin/host communication. Pin
led mike24-May-07 5:02
led mike24-May-07 5:02 
QuestionObject Pin
Robin092523-May-07 17:53
Robin092523-May-07 17:53 
AnswerRe: Object Pin
Robin092523-May-07 17:53
Robin092523-May-07 17:53 
QuestionReading Binary data in C# Pin
aruna_koride23-May-07 17:28
aruna_koride23-May-07 17:28 
AnswerRe: Reading Binary data in C# Pin
CPallini23-May-07 20:15
mveCPallini23-May-07 20:15 
AnswerRe: XML Parser Pin
theluckin_200223-May-07 20:49
theluckin_200223-May-07 20:49 
QuestionFunnelling data to and from a file in real time. Pin
Kataric23-May-07 17:02
Kataric23-May-07 17:02 
AnswerRe: Funnelling data to and from a file in real time. Pin
JF201523-May-07 18:10
JF201523-May-07 18:10 
GeneralRe: Funnelling data to and from a file in real time. Pin
Kataric23-May-07 21:19
Kataric23-May-07 21:19 
QuestionHow can I change the Width of StatusStrip in my Windows Application? Pin
Khoramdin23-May-07 16:46
Khoramdin23-May-07 16:46 
AnswerRe: How can I change the Width of StatusStrip in my Windows Application? Pin
Gopal.S24-May-07 18:44
Gopal.S24-May-07 18:44 
Questionshow sorted table in crystall report Pin
iman_kh23-May-07 14:20
iman_kh23-May-07 14:20 

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.