| Thread | Last Post | Replies |
|
| Determine Type of Generic | 07 Jul 2007 19:25 GMT | 4 |
I am trying to determine the Type of the call to a Generic method: public static void Main() { Check<string>();
|
| c# Thread problem | 07 Jul 2007 19:24 GMT | 20 |
I have some question.. This is my first time to use thread.. Following code does not have error but two warring The warring is
|
| How delete row from DataView when index not given, only value? | 07 Jul 2007 17:13 GMT | 1 |
I have a DataView in which I want to delete a row. I know I can do MyDataView.Delete(x) where x = the index. But I only have the value of a column in it (PenNumber, actually). Isn't there a way I can do something like MyDataView.Find("PenNumber = 123")
|
| Caveats? | 07 Jul 2007 17:01 GMT | 2 |
I program on windows XP Prof edition with administrator priviledges. I remember reading an article that on windows vista it will require administrator priviledges to run a global keyboard hook - and this becomes suddenly relevant as I am trying to make an application that ...
|
| Identifying if values on a form change | 07 Jul 2007 15:38 GMT | 2 |
I have a windows form which contains various controls like textboxes, comboboxes, checkboxes etc. When the user clicks the ok button I would like to determine if the data has changed in one or more of this controls.
|
| Dataset statement: ->> IN ('xx', 'yy') <<- Question | 07 Jul 2007 10:08 GMT | 6 |
Trying to run a simple query on my dataset the SQL statement looks like this: select * from person where id in (@p) When using more than one id in the "in statement", I get nothing!
|
| Placing controls dynamically on web form | 07 Jul 2007 10:06 GMT | 2 |
I need to find a way to place multiple textboxes and other controls dynamically on a web form, I tried to put a placeholder on a form then create and add controls dynamically into the place holder. It is not working, all controls added disappear after the postback.
|
| How to auto check a checkbox ? | 07 Jul 2007 07:23 GMT | 6 |
About the webbrowser, I can do the auto fill in text now. Now, I have another problem, I can't do auto check a checkbox. Whatever what value I set to the checkbox, it is still showing un- checked.
|
| Check before calling a method on a potentially null object. | 07 Jul 2007 04:18 GMT | 2 |
Rather than... if ( myInstance != null ) { myInstance.Dispose();
|
| instantiate a class using reflection issue | 07 Jul 2007 04:13 GMT | 1 |
Hi how can I instaltiate a class and call its method. the class has non default constructor. all examples i see only with class of defatul constructor. I am trying to pull the unit test out from the product source code, but still want to execute them under nunit.
|
| wia exposure settings for a webcam | 07 Jul 2007 03:40 GMT | 1 |
Hi, I'm talking to a webcam via the WIA interface. Does anyone know how to change the exposure settings? Thanks
|
| C# Generics: cannot convert 'System.DateTime' to 'T' | 07 Jul 2007 00:39 GMT | 7 |
This is my first foray into writing a generic method and maybe I've bitten off more than I can chew. My intent is to have a generic method that accepts a value name and that value will be returned from the source. My first attempt was as
|
| Forms.Timer Tick event and threading issue | 06 Jul 2007 21:45 GMT | 1 |
I have a simple c# winforms app which was comprised of two seperate projects - a splash screen and a main app. The main app called the splash screen, which used a Forms.Timer, created on a seperate thread. As various events are processed (eg opening db, retrieving data, etc.) ...
|
| What solution for reading messages from Exchange in C#? | 06 Jul 2007 20:57 GMT | 1 |
Please let me know which tool should I start with in order to fetch attachments from email message in my Outlook profile. I just want to programmatically fetch messages from account on Exchange 2003 using Exchange protocol.
|
| Set/Unset Bits Operation | 06 Jul 2007 20:17 GMT | 2 |
I've written a small operation that sets/unsets bits within an unsigned integer. Is there a better way to do this? static uint setBits(uint original, uint newValue, uint offset, unint mask)
|