| Thread | Last Post | Replies |
|
| Report Viewer control | 31 Oct 2008 17:23 GMT | - |
Can the report viewer's local report be in a referenced project in the same solution? Or do the report viewer and the local report have to reside in the same project? Something like: Imports OtherAssembly ....
|
| nested array | 31 Oct 2008 17:08 GMT | 2 |
I need to declare an array of PortType in MainType. Does any one has idea on how to do that? Any help apreciated. public struct PortType
|
| add user control directly to form | 31 Oct 2008 15:14 GMT | - |
I'm using Visual Studio 2008 SP1. I have created a custom control, and I want to use it on a Windows Form. They way I have done this in the past is: first I add the custom control to the toolbox (Tools -> Choose Toolbox Items... -> .NET
|
| paging in the WinForm DataGridView-control ??? | 30 Oct 2008 22:40 GMT | - |
paging is a nice implemented feature in the asp.net DataGridView- control but nothing seems to exist at all for the WinForm variant. So, how does one implement paging in the WinForm DataGridView-control?
|
| Loop ALL Properties | 29 Oct 2008 22:32 GMT | 10 |
I am going in circles trying to loop through properties on 3rd party controls. For example, I have a textbox that has its maximum length located at MyTextBox.Properties.MaxLength - instead of the dotnet textbox which is MyTextBox.MaxLength. If I loop a built in dotnet control, ...
|
| How do you access DrawMode features on the AutoComplete dropdown? | 29 Oct 2008 16:55 GMT | 1 |
Is there a way to control the format of the dropdown that appears with the AutoComplete feature of a ComboBox? Specifically I'm wanting to control the ForeColor of the text and the highlight color, but in general I'd like to know if there is a OnDrawItem equivalent so that I
|
| user control - lost focus? | 28 Oct 2008 14:42 GMT | 1 |
I'm trying to trap for an event in my user control so that I can manage the state of the user interface. The control is used to enter data into a database. The control contains a tab control with one tab containing a grid
|
| Find Parent Form? | 27 Oct 2008 20:40 GMT | 1 |
I have a control (a panel) that is dynamically added to a form. Sometimes it is inside the form itself, sometimes it is added to a panel. Sometimes it is added into a panel in a panel. When the control is added into an actual form, I would like an event
|
| UserControl Copy Paste not working | 27 Oct 2008 15:47 GMT | 1 |
I have created a user control that has a textbox and a button on it. For some reason this control will not let me Cut, Copy or Paste into the textbox. I load the control at runtime as it makes up a control array.
|
| GridView Control Question | 24 Oct 2008 08:56 GMT | 1 |
I cannnot find a way to set the current row using the native GridView control. The CurrentRow() method only supports Get. Is there a way I can set the current row in the GridView control? Thanks.
|
| how to change windows default scrollbar color | 24 Oct 2008 08:02 GMT | 1 |
its possible to change scrollbar color in vb.net(win appli).if u have idea plz share me.thnks
|
| Multiline Textbox doesn't show carriage returns | 23 Oct 2008 06:01 GMT | 3 |
I bound a string property of an object to a Multiline Textbox. I've set the AcceptsReturn and AcceptsTab properties to True. However, the value appears in the Textbox as a single line, even if the value contains carriage returns. When I do a Console.Write(value) the value ...
|
| Return Value From VBScript In .NET | 22 Oct 2008 17:51 GMT | 1 |
I am using an MSScriptControl in vb.net to do an evaluation of a text string: tempAnswer = MyScriptControl.Eval(MyScriptString) But how can I use this to get a return value from a vbscript function:
|
| ToolStripMenuItem highlight color? | 21 Oct 2008 17:25 GMT | 3 |
When you move your mouse over a ToolStripMenuItem it highlights (hot tracks). Is there any way to retrieve the highlight color? I've skimmed some of the ToolStripxxx objects and no property has jumped out at me.
|
| Event firing twice in UserControl issue | 20 Oct 2008 17:09 GMT | 1 |
I have a user control (from Microsoft which originally was simply a control with no panel) with a panel then a custom ListControl. I want to be able to trap SelectedValueChanged event of the ListControl. The code shown below works but fires off the event twice, any thoughts?
|