| Thread | Last Post | Replies |
|
| perfomance issues of dynamically removing node from document using c# | 20 Dec 2007 15:26 GMT | 1 |
I am removing node from a document depending on the style property and this is taking 5 seconds for checking complete document is there any ideas how can i improve the perfomance. Here is my part of code foreach (IHTMLElement tempElement in document.all) { if (tempElement.style ...
|
| Use DOTNET assembly in Word 97 | 20 Dec 2007 15:24 GMT | 1 |
Hi All, is it possible to utilise a .NET class library in Word 97 ? I've tried without success, my test class and VBA macro are shown below using System; using System.Collections.Generic;
|
| Source or book for good software architcture and design? | 20 Dec 2007 15:15 GMT | 4 |
I am looking for a source to learn how to realize a good software architecture and software design. I already know the GOF DesignPatterns (Head First) book. Does anybody knows another great "must read" book or another source?
|
| MMC 3.0 and .NET 1.1 ??? | 20 Dec 2007 14:37 GMT | 4 |
I am trying to develope MMC 3.0 snap-in with Visual Studio 2003. I didn't find whether MMC 3.0 supports VS2003 and .NET 1.1 in MSDN documentation. I know MMC 3.0 SDK sample codes are all built with VS2005.
|
| Format DataGridView cell display format in a Window form | 20 Dec 2007 13:40 GMT | 1 |
I've a date field displayed at a DataGridView, and want to format it to 'yyyymmdd hh:mm:ss'. How would you do that? Thanks, Ben
|
| clone | 20 Dec 2007 11:10 GMT | 2 |
what is clone and why we are using it?
|
| .NET App wont start with system when told to | 20 Dec 2007 09:59 GMT | 11 |
Ok this is wierd I am seeing this issue with C# and VB.NET apps made in .NET... I have the framework installed (.NET 3.5 currently)... i installed my applications... I placed them in the registry to start up when the user logs
|
| find closest item in keyed collection | 20 Dec 2007 08:27 GMT | 25 |
Does the .NET framework provide a class which will find the item in the collection with a key which is closest ( greater than or equal, less than or equal ) to the keys of the collection? ex: collection keys are 20, 30, 40, 50, 60, 70, 80
|
| Can I use a piece of .NetFramework2.0? pls, tell me | 20 Dec 2007 06:19 GMT | 1 |
Is there any possibility to pick up .netframework2.0 classes and DLLs, used in an application, and create smaller and fitted framework to the application? I have created a small csharp application using VS 2005. That
|
| Can't get Console.Write to work in my console app | 20 Dec 2007 06:05 GMT | 2 |
I am using VS 2005 and just built a simple application that opens an xml file and I want to put the table names on the console. But when I try to use Console.Write (or Console.Readline), I get an error: Error 1 The name 'Console' does not exist in the current context
|
| I need "Enumerator adaptor", or something like this | 20 Dec 2007 00:39 GMT | 1 |
I've got a class that encapsulates certain logs as an XmlDocument. I need to implement 2 properties (Errors and Warnings), which should be enumerable by foreach statement, and which should be implemented by reading this XML document. I guess I need some kind of "enumerator
|
| Using COM EXE in C# | 20 Dec 2007 00:19 GMT | 3 |
My problem is that it keeps returing nothing after calling the methods. I "TlbImp.exe TEST.exe /out:TESTCS.dll" and then in C# Right click > Add Reference > Browse and give it the TESTCS.dll. It adds "TESTCS" and I can use intellasence to see all the methods. I
|
| Issue with DataSet / DataAdapter and Idendity Column | 19 Dec 2007 23:34 GMT | 2 |
I am new to ADO.NET (2.0) and I am trying my hardest to figure out the best ways to do things, but I just keep getting stuck. I have a DataSet that has a Header and Details configuration with the relevant joins.
|
| HELP! How to free memory used by Form object | 19 Dec 2007 23:25 GMT | 6 |
Please tell me how I can free the memory used by Form object. I create a new form object something like this: Form setup = new settings(); setup.ShowDialog();
|
| ie webpage | 19 Dec 2007 22:51 GMT | 5 |
Hi, When using IE you can view the source for the the web page. Is there a way to use this in c#. What I meen is I can diplay the page ok, now I want to take the source for that page and run it through streamreader to get certain values. I know I can use webrequest to do
|