My gut feeling tells me I may have to implement a custom appender to do this. But I'm concerned about the threading issue, since I want the text box to display some message in a real-time manner as the system executes a series of actions.
For example, when user clicks some button on my Winform application, the click event handler calls 2 methods: Act1() and Act2(). So I want when Act1() finishes, the text box on the form displays some...
Search Result
Collapse
10 results in 0.0029 seconds.
Keywords
Members
Tags
-
How can I lose focus on a control when I click outside it?
I have a form that contains text boxes and combo boxes. My problem is that when I click on a control, let's say a comboxbox, I can edit inside it but when I click outside, the main form where my controls are contained, my focus is still in the combobox. -
Play With String Of Button/Label
Suppose if my form has button and label and Button1 has Text Property’s Text is “Hello” Than If I wants to make some character of “Hello” text in Bold,Underline and size increment than How to do it as below?.
Example of Button1 string/text
Code:Normal Put some Efforts on ---------------------------------------------------- Hello H[B][U]E[/U][/B]llo Or He[B]L[/B]lo
-
Christopher T started a topic Why won't background worker execute code inside _RunWorkerCompleted event?in .NETWhy won't background worker execute code inside _RunWorkerCompleted event?
I am working on a C# .net 2.0 winform application. The user enters data into the main form and clicks the "run" button. A form called "optionsWin dow" is displayed via optionsWindow.S howDialog(). The user selects a few options on this form then clicks a "go" button. This button kicks off a background worker that runs a 3 minute process. On worker complete, I want to close the optionsWindow and open a processComplete... -
Alteration In Winform Designs Mode
I have designed winform with several controls and ready for run. It's work fine but now I wants to add panel on it with docking. how can i do it?.
In short after design the winform is it possible to add panel on docking with retrive control on it?. -
Change Treeview Link line style
Hi All,
Can it be possible to change the Treeview link line(line connecting parent & Child node) style.Default its coming as dotted line .I want to make it solid line.
I am using WIN-FORM.
Please suggest.
-Gyanendar -
Printing TreeView
Hi All,
I using WIN FORM .net 3.5.
I want to print the treeview. I used Treeview.Conver tToBitmap() to get the bitmap and then converted it to Image and draw that on printDocument.
But the problem that ,it draw only those part of treeview which is visible not the whole treeview.
Please suggest .
Regards,
Gyanendar -
Labeling treeview link
Hi All,
Is it possible to label (with some text) the link between two node of Treeview?
Please suggest the way .
Regards,
Gyanendar -
TreeView Image Size
Hi All,
I am working on WinForm.
I m using treeview with some image for each node.
I have used ImageIndex to assign the Image for a node.When I am running the application,the Image is coming properly but its size getting reduced.
TreeView.ItemHe ight is setting the item height ,not enlarging the Image size.
Can any one help me in controlling the size of Image.
Regards,
Gyanendar -
Display Tree View in different manner
Hi ,
I am working on WINFORM C# .
Normally when we use treeview control, it display data something like
Code:root | |___O |___O
Code:Root | ___|____ | | O O
The attached picture depicts the exact layout of treeview...