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

C#

 
GeneralRe: Read Another Programs Memory Pin
Rob Philpott1-Dec-05 6:07
Rob Philpott1-Dec-05 6:07 
AnswerRe: Read Another Programs Memory Pin
Dave Kreskowiak1-Dec-05 6:23
mveDave Kreskowiak1-Dec-05 6:23 
QuestionTo use CollectionBase or not to use collectionBase. That is the question Pin
Ista30-Nov-05 16:49
Ista30-Nov-05 16:49 
AnswerRe: To use CollectionBase or not to use collectionBase. That is the question Pin
Sean Michael Murphy30-Nov-05 18:13
Sean Michael Murphy30-Nov-05 18:13 
QuestionStatic Controls Pin
TheMajorRager30-Nov-05 13:49
TheMajorRager30-Nov-05 13:49 
AnswerRe: Static Controls Pin
Christian Graus30-Nov-05 14:03
protectorChristian Graus30-Nov-05 14:03 
QuestionHow do you get the grabber icon on a toolbars? Pin
TheBlindWatchmaker30-Nov-05 13:40
TheBlindWatchmaker30-Nov-05 13:40 
AnswerRe: How do you get the grabber icon on a toolbars? Pin
Andy Moore1-Dec-05 6:31
Andy Moore1-Dec-05 6:31 
You have to draw this yourself. Here is some sample code to do this:

<br />
Win32Lib.RECT rc = new Win32Lib.Rect();<br />
<br />
rc.left = this.Left;<br />
rc.right = this.Left + this.Width;<br />
rc.bottom = this.Top + this.Height;<br />
rc.top = this.Top;<br />
<br />
if(DockStyle != DockStyle.Right && DockStyle != DockStyle.Left) <br />
{<br />
	rc.left = 1;<br />
	rc.right = 1 + 3;<br />
} <br />
else <br />
{<br />
	rc.top = 1;<br />
	rc.bottom = 1 + 3;<br />
}<br />
<br />
Win32Lib.DrawEdge( hDC, ref rc, Win32Lib.BDR_RAISEDINNER, Win32Lib.BF_RECT );<br />


Note that this calls the Windows API using Interop to do this. This gives you the gripper that you see in VC++ 6.0, There are other ways to do this, this is just an example.

Human beings were not meant to sit in little cubicles staring at computer screens all day, filling out useless forms and listening to eight different bosses drone on about about mission statements. -- Peter Gibbons
GeneralRe: How do you get the grabber icon on a toolbars? Pin
TheBlindWatchmaker1-Dec-05 11:15
TheBlindWatchmaker1-Dec-05 11:15 
GeneralRe: How do you get the grabber icon on a toolbars? Pin
Andy Moore1-Dec-05 11:21
Andy Moore1-Dec-05 11:21 
QuestionBezier Curves and Text Pin
pende_bhanu30-Nov-05 11:31
pende_bhanu30-Nov-05 11:31 
QuestionQBE Grid Pin
Reanalyse30-Nov-05 11:08
Reanalyse30-Nov-05 11:08 
QuestionHow do you get the &quot;dockable&quot; icon on forms/controls? Pin
TheBlindWatchmaker30-Nov-05 10:51
TheBlindWatchmaker30-Nov-05 10:51 
AnswerRe: How do you get the &amp;quot;dockable&amp;quot; icon on forms/controls? Pin
Judah Gabriel Himango30-Nov-05 11:08
sponsorJudah Gabriel Himango30-Nov-05 11:08 
GeneralRe: How do you get the &amp;amp;quot;dockable&amp;amp;quot; icon on forms/controls? Pin
TheBlindWatchmaker30-Nov-05 13:43
TheBlindWatchmaker30-Nov-05 13:43 
QuestionVariable Name Pin
saborchulo30-Nov-05 10:41
saborchulo30-Nov-05 10:41 
AnswerRe: Variable Name Pin
Turtle Hand30-Nov-05 10:43
Turtle Hand30-Nov-05 10:43 
GeneralRe: Variable Name Pin
Judah Gabriel Himango30-Nov-05 11:12
sponsorJudah Gabriel Himango30-Nov-05 11:12 
AnswerRe: Variable Name Pin
Judah Gabriel Himango30-Nov-05 11:11
sponsorJudah Gabriel Himango30-Nov-05 11:11 
Questionissue of getting the names of all dial-up connections on a given system with API RasEnumEntries Pin
Vlada Nesic30-Nov-05 9:47
Vlada Nesic30-Nov-05 9:47 
QuestionResxResourceWriter not available Pin
malharone30-Nov-05 7:56
malharone30-Nov-05 7:56 
AnswerRe: ResxResourceWriter not available Pin
Dave Kreskowiak30-Nov-05 9:37
mveDave Kreskowiak30-Nov-05 9:37 
GeneralRe: ResxResourceWriter not available Pin
malharone30-Nov-05 10:00
malharone30-Nov-05 10:00 
GeneralRe: ResxResourceWriter not available Pin
Dave Kreskowiak30-Nov-05 10:42
mveDave Kreskowiak30-Nov-05 10:42 
GeneralRe: ResxResourceWriter not available Pin
malharone30-Nov-05 10:51
malharone30-Nov-05 10:51 

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.