all groups > dotnet windows forms > january 2004 > threads for thursday january 22
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
keypress handling
Posted by garrick at 1/22/2004 11:06:07 PM
I need to implement keypress handler that works anywhere on a form (actually so long as I am on one of several tab pages on my form which is basically a tab control with 4 pages. Here is the problem - my TabControl.Keypress handler intercepts the keypress only of one of the grids on that same tab do... more >>
changing appearance/color of the particular list item
Posted by Noor at 1/22/2004 7:16:41 PM
Hi everyone.
I wonder if we can do this in .net.
I want to change the appearance of the particular list items in a
checkedlistbox control.
Can we change those particular items color for example change forcolor of
some items that belongs to some particular category just to highlight them.
... more >>
How to display My Network Places with FolderBrowserDialog
Posted by N4709L at 1/22/2004 7:16:05 PM
I am using the FolderBrowserDialog in my application and it works well. However, when it is displayed, it does not include "+ My Network Places" in the list of available locations. I notice that other Microsoft applications (like opening a .zip file and clicking browse) do include My Network Places.... more >>
Preventing user interaction while showing a "wait" cursor
Posted by Aaron Queenan at 1/22/2004 5:36:07 PM
I have a form which performs some asynchronous code. I want to display a
wait cursor when it starts, and hide the wait cursor when it has completed.
This part works fairly well, using:
this.TopLevelControl.Cursor = System.Windows.Forms.Cursors.WaitCursor;
I also want to prevent user int... more >>
Panel Control Question
Posted by Duncan S. at 1/22/2004 4:36:06 PM
I am stuck on something that must be simple. However, I have been searching the obvious places for several days but haven't come up with an answer:
I have a Panel control with a custom designer. The designer creates several designer verbs. When a verb is selected, I want to instantiate a new Pan... more >>
DataGrid/DataView Display problem
Posted by Amperr at 1/22/2004 3:06:08 PM
I have a dataset table. I have filtered it and created a datview which I use as the datasource to a datagrid. That all works just fine. When I edit cells in the datagrid, then update the dataset table, the datagrid displays both the original row and the modified row. I only want to see the modified ... more >>
Control's Validating Event and closing a Form
Posted by Greg at 1/22/2004 1:02:08 PM
We handle the Validating event for textboxes that are contained in a
GroupBox, which is contained in a TabControl which is contained in a Form.
If Validation on the textbox fails, we do this:
e.Cancel = True
Now, when we click "X' in the upper right corner, the form closes. We
checked the forms... more >>
Plz Help.How recall Measure items when Listbox Resizing
Posted by Irakli Lomidze at 1/22/2004 12:55:34 PM
Dear Sirs.
Plz Help me i send this question in 7th - time.
I Use OwnerDraw Method in ListBox Component.
All Works Fine But i have problem when i resizing the ListBox Component.
(need redraw)
in List Box OnMeasureItem and OnDrawItem Called when ListBox is Created or
when Add new Item.
But... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Error- No source code available for the current location
Posted by Steven at 1/22/2004 12:46:08 PM
I'm getting a "No source code available for the current location" error randomly as I debug my app. Any idea of what may be causing this and suggestions to solve it will be really appreciated.
TIA... more >>
No Touch Deployment Warnings
Posted by Ben S. Stahlhood II at 1/22/2004 12:41:45 PM
When our smart client is loaded thru the browser, there is a balloon that
pops up with the following warning:
Microsoft .NET Security Information
This application is running in a paritally trusted context. Some
functionality in the application may be disabled due to security
restrictions.
... more >>
Problems with child forms
Posted by Nuno Monteiro at 1/22/2004 11:51:27 AM
Hello!
I've got a problem. When I maximize my mdi and try to open some mdichild
forms maximized too, sometimes
appears more then one control box. And when i try to close them, it just
leave one of them opened, and no way to close it.
as it shows in the attachement.
Anyone knows what prob... more >>
Has an Event been Fired?
Posted by news.microsoft.com at 1/22/2004 11:30:26 AM
When a control is clicked multiple events are fired in order. For example,
clicking on a combobox dropdown button fires the Enter -> Got Focus -> Click
event. In the "Enter" event handler is it possible to find out if the
"Click" event is going to happen?
I am trying to autoexpand the ComboB... more >>
A BMP file has three images in C# project
Posted by Peter at 1/22/2004 11:01:12 AM
HI I have a question defined as below:
* One BMP file has 3 images for a list view control.
* Say, this file path is c:\ xyz.bmp.
* ImageList object name is smallImageList.
* My question is how to put the file path in the C# project.
* Then I can see 3 images in the image collection editor by o... more >>
Expamding empty ComboBox problem
Posted by Alek Davis at 1/22/2004 10:57:26 AM
I have noticed the following problem. If you try to expand the drop-down
list of a ComboBox (DropDownStyle=DropDown) with no items and immediately
attempt to click another control (displayed underneath the combo box, not
sure about other locations), nothing will happen. It takes several mouse
cl... more >>
Debugging with Break option in windows forms
Posted by kenH at 1/22/2004 6:26:08 AM
I am trying to break into the VS debugger on unhandled exceptions in a form. I have tried setting and removing the jit settings in the application config file and in the options dialog. All I get on unhandled errors is the dialog with continue and quit - not with break. Isn't there a way to move fro... more >>
|