Click here to Skip to main content
15,891,674 members
Home / Discussions / C#
   

C#

 
Question24 bit bitmap doubt .. Pin
Software_Specialist2-Aug-07 2:37
Software_Specialist2-Aug-07 2:37 
AnswerRe: 24 bit bitmap doubt .. Pin
Mike Dimmick2-Aug-07 2:53
Mike Dimmick2-Aug-07 2:53 
AnswerRe: 24 bit bitmap doubt .. Pin
Ilya Verbitskiy2-Aug-07 2:55
Ilya Verbitskiy2-Aug-07 2:55 
GeneralRe: 24 bit bitmap doubt .. Pin
Software_Specialist2-Aug-07 3:16
Software_Specialist2-Aug-07 3:16 
QuestionFilestream and BinaryWriter Pin
jayarajmrj2-Aug-07 2:35
jayarajmrj2-Aug-07 2:35 
AnswerRe: Filestream and BinaryWriter Pin
Software_Specialist2-Aug-07 2:40
Software_Specialist2-Aug-07 2:40 
AnswerRe: Filestream and BinaryWriter Pin
Sam_c2-Aug-07 2:55
Sam_c2-Aug-07 2:55 
QuestionListView Filter - Tab Control [modified] Pin
Christi Roselin2-Aug-07 2:06
Christi Roselin2-Aug-07 2:06 
QuestionCan i use NetResource() in C#? Pin
selvasonline2-Aug-07 2:03
selvasonline2-Aug-07 2:03 
AnswerRe: Can i use NetResource() in C#? Pin
Not Active2-Aug-07 3:00
mentorNot Active2-Aug-07 3:00 
Questioncombobox problem Pin
akkram2-Aug-07 2:02
akkram2-Aug-07 2:02 
AnswerRe: combobox problem Pin
Martin#2-Aug-07 2:14
Martin#2-Aug-07 2:14 
Hello,

One possibility is that you move the mouse outside the Controls area, while the mouse button is pressed.
If you than release the button, the items are still all visible!
This is per design!

You could make a workaround like this.
private void comboBox1_MouseLeave(object sender, System.EventArgs e)
{
	if(this.comboBox1.DroppedDown)
		this.comboBox1.DroppedDown = false;
}

Or inherit your own combobox, and override OnMouseLeave.



All the best,

Martin

GeneralRe: combobox problem Pin
akkram2-Aug-07 2:29
akkram2-Aug-07 2:29 
GeneralRe: combobox problem Pin
Martin#2-Aug-07 2:32
Martin#2-Aug-07 2:32 
AnswerRe: combobox problem Pin
Nisar Inamdar2-Aug-07 3:02
Nisar Inamdar2-Aug-07 3:02 
QuestionNetResource() in C# Pin
selvasonline2-Aug-07 1:59
selvasonline2-Aug-07 1:59 
AnswerRe: NetResource() in C# Pin
Martin#2-Aug-07 2:03
Martin#2-Aug-07 2:03 
QuestionInsert 20,000 records with NHibernate Pin
Albu Marius2-Aug-07 1:30
Albu Marius2-Aug-07 1:30 
AnswerRe: Insert 20,000 records with NHibernate Pin
leppie2-Aug-07 1:55
leppie2-Aug-07 1:55 
GeneralRe: Insert 20,000 records with NHibernate Pin
Albu Marius2-Aug-07 2:03
Albu Marius2-Aug-07 2:03 
QuestionTransaction in dotNET and SqlServer Pin
Developer6112-Aug-07 1:26
Developer6112-Aug-07 1:26 
AnswerRe: Transaction in dotNET and SqlServer Pin
Colin Angus Mackay2-Aug-07 1:39
Colin Angus Mackay2-Aug-07 1:39 
AnswerRe: Transaction in dotNET and SqlServer Pin
leppie2-Aug-07 1:56
leppie2-Aug-07 1:56 
Questionwriting xml data from dataset to table Pin
S Palip2-Aug-07 1:09
S Palip2-Aug-07 1:09 
AnswerRe: writing xml data from dataset to table Pin
wilcodk3-Aug-07 0:08
wilcodk3-Aug-07 0:08 

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.