| Thread | Last Post | Replies |
|
| Generic C# List<> resize vs. Template C++ vector resize | 29 Sep 2006 00:10 GMT | 6 |
I'm learning a lesson in how I need to be more specific :) In C++ I can resize a vector and it will allocate memory and it will call the default constructor if necessary (or I can supply an instance for the copy constructor).
|
| Resource File | 28 Sep 2006 23:32 GMT | 2 |
Hi I am a newbie and i am trying to create a resource file (resx) for a console C# application Can i go to current C# project and add a new resource file and then start adding values?
|
| Resource File in console application | 28 Sep 2006 23:29 GMT | 2 |
Hi I am a newbie and i am trying to create a resource file (resx) for a console C# application Can i go to current C# project and add a new resource file and then start adding values?
|
| string.Format encoding? | 28 Sep 2006 23:13 GMT | 6 |
Suppose I have the following code: string myFormat = "Line1/nLine 2"; string formattedString = string.Format(myFormat); ...that would produce a 2-line output as expected.
|
| Encode Textbox | 28 Sep 2006 22:55 GMT | 1 |
How to encode a textbox to avoid cross site scripting? Thanks K
|
| [VISUAL STUDIO 2005] Unexpected problem when adding object datasource to project | 28 Sep 2006 22:50 GMT | 2 |
I'm encounterring the following problem when I try to add object datasource to my C# project: - the wizzard form open - I choose object, then click on next
|
| simultaneous access to flat file | 28 Sep 2006 21:38 GMT | 2 |
I have to access a flat file (.txt or something) by two applications at the same time. For reading and writing. Is that possible and how? Thanks Frank
|
| Xpath help needed for CRM newbie | 28 Sep 2006 21:32 GMT | 1 |
I am customizing MS CRM 3.0. I am fairly new to C# and know very little about Xpath. I need to read the the 4th line of the XML below (value node) and check the type. If the type is "account", I need to change the type to
|
| A strange error when compiling | 28 Sep 2006 21:22 GMT | 6 |
I have several projects where each one build a library.(class library or window control library). Now I get some strange compile error when building the *.exe file and doesn't understand what this means.
|
| How to Access HTML Controls from code behind ? | 28 Sep 2006 21:13 GMT | 3 |
I have a table which needs to be populated at runtime. Is there a way to do this without using a server side control like repeater or datagrid ? How can an HTML control be accessed in code behind ? Thanks in advance ..
|
| Memory Management Problem | 28 Sep 2006 21:09 GMT | 2 |
I've got a Windows Service written in C# that is having some unfortunate memory issues. I've been working with .NET MemProfiler and AllocationProfiler. But you don't have to use those programs to notice the memory leak. The memory usage in the TaskManager for the process
|
| Thread variable question | 28 Sep 2006 21:07 GMT | 6 |
I am new to threading and trying to figure some things out. Are all variables in a thread set to only that thread? Meaning if I create 2 instances of a class and then put each one in a different thread and run them will the local variables in functions be shared or will they
|
| Bug: incorrect warning message, Unreachable expression code detected | 28 Sep 2006 20:54 GMT | 3 |
We've started converting some applications to the .NET 2.0 framework. When compiling in VS 2005, I'm getting a warning on this line: return (unitWidth != null ) ? unitWidth : new Unit("0px"); Looks valid to me, but this gives a warning with "new" underlined saying
|
| Cerrar a la barra de tareas | 28 Sep 2006 20:52 GMT | 1 |
Hola Tengo una aplicación en c# con ,VS 2005, me gustaria que al cerrar la aplicación no se cerrase si no que se quedase en la barra de tareas, al estilo messenger.
|
| DirectoryInfo and FileAttributes | 28 Sep 2006 20:18 GMT | 1 |
I'm trying to compare DirectoryInfo.Attributes to FileAttributes like so: // result returning // Directory | Archive DirectoryInfo info = new DirectoryInfo(this.folderFullName);
|