| Thread | Last Post | Replies |
|
| Globally capturing keyboard events for a WinForm application? | 10 Apr 2008 00:01 GMT | 4 |
I've done this before, but no longer have the code and can't remember how. Does anyone have an example on how to globally monitor keyboard events for an application and modify them to treat, for example, an "ENTER" event as a "Tab" event... or something similar.
|
| ReaderWriterLockSlim + Dispose? | 09 Apr 2008 23:42 GMT | 42 |
One last question today :) Most locks I've used never had a Dispose (Monitor, ReaderWriterLock, etc). Looking at the ReaderWriterLockSlim's Dispose method its just cleaning up some Threading.WaitHandle's.
|
| DataTable Binding with DataGridView -- Doco Example Needs Work | 09 Apr 2008 23:40 GMT | 3 |
This is detailed and thus long. Full code of example is found below. Thanks in advance for any help sent my way!! -- Tom In my wonderings about Bindings and DataGridView I came across what appeared to be an excellent example at the following link >>
|
| Whats LinkedListNode<>? | 09 Apr 2008 22:47 GMT | 3 |
When I create a LinkedList<> what is a LinkedListNode compared to a value? AddFirst(54) for example, does it turn 54 into a node or what? I'm trying ot find out what the LinkedListNode is specifically for? Basically just a wrapper around the reference type?
|
| WPF web application that run on a web server | 09 Apr 2008 22:15 GMT | 3 |
Is there any way to make WPF web applications that run on a web server? I'm thinking that the WPF application would run on the web server like an asp.net web application would. Any ideas? I use VS2008 Team Suite.
|
| LINQ Classes in Separate Files | 09 Apr 2008 21:47 GMT | 1 |
Instead of having everything in a single file that represents my database I have a file for each table and a relationships.cs file for defining my relationships. I then created a ClassExtenstions.cs file with partial classes which provide custom functionality such as
|
| System.Collections.Generic.List<int> myList = new System.Collections.Generic.List<int>(100); | 09 Apr 2008 21:26 GMT | 2 |
System.Collections.Generic.List<int> myList = new System.Collections.Generic.List<int>(100); Does this preallocate 100 integers? Also, is there any way to preallocate an array of objects all at once?
|
| Select another page on TabControl | 09 Apr 2008 20:53 GMT | 1 |
I have 4 pages in a TabControl. Depending on a selection on the first page, I enable the second page and disable the third one, and vice-versa. What I want is that when the user try to select the disabled page I select the following one. For example, if the second page is disabled ...
|
| Gridview dynamic columns | 09 Apr 2008 20:46 GMT | 1 |
I'm modifying someone else's code and I have hit a snag. I don't want to rewrite what's already there but I might have to. I have a gridview, in the gridview is a set number of columns that
|
| Validating aspx.cs files | 09 Apr 2008 20:09 GMT | 2 |
Good Afternoon: I am seeking assistance with aspx.cs files. In order to accommodate persons with disabilities, the project website/pages must be 508 Compliant. Ongoing research on how to test aspx.cs files for 508 Compliance has been
|
| Refection problems | 09 Apr 2008 17:53 GMT | 1 |
I would like to ask about the following issue: I am activating this code after i created the InitializationAttribute and added it above objects: PropertyInfo[] properties = this.GetType().GetProperties();
|
| How to consume different web services on dev and live environments? | 09 Apr 2008 17:09 GMT | 2 |
I am working on a project that consumes web service, on my dev machine I added a web reference to http://dev.mydomain.com/webservice1.asmx. But when the codes deployed to live, I need to consume http://live.mydomain.com/webservice1.asmx instead.
|
| Dynamic variables | 09 Apr 2008 17:07 GMT | 1 |
I am very new to C#.NET 2.0 I was wondering if someone can help please. I have a screen with a datalist control. The data in the list can contain x amount of rows (usually a low number). When I click a button
|
| Parsing log file using C# | 09 Apr 2008 16:58 GMT | 8 |
I need code that can parse data from log file. The log is pipe delimited and in following format: time=2006-11-03 13:13:56| fw=199.23.48.120| user=tjolen| realm=EMEA| roles=Network Connect| src=24.141.197.139| dstname=| duration=| msg=AUT22670: Login succeeded for tjolen/EMEA. ...
|
| Connect to remote COM+ object | 09 Apr 2008 16:54 GMT | 5 |
All I'm trying to get this to work but I'm having problems. I have added reference to a COM+ dll to get the class (type) I need. Now this is hosted on a remote server (SP3DSMP1) as a COM+ component.
|