microsoft.public.dotnet.framework.windowsforms.controls | Forum profile
|
|
Forum profile page for microsoft.public.dotnet.framework.windowsforms.controls on http://www.microsoft.com/communities/newsgroups....
This report page is the aggregated overview from a single forum: microsoft.public.dotnet.framework.windowsforms.controls, located on the Message Board at http://www.microsoft.com/communities/newsgroups....
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "microsoft.public.dotnet.framework.windowsforms.controls" on the Message Board at http://www.microsoft.com/communities/newsgroups... is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on microsoft.public.dotnet.framework.windowsforms.controls:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
9
|
34
|
100
|
|
Post:
|
23
|
56
|
157
|
|
|
microsoft.public.dotnet.framework.windowsforms.controls Posting activity graph:
|
Top authors during last week:
user's latest post:
ListBox vs. ListView in...
Published (2008-11-18 14:21:00)
"Mike" <MLM450@hotmail.com> wrote in message news:3715e254-412d-49ad-a2d9-bfbfb15e9f1c@k1g2000prb.googlegroups.com... > First, I said this is when they select multiple "at once". Sorry that > wasn't clear enough for you, but the shift-click is the only way I'm > aware of to do that. With ctrl+click, you pick items one at a time, > not all at...
user's latest post:
ListBox vs. ListView in...
Published (2008-11-18 14:27:00)
On Nov 18, 5:19pm, "Jeff Johnson" <i....@enough.spam> wrote: > "Mike" <MLM...@hotmail.com> wrote in message > > news:3715e254-412d-49ad-a2d9-bfbfb15e9f1c@k1g2000prb.googlegroups.com... > > > First, I said this is when they select multiple "at once". Sorry that > > wasn't clear enough for...
user's latest post:
GroupBox Autosize in...
Published (2008-11-14 15:57:00)
If I drop a GroupBox on a form, drop a TextBox into it, and set the GroupBox's AutoSizeMode to GrowAndShrink and AutoSize to True, the GroupBox Padding and Margin to 0 and the TextBox Margin to 0, the GroupBox height is set so that there is a fairly large space (more than half the height of the textbox) between the bottom of the TextBox and the bottom of the GroupBox. There is no such margin on the right side - the right side...
user's latest post:
DataGridView in...
Published (2008-11-20 06:38:00)
If there is no data just pass teh value as empty: something like this: dataGridView.DataSource = null; DataRow newRow = PortTable.NewRow(); if (DataValue!=null) { newRow["Test"] = DataValue; } else { newRow["Test"] = ""; } PortTable.Rows.Add(newRow); dataGridView.DataSource = PortTable; "Spyrogyra" <Spyrogyra@discussions.microsoft.com> wrote in...
user's latest post:
DataGridView in...
Published (2008-11-14 11:01:00)
Wndr wrote: > Hi I am new to C#. > Now I am working with DataGridView. How coudl I find all event that this > GridView supports. > So far I found only DataGridView_CellContentClick(). I am looking to event > similar to in VB6 > DataGridView_AfterUpdate(). > Any help appreciated. > > If you are using the designer just click on the datagridview and go to the property...
user's latest post:
Webbrowser Control - List of...
Published (2008-11-14 07:51:00)
On 14/11/2008 in message <OCUgAimRJHA.1164@TK2MSFTNGP02.phx.gbl> Jeff Johnson wrote: >Ooh, I feel like a search god now! Try this: > http://msdn.microsoft.com/en-us/library/ms533049(VS.85).aspx You are indeed a search god, thank you :-) I realised I was useless with Google some years ago when looking for help with a large hard drive not being recognised. After seeking help I was told it was a big hard...
user's latest post:
DataGridView in...
Published (2008-11-20 02:02:00)
How to display an empty DataGridView with particular rows and columns (eg. 32 X 8 i.e. 256 cells) on the main form load event and display images in cells depending on the value read from a hardware, especially when there is no datasource to populate the DataGridView
user's latest post:
listview item loses background...
Published (2008-11-19 20:26:00)
m.p.dotnet.framework.windowsforms.controls. have recently upgraded from vb.net 2002 to 2005, and have encountered the following problem. I have a listview with say a dozen items. Following a user action I programmatically update the background colour of the currently selected item to red. Lets say in this case it was the 3rd row. The 3rd row is still the current item, so its still got a blue background. Now in the past if I...
user's latest post:
Mixing languages, especially...
Published (2008-11-20 14:38:00)
Can you set the RightToLeft property independently for individual cells or columns in a datagridview? Here's the much lengthier explanation of what I'm trying to do: I have a simple application. It's for creating vocabulary lists for foreign language instruction. Works great...except if one of the languages involved is Hebrew. (My guess is it wouldn't work well with any right to left language, but I've only...
user's latest post:
Security Issues when trying to...
Published (2008-11-20 03:34:00)
Hi there, I have a windows form which allows the user to enter information and then after the submit button is clicked an .exe is started and the information from the form is passed. After clicking the submit button I keep getting a security exception - after searching for this it seems most people get this error when trying to access an .exe on a shared drive - this is not the case for me. Does anyone have any ideas how I can fix...
|
|
|
|
Latest active threads on microsoft.public.dotnet.framework.windowsforms.controls::
Started 1 day, 21 hours ago (2008-11-20 03:34:00)
by Nat
Hi there, I have a windows form which allows the user to enter information and then after the submit button is clicked an .exe is started and the information from the form is passed. After clicking the submit button I keep getting a security exception - after searching for this it seems most people get this error when trying...
Started 1 day, 10 hours ago (2008-11-20 14:38:00)
by David
Can you set the RightToLeft property independently for individual cells or columns in a datagridview? Here's the much lengthier explanation of what I'm trying to do: I have a simple application. It's for creating vocabulary lists for foreign language instruction. Works great...except if one of the languages involved...
Started 1 day, 22 hours ago (2008-11-20 02:02:00)
by Spyrogyra
How to display an empty DataGridView with particular rows and columns (eg. 32 X 8 i.e. 256 cells) on the main form load event and display images in cells depending on the value read from a hardware, especially when there is no datasource to populate the DataGridView
Started 2 days, 4 hours ago (2008-11-19 20:26:00)
by ari
m.p.dotnet.framework.windowsforms.controls. have recently upgraded from vb. net 2002 to 2005, and have encountered the following problem. I have a listview with say a dozen items. Following a user action I programmatically update the background colour of the currently selected item to red. Lets say in this case it was the 3rd ...
Started 3 days, 11 hours ago (2008-11-18 13:23:00)
by Mike
Is there a way to get a ListView control to fire its SelectedIndexChanged event like the ListBox control? When the user selects multiple items at once, the ListView fires the event as each item gets selected. The ListBox waits to fire the event until all selections are complete. Thanks, Mike...
Started 1 week ago (2008-11-14 15:57:00)
by Jack Jackson
If I drop a GroupBox on a form, drop a TextBox into it, and set the GroupBox's AutoSizeMode to GrowAndShrink and AutoSize to True, the GroupBox Padding and Margin to 0 and the TextBox Margin to 0, the GroupBox height is set so that there is a fairly large space (more than half the height of the textbox) between the bottom of the TextBox...
Started 1 week ago (2008-11-14 10:53:00)
by Wndr
Hi I am new to C#. Now I am working with DataGridView. How coudl I find all event that this GridView supports. So far I found only DataGridView_CellContentClick(). I am looking to event similar to in VB6 DataGridView_AfterUpdate(). Any help appreciated....
Started 1 week, 1 day ago (2008-11-13 15:33:00)
by Jeff Gaines
I have managed to put together a very simple HTML editor using the Web Browser control. To send commands I am using: Webbrowser.Document.ExecCommand(cmdString, .... I cannot find a list of all the commands - I finally found an MSDN link but it is dead. Does anybody know where I can find the command list please...
Started 1 week, 2 days ago (2008-11-12 03:47:00)
by Monika
http://warnet.ws/img2/183/dom/4.jpg http://warnet.ws/img2/183/dom/1.jpg http://warnet.ws/img2/183/dom/3.jpg http://warnet.ws/img2/183/dom/5.jpg http://warnet.ws/img2/183/dom/6.jpg http://warnet.ws/img2/183/dom/7.jpg http://warnet.ws/img2/183/dom/8.jpg http://warnet.ws/img2/183/dom/9.jpg http://warnet.ws/...
Started 1 week, 5 days ago (2008-11-09 08:20:00)
by Eric
Using VS 2008 sp1, 3.5 sp1 I have two regular Button controls on a Windows Form, one is Save the other is Cancel. On the form's properties, I set the AcceptButton to the Save and the CancelButton to the Cancel. It's my understanding that all this is supposed to do is fire the respective click events if the user presses the...
|
|
Hot threads for last week on microsoft.public.dotnet.framework.windowsforms.controls::
Started 3 days, 11 hours ago (2008-11-18 13:23:00)
by Mike
Is there a way to get a ListView control to fire its SelectedIndexChanged event like the ListBox control? When the user selects multiple items at once, the ListView fires the event as each item gets selected. The ListBox waits to fire the event until all selections are complete. Thanks, Mike...
Started 1 week, 1 day ago (2008-11-13 15:33:00)
by Jeff Gaines
I have managed to put together a very simple HTML editor using the Web Browser control. To send commands I am using: Webbrowser.Document.ExecCommand(cmdString, .... I cannot find a list of all the commands - I finally found an MSDN link but it is dead. Does anybody know where I can find the command list please...
Started 1 week ago (2008-11-14 10:53:00)
by Wndr
Hi I am new to C#. Now I am working with DataGridView. How coudl I find all event that this GridView supports. So far I found only DataGridView_CellContentClick(). I am looking to event similar to in VB6 DataGridView_AfterUpdate(). Any help appreciated....
| |