| Thread | Last Post | Replies |
|
| FileSystemEventArgs, e.ChangeType enumeration | 30 Sep 2008 21:12 GMT | 2 |
Where can i find this and perhaps all the other enumerations for all other types that inherit from EventArgs. I know it's a simple question. appreciated!
|
| Is there any better way than obfuscation? | 30 Sep 2008 19:01 GMT | 12 |
As I recently read this article: http://www.codeproject.com/KB/security/DontRelyOnObfuscation.aspx?msg=2742011#xx 2742011xx I am afraid to release my application after obfuscation. Does anybody knows some better approach? It doesn't metter if it is a commercial
|
| supplying my own business object to crystal reports basic[simple] | 30 Sep 2008 18:56 GMT | 3 |
Basically, Instead of getting data from an oledb database or something I have simple classes that contain computed values that should go to a crystal report. How do I get Crystal reports Basic(visual studio 2008) to create a
|
| passing object reference to the method | 30 Sep 2008 18:33 GMT | 2 |
Say I pass an object of a class (reference value I suppose) to a method, and I want to pass it by reference. Do I need to preappend it with ref. public interface IFoo{}
|
| Prevent screen flickering - Hide Carat???? | 30 Sep 2008 18:16 GMT | 1 |
I am trying to prevent screen flickering when clicked on a button; how do I use Hide Card in vs2005? Any other way?
|
| How to store values in app.config or settings.cs | 30 Sep 2008 18:08 GMT | 3 |
I have tried to use the app.config and settings.cs files to store my data (which I want to be user changeable at runtime). I can write to (what I assume is an object in memory) and it does seem to work...however, once the application is closed and reopened the changes are lost. ...
|
| "Special" or Non-English characters in Strings | 30 Sep 2008 18:01 GMT | 4 |
Using a console application, I am trying to process a csv file of names that are stored like this: flintstone, fred rubble, barney
|
| IComparer, Compare, CompareTo for multiple comparisons for Sort in Array and List | 30 Sep 2008 17:01 GMT | 3 |
This is an example of using multiple comparison criteria for IComparer/ Compare/CompareTo for List<> and Array. Adapted from David Hayden's tutorial found on the net, but he used ArrayList so the format was different.
|
| Deserialization issue | 30 Sep 2008 16:41 GMT | 6 |
I'm getting an error when deserializing my objects: "The ObjectManager found an invalid number of fixups. This usually indicates a problem in the Formatter." I added a new object to a class that gets serialized and put the
|
| How to reduce the size of Images(JPEGs) | 30 Sep 2008 16:29 GMT | 2 |
When I upload pictures to Google(picasa) picture size is autmatically reduced. I would like to do that in Csharp. Is there an API to do that? Thanks in Advance
|
| Creating a simple UserControl in Outlook Addin | 30 Sep 2008 16:03 GMT | 1 |
I am new to C#. Have created a simple outlook add-in, which adds a command bar in Outlook. On click of the button, I would like to load the a simple dialog with a Text Box and a Button. I would like to populate the textbox with a value, before displaying it.
|
| thanks to all | 30 Sep 2008 15:49 GMT | 3 |
I just want to say thank you very much for all the help over the past 2 years, youve all gave myself and others
|
| Windows Service Problems | 30 Sep 2008 15:28 GMT | 2 |
i am trying to learn how to program a windows service application i had add an event log and a timer that used to write to file here is the code protected override void OnStart(string[] args)
|
| Creating new class using switch statement. | 30 Sep 2008 15:12 GMT | 5 |
I have a hashtable which has key and value. If the key is set to 'a' then I need to create a class1 and if it has key 'b' then I need to create class2 etc. (There is no name relation between the key and class name), Right now I am using switch/case to do it. Is it possible
|
| Property parameter? | 30 Sep 2008 15:09 GMT | 5 |
Is there a way to pass a property around as a parameter without reflection? My current motivation for this is the code below is testing multiple properties to see that an exception is thrown if a user tries to set the string value to an empty value. Ideally I'd like to have one ...
|