all groups > dotnet windows forms > may 2004 > threads for monday may 31
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
Memory issues
Posted by Bruno Rodrigues at 5/31/2004 4:36:50 PM
Hi,
I'm having several memory leaks in my Windows Form (C#). Testing, I
found a curious thing:
Put a ListView control in a Windows Form, run the project and start the
TaskManager. Each time you focus the form or pass the mouse in/out the
ListView, the memory used by the application ... more >>
Visual inheritance bug?
Posted by Tim A. at 5/31/2004 4:03:55 PM
Hello gurus!
In my C# project I have a localized form that I use as the prototype for two
others. The prototype form has a ListBox control data bound to an ArrayList
containing data elements of a custom class type. At design time its Items
collection is empty and is populated by data binding... more >>
DataSource property to control design time
Posted by Morten Lyhr at 5/31/2004 4:01:06 PM
I want to add a DataSource property to my control that, at design time, will allow the designer to drop down a list of valid datasource components just like the DataGrid control. The type on the DataSource property is just 'object', so I know it isn't that. Is there a special designer attribute I ha... more >>
How can I get the name of a ToolBarButton object.
Posted by Bill Wilson at 5/31/2004 2:16:03 PM
I need to iterate the Buttons collection in a toolbar and get the name of each button. The objects in the collection are not normal Button objects. They are ToolBarButton objects, which do not appear to have a Name property. Is there some other place to get the name? ... more >>
SEHException when closing a form
Posted by Ryan Gregg at 5/31/2004 12:08:32 PM
I'm trying to enable Windows XP themes in my application. First I tried
adding a call to Application.EnableVisualStyles(), but that didn't appear to
actually do anything (aka I still wasn't getting styles). Yes, I have all
my buttons and what not using FlatStyle = FlatStyle.System.
I added a... more >>
Databinding - Best Practice (object-oriented)
Posted by anthony NO[at]SPAM netcourrier.com at 5/31/2004 11:19:32 AM
Hi,
I would like to know your opinions about the best way of implementing
databinding in an application.
Let's take a simple example: we have a table called 'Employee' and we
would like to display its content in a DataGrid.
1st solution:
-Export all the Employee records from the database... more >>
WinForms and WebService
Posted by sunil NO[at]SPAM volcanomail.com at 5/31/2004 6:06:32 AM
Dear All,
If I create a proxy object to a WebService in my Form as an
instance object, does it create a process thread in my WebServer that
is hosting the WebService?....
As the WebService object gets an error if I try to call a WebService
method after around 30 minutes of inactivity...is re... more >>
DataGrid
Posted by PAJ at 5/31/2004 5:56:02 AM
The datagrid.click event only fires when the grid is clicked (ie the lines around each cell
Is there a way to detect a click inside a cell in the datagrid
TIA... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
DataGrid
Posted by PAJ at 5/31/2004 5:31:02 AM
I am pointing a DataGrid at a DataTable to display some data. Is there a way to
a) hide columns that are displaye
an
b) update the row header with some tes
TIA... more >>
Handling Exceptions in WinForms
Posted by sunil NO[at]SPAM volcanomail.com at 5/31/2004 5:03:47 AM
Dear All,
In ASP.Net we had...
Sub Page_Error(Source As Object, E As EventArgs)
Dim message As String = "<font face=verdana color=red>" _
& "<h4>" & Request.Url.ToString() & "</h4>"
_
& "<pre><font color='red'>" &
Server.GetLastE... more >>
Embedding the WOrd Windows in Win Forms or other Windows COntrol
Posted by vikash NO[at]SPAM nagarro.com at 5/31/2004 4:52:03 AM
HI,
I want to embed the Microsoft word window in my WIndows forms designed
in C# ,net.....
can anybody suggests, apart from using the Webbrowser control, what
can be the other option avaialable to us.
Thanks
Vikash... more >>
Threading
Posted by Brian P. Hammer at 5/31/2004 1:09:58 AM
All - I have the need to make my app multi threaded for those long =
running tasks. Some of them are not a problem but the question I have is =
with SQL and populating items on a form. If I create a new thread, =
connect to my SQL, run a long query and then populate a combobox within =
this new ... more >>
|