Click here to Skip to main content
15,888,527 members
Home / Discussions / C#
   

C#

 
AnswerRe: Play Incoming Message Notification Pin
Wes Aday27-Aug-12 10:45
professionalWes Aday27-Aug-12 10:45 
GeneralRe: Play Incoming Message Notification Pin
Jassim Rahma27-Aug-12 10:52
Jassim Rahma27-Aug-12 10:52 
GeneralRe: Play Incoming Message Notification Pin
Wes Aday27-Aug-12 11:00
professionalWes Aday27-Aug-12 11:00 
AnswerRe: Play Incoming Message Notification Pin
Eddy Vluggen27-Aug-12 11:08
professionalEddy Vluggen27-Aug-12 11:08 
GeneralRe: Play Incoming Message Notification Pin
Wes Aday27-Aug-12 11:15
professionalWes Aday27-Aug-12 11:15 
GeneralRe: Play Incoming Message Notification Pin
Eddy Vluggen27-Aug-12 11:22
professionalEddy Vluggen27-Aug-12 11:22 
QuestionSidebar using MDI Child Pin
Jassim Rahma27-Aug-12 10:35
Jassim Rahma27-Aug-12 10:35 
AnswerRe: Sidebar using MDI Child Pin
Eddy Vluggen27-Aug-12 10:58
professionalEddy Vluggen27-Aug-12 10:58 
jrahma wrote:
how can I do this?
C#
public class FormMyToolBox: Form
{
	public FormMyToolBox (string aCaption, DockStyle aDockStyle)
	{			
		Text = aCaption;
		FormBorderStyle = FormBorderStyle.FixedToolWindow;
		Dock = aDockStyle;
		TopLevel = false;
		Visible = true;
	}

// added to the mainform like this;
Controls.Add(new FormScriptToolBox(
	"Ze ToolBox",
	DockStyle.Right));

Works for me under Mono. Specifying the maximum or minimum width is done using the appropriate properties[^].
Bastard Programmer from Hell Suspicious | :suss:
if you can't read my code, try converting it here[^]

GeneralRe: Sidebar using MDI Child Pin
Jassim Rahma28-Aug-12 10:40
Jassim Rahma28-Aug-12 10:40 
QuestionBest way to get notification from Sql server ?!? Pin
EgyptianRobot27-Aug-12 9:11
EgyptianRobot27-Aug-12 9:11 
AnswerRe: Best way to get notification from Sql server ?!? Pin
fjdiewornncalwe27-Aug-12 9:17
professionalfjdiewornncalwe27-Aug-12 9:17 
GeneralRe: Best way to get notification from Sql server ?!? Pin
EgyptianRobot27-Aug-12 21:31
EgyptianRobot27-Aug-12 21:31 
GeneralRe: Best way to get notification from Sql server ?!? Pin
fjdiewornncalwe28-Aug-12 3:56
professionalfjdiewornncalwe28-Aug-12 3:56 
GeneralRe: Best way to get notification from Sql server ?!? Pin
EgyptianRobot28-Aug-12 4:10
EgyptianRobot28-Aug-12 4:10 
GeneralRe: Best way to get notification from Sql server ?!? Pin
fjdiewornncalwe28-Aug-12 5:01
professionalfjdiewornncalwe28-Aug-12 5:01 
AnswerRe: Best way to get notification from Sql server ?!? Pin
Eddy Vluggen27-Aug-12 9:45
professionalEddy Vluggen27-Aug-12 9:45 
GeneralRe: Best way to get notification from Sql server ?!? Pin
EgyptianRobot27-Aug-12 21:33
EgyptianRobot27-Aug-12 21:33 
AnswerRe: Best way to get notification from Sql server ?!? Pin
Eddy Vluggen27-Aug-12 22:28
professionalEddy Vluggen27-Aug-12 22:28 
GeneralRe: Best way to get notification from Sql server ?!? Pin
EgyptianRobot28-Aug-12 0:02
EgyptianRobot28-Aug-12 0:02 
GeneralRe: Best way to get notification from Sql server ?!? Pin
Eddy Vluggen28-Aug-12 0:24
professionalEddy Vluggen28-Aug-12 0:24 
GeneralRe: Best way to get notification from Sql server ?!? Pin
EgyptianRobot28-Aug-12 2:09
EgyptianRobot28-Aug-12 2:09 
GeneralRe: Best way to get notification from Sql server ?!? Pin
Eddy Vluggen28-Aug-12 2:32
professionalEddy Vluggen28-Aug-12 2:32 
GeneralRe: Best way to get notification from Sql server ?!? Pin
EgyptianRobot28-Aug-12 2:38
EgyptianRobot28-Aug-12 2:38 
GeneralRe: Best way to get notification from Sql server ?!? Pin
Eddy Vluggen28-Aug-12 3:04
professionalEddy Vluggen28-Aug-12 3:04 
GeneralRe: Best way to get notification from Sql server ?!? Pin
EgyptianRobot28-Aug-12 3:43
EgyptianRobot28-Aug-12 3:43 

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.