| Thread | Last Post | Replies |
|
| Strange DateTime Problem | 27 Mar 2008 21:01 GMT | 8 |
All, I'm using a WinForm app that calls methods on a remotable object. The app server hosting the object is in New York. Using the same exact application, a Sql Server 2005 datetime column's info is being
|
| unexpected characters in TCP-communication | 27 Mar 2008 19:32 GMT | 7 |
Hello NG, i have 2 functions to read and write strings on a TCP-socket. The strange thing is, that sometimes there are unexpected characters in the string.
|
| C# 2.0 Web form Table Control question | 27 Mar 2008 19:09 GMT | 2 |
How to insert another Control into a C# 2.0 Webform Table control? I am trying to have a 1 by 2 table, in the left column I have a tree view, while in the left column I have a panel. Thanks for help.
|
| PropertyChanged and .Net 1.1 | 27 Mar 2008 18:51 GMT | 3 |
I work in an bit of a crazy enviornment. Some projects are done in .Net 3.5, but others have to be done in .Net 1.1. Well, I am working on a .Net 1.1 project and need to implement the PropertyChanged event. In the .Net 3.5 world I am accustom to
|
| interface implementation and inheritance. | 27 Mar 2008 18:39 GMT | 15 |
Is it a good idea(or is it possible) for to implement half an interface in base class and half in derived class. e.g Interface IMyinterface has 3 properties. Class B and C inherit class A, and implement implement IMyinteface.
|
| codedom member field | 27 Mar 2008 18:25 GMT | 3 |
Does anyone know why the codedom puts a '@' next to the type when generating a field? does anyone know how to get rid of it?... CodeMemberField member = new CodeMemberField("bool" , "_boolfield"); classtype.Members.Add(member);
|
| Temp folder for VS.NET setup project? | 27 Mar 2008 18:18 GMT | 1 |
I need to add some files that are required only during the setup process. For example, I need to store the banner image for the installer. But, there's no such Special Folder like "Temp" in the sub menu items of the [Add speciall folder] menu. I added a "Custom
|
| I need to install a COMPILED windows service .exe | 27 Mar 2008 18:01 GMT | 4 |
here's my problem: I have an obfuscated, compiled .exe , that is a windows service, and I need it to install using a setup project. since its already compiled, I can't just go to "custom actions" and add primary output from the service. my setup project doesnt see it. so how the ...
|
| Casting error - why? | 27 Mar 2008 17:12 GMT | 5 |
I have a class property 'FileSize_MB_InitialFile', declared as Int16. When I set it like this it works: this.FileSize_MB_InitialFile = Convert.ToInt16(fileInfo.Length); But when I set it like this (since I want MB, not bytes), it throws an
|
| Problem sorting collection (Dictionary / Generics...) | 27 Mar 2008 16:51 GMT | 1 |
have made a class using Generic that sorts any custom type collection based on the selected property. When sorting on "PageName" it works fine, but when sorting on "Index" I get Null Reference Exeption. Hope some smart guru can help me out !!! :)
|
| Regular expression | 27 Mar 2008 16:26 GMT | 1 |
I have a string that looks like following: <arguments> <item name=\"FIRSTNAME\" value=\"' < & >\"/> <item name=\"NAME\" value=\"MyName\"/>
|
| Executing command/instruction from a string variable | 27 Mar 2008 16:23 GMT | 4 |
I need to execute the command/instruction which is stored in a variable. ex string str = "drRow["userid"].ToString()" here i need execute the instruction stored in 'str' and get the value
|
| Using IComparer to Sort a String Array | 27 Mar 2008 16:21 GMT | 8 |
I stumped and I need some help. I have an unsorted string array that looks something like: AA XXX
|
| Determine class type in static method | 27 Mar 2008 15:53 GMT | 2 |
I have a static method in a class which also has another class inherited from. Now, I'd like to determine the type of class from where the method call was made.
|
| Registry question (debug three lines of code for me?) | 27 Mar 2008 15:41 GMT | 2 |
copied from MSDN help on Registry class: string[] tArray = (string[])Registry.GetValue(keyName,"TestArray", newstring[] {"Default if TestArray does not exist."}); Here's my code:
|