Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
how can I create designed properties in user control like DataBindings property of TextBox control
Can someone help me with a link or video tutorial
You can try out http://msdn.microsoft.com/en-us/library/a19191fh.aspx wich will help you in creating designtime properties. Look especially at DesignerSerializationVisibilityAttribute.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
i have a program. If i over click a button, the whole program freezes. i don't know the code to error handle this. does anyone know how to error handle this.
thanks
Put your button clicked code in another thread see this examples:
Gui freeezing when using threading
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
How can I have the resize handles (the little squares or circles on the corners) during run time in my controls? Is there a component that allow me to have it? Or someone has a piece of code to do it?
If you mean windows form applications, Try these links:
http://www.codeproject.com/Articles/17245/Runtime-Control-Resizer
http://www.codeproject.com/Articles/24096/Drawing-Resizable-Controls-at-Runtime
http://www.codeproject.com/Articles/13184/Runtime-resizable-controls
You mean something else, Comment this answer to talk about.
Hope to be helpful
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions must demonstrate a minimal understanding of the problem being solved. Tell us what you've tried to do, why it didn't work, and how it should work. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I have multiple paragraphs in my RichTextBox. Is it possible to show particular paragraph only alone?
thanks in Advance...
Keep paragraph's starting and ending indexes. So you can make selection and navigate to there using RichTextBox.SelectionStart and then RichTextBox.SelectionLength. There is no such built in method. You will have to do it all yourself.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I am trying to figure out how to make a form show up like is on the Paint.NET Program, like the History, Colors, Etc
Like where they fade out over where the painting is.
Is there any way that this can be done?
Any help would be appreciated.
both Winforms Form and WPF / Silverlight Window have an Opacity property. Set that to something below 1.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
Anyone know all Method Name of DirectoryEntry.Invoke
User related:
https://learn.microsoft.com/en-us/windows/win32/api/iads/nn-iads-iadsuser
Group related:
https://learn.microsoft.com/en-us/windows/win32/api/iads/nn-iads-iadsgroup
Some others:
https://learn.microsoft.com/en-us/windows/win32/api/iads/nn-iads-iads
https://learn.microsoft.com/en-us/windows/win32/api/iads/nn-iads-iadscontainer
https://learn.microsoft.com/en-us/windows/win32/api/iads/nn-iads-iadsnamespaces
https://learn.microsoft.com/en-us/windows/win32/api/iads/nn-iads-iadsopendsobject
https://learn.microsoft.com/en-us/windows/win32/api/iads/
(taken from: https://www.experts-exchange.com/questions/21282035/DirectoryEntry-Invoke-Methods.html)
Check out the methods for the ADSI
The Invoke calls call the ADSI methods (atleast that is my understanding)