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

C#

 
QuestionProblem placing the TableLayoutPanel at the same location! Pin
Khoramdin2-Aug-07 3:35
Khoramdin2-Aug-07 3:35 
AnswerRe: Problem placing the TableLayoutPanel at the same location! Pin
Martin#2-Aug-07 3:40
Martin#2-Aug-07 3:40 
QuestionProcess.Start with specific Culture Setting Pin
Rolf Sperling2-Aug-07 3:30
Rolf Sperling2-Aug-07 3:30 
AnswerRe: Process.Start with specific Culture Setting Pin
Martin#2-Aug-07 3:45
Martin#2-Aug-07 3:45 
GeneralRe: Process.Start with specific Culture Setting Pin
Rolf Sperling2-Aug-07 20:27
Rolf Sperling2-Aug-07 20:27 
GeneralRe: Process.Start with specific Culture Setting Pin
Martin#2-Aug-07 20:33
Martin#2-Aug-07 20:33 
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 

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.