Click here to Skip to main content
15,921,113 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionDefault Batabinding Naming Convetions Pin
mr_lasseter9-Nov-06 5:40
mr_lasseter9-Nov-06 5:40 
QuestionUnable to start debugging In VS2005 Pin
GnanaprakashJebaraj9-Nov-06 2:37
GnanaprakashJebaraj9-Nov-06 2:37 
AnswerRe: Unable to start debugging In VS2005 Pin
mr_lasseter9-Nov-06 5:42
mr_lasseter9-Nov-06 5:42 
GeneralRe: Unable to start debugging In VS2005 Pin
GnanaprakashJebaraj9-Nov-06 17:50
GnanaprakashJebaraj9-Nov-06 17:50 
QuestionTo make possible to manage position and size of controls by mouse Pin
wasek20019-Nov-06 0:04
wasek20019-Nov-06 0:04 
AnswerRe: To make possible to manage position and size of controls by mouse Pin
Marco [Stinger]9-Nov-06 2:32
Marco [Stinger]9-Nov-06 2:32 
QuestionRe: To make possible to manage position and size of controls by mouse Pin
wasek20019-Nov-06 4:32
wasek20019-Nov-06 4:32 
AnswerRe: To make possible to manage position and size of controls by mouse Pin
Marco [Stinger]9-Nov-06 5:13
Marco [Stinger]9-Nov-06 5:13 
Well, it all depends on what you consider "Standard".
From my point of view this is Indeed a standard solution!

Would you like to take a step forward ?
Make your own controll that incorporates the features you require !!
I've got my panel on panel control that does the moving (not the resizing yet) with simply:

<br />
		private void pnMove_MouseUp(object sender, MouseEventArgs e)<br />
		{<br />
			this.bMDown = false;<br />
		}<br />
<br />
		private void pnMove_MouseMove(object sender, MouseEventArgs e)<br />
		{<br />
			if (this.bMDown)<br />
			{<br />
				if ((e.X != this.StartX) || (e.Y != this.StartY))<br />
				{<br />
					this.Left += e.X-this.StartX;<br />
					this.Top += e.Y-this.StartY;<br />
					this.Refresh();<br />
					this.Parent.Refresh();<br />
				}<br />
			}<br />
		}<br />
<br />
		private void pnMove_MouseDown(object sender, MouseEventArgs e)<br />
		{<br />
			this.StartX = e.X;<br />
			this.StartY 	= e.Y;<br />
			this.bMDown = true;<br />
		}<br />
<br />
<br />





Ciao
Marco
Questionthread pool Pin
Tauseef A8-Nov-06 22:06
Tauseef A8-Nov-06 22:06 
Questionhow to write program for Automatic log off Pin
Pavan Josh8-Nov-06 19:44
Pavan Josh8-Nov-06 19:44 
AnswerRe: how to write program for Automatic log off Pin
Jun Du9-Nov-06 7:59
Jun Du9-Nov-06 7:59 
AnswerRe: how to write program for Automatic log off Pin
Vasudevan Deepak Kumar10-Nov-06 21:18
Vasudevan Deepak Kumar10-Nov-06 21:18 
Questionabout Dynamic Menu Pin
prameelapydi8-Nov-06 19:08
prameelapydi8-Nov-06 19:08 
AnswerRe: about Dynamic Menu Pin
Christian Graus8-Nov-06 22:58
protectorChristian Graus8-Nov-06 22:58 
AnswerRe: about Dynamic Menu Pin
Vasudevan Deepak Kumar10-Nov-06 21:19
Vasudevan Deepak Kumar10-Nov-06 21:19 
QuestionHeader is printing in every page but top border is missing from second page Pin
Renukapadhamanaban8-Nov-06 17:40
Renukapadhamanaban8-Nov-06 17:40 
AnswerRe: Header is printing in every page but top border is missing from second page Pin
indianet9-Nov-06 9:42
indianet9-Nov-06 9:42 
GeneralRe: Header is printing in every page but top border is missing from second page Pin
Renukapadhamanaban9-Nov-06 12:55
Renukapadhamanaban9-Nov-06 12:55 
AnswerRe: Header is printing in every page but top border is missing from second page Pin
Vasudevan Deepak Kumar10-Nov-06 21:20
Vasudevan Deepak Kumar10-Nov-06 21:20 
QuestionN-Tier .NET application :confused: Pin
firstmaster8-Nov-06 16:14
firstmaster8-Nov-06 16:14 
AnswerRe: N-Tier .NET application :confused: Pin
Christian Graus8-Nov-06 22:55
protectorChristian Graus8-Nov-06 22:55 
GeneralRe: N-Tier .NET application Pin
firstmaster8-Nov-06 23:30
firstmaster8-Nov-06 23:30 
QuestionHow to designate decimal points to be displayed when using Convert.ToString Pin
nicknotyet8-Nov-06 8:56
nicknotyet8-Nov-06 8:56 
AnswerRe: How to designate decimal points to be displayed when using Convert.ToString Pin
PIEBALDconsult8-Nov-06 10:21
mvePIEBALDconsult8-Nov-06 10:21 
QuestionOnline Query Builder Pin
Manish Chowdhary8-Nov-06 1:26
Manish Chowdhary8-Nov-06 1:26 

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.