| Thread | Last Post | Replies |
|
| Find Objects Bound To DataTable? | 26 Jun 2006 21:16 GMT | 2 |
I wondering if there is a way to determine which objects are bound to my DataTable. I update my DataTable from a thread. My DataTable is bound to a DataGrid in my main UI. Apparently I will need to perform my table update on the UI Thread or the DataGrid has issues.
|
| Capturing all HTTP traffic between browser and server in .NET | 26 Jun 2006 20:35 GMT | 4 |
I have a .NET (C#) web browser control wrapper that automates the browser for testing purposes. I'd like to add the ability of reading all HTTP traffic between the browser control and a web server and I'd like to do it in C#, through the web browser control.
|
| Crystal Reports, C# and a random 100% CPU lockup | 26 Jun 2006 20:30 GMT | 1 |
**Using Visual Studio 2005 and Crystal Reports XI Release 2 Developer Edition. I currently have a multi-threaded C# application that loads a Crystal Report at runtime, fills out the necessary parameters and then exports
|
| Retreiving the correct MacAddress using the corresponding IP address | 26 Jun 2006 20:30 GMT | 1 |
I want to to find the Mac address of the NIC being used by a given process using a corresponding IP address. It should be pointed out that the machines that this program will be running on will be using more then one NIC. SO I have to use the IP adress to get the correct
|
| Add old ActiveX controls and Ocx's to the toolbox | 26 Jun 2006 20:09 GMT | 2 |
I am trying to use the utility tlbimp to add old ActiveX controls and Ocx's to the Toolbox of Vs2005. I tried to apply the the tlbimp to both the Tlb or Dll or Ocx files. The resulting Dll would not load into the toolbox. I suspect I am missing something fundamental. Note that I ...
|
| Calling nAnt functions with parameters? | 26 Jun 2006 19:53 GMT | 1 |
I have the following nAnt task which does not work. The problem is that I an calling is-assembly(...) passing in as a parameter a dynamically property. This property is not known until runtime. I get the error "Unexpected token 'Dollar'". How can I call functions that take ...
|
| Max Execution Time on Thread | 26 Jun 2006 19:41 GMT | 2 |
How can I set the max execution time on a thread? I would like to throw an exception or indicate a failure if a thread runs longer than x seconds. Thanks, Dan Manges
|
| Showing a Control underneath another Control | 26 Jun 2006 19:25 GMT | 1 |
Hello all. I am interested in hiding a ListView Control underneath a TabControl. The ListView Control will contain say, 5 columns. When the user selects 1 of the tabs, I want to show the ListView and 3 columns (the other 2 will be hidden). When the user selects the other tab, I ...
|
| Databinding to user control | 26 Jun 2006 19:18 GMT | 3 |
I have a DataGridView displaying data from a DataSet. To the right of that I have a custom user control which displays one of the data set fields. The custom user control is bound to the data set object and displays the data correctly when I move from row to row.
|
| help with generics | 26 Jun 2006 19:07 GMT | 6 |
hello all, i have two base classes, one inherits from bindinglist<> i need baseobject contains a generic reference to collection that contains it class baseobject<T> : where T:baseobjectcollection<baseobject<T>> class baseobjectcollection<T> : BindingList<T> where
|
| Help parsing string | 26 Jun 2006 18:36 GMT | 3 |
I'm new to C# and I'm trying to parse a string into several variables. I used to do this in C with sscanf, but I don't know how to do it in C#. Basically I have this. String cBuffer = "abc|defgh|ijk";
|
| Regex searching for ' | 26 Jun 2006 18:22 GMT | 3 |
I need some help using regular expresions. I need an expresion to find a single ' in a string. The problem, in the string multiple ' are valid Example:
|
| Serialization Stuff... | 26 Jun 2006 18:09 GMT | 5 |
Well I wrote this code that saved a Serialized ArrayList to disk in VB.NET and tried to read it in with another one in C#. Got some funny exception about my Assembly (can't rember exactly), what's with the assembly stuff.
|
| Component develoment | 26 Jun 2006 17:54 GMT | 3 |
I am developping a component that there are some properties and methods, and one of these properties has its own properties (ex. A componen name MYCustomers with the property ADDRESS that has NAME, NUMBER, CITY, ZIPCODE as its own propertis) How do I create this component in a ...
|
| Creating inputless Button | 26 Jun 2006 17:47 GMT | 2 |
I'm trying to create a button that will take no focus (it's for a dialog designer app). I've tried sub-classing the button control and overriding the WndProc() function to trap button messages. This method doesn't seem to be
|