| Thread | Last Post | Replies |
|
| Optimize an IEnumerable | 21 Sep 2007 19:21 GMT | 5 |
Hi group, imagine I want to find number of values of a word in a string ... Look at my code : List<string> thingsToFind = new List<string>(new string[]
|
| Partial implementation of interface | 21 Sep 2007 19:16 GMT | 5 |
Hello friends, I am new to C#. I have some fundamental doubt. Please, try to answer it. 1) Ltes say, IFace is an interface which has proto of two methods.
|
| Assembly.Load() and updating DLLs on the fly | 21 Sep 2007 18:42 GMT | 5 |
I've successfully built an application that loads plugins dynamically at runtime. I now have the requirement that I update these DLLs while the program is still running. Our app is 24/7 and it would be beneficial if we could update functionality without restarting the
|
| DLLHELL back again? | 21 Sep 2007 18:34 GMT | 14 |
I have created a simple "Hello World" Console apllication on laptop A. The application is created with CSharp Express beta 2, built for framework 2.0 and runs perfect on laptop A. When I copy the apllication to laptop B, I get the following error on
|
| Losing my window positions | 21 Sep 2007 17:46 GMT | 1 |
I keep a certain set of windows open in Visual Studio 2005 (Solution Explorer, Output, Breakpoints, Call Stack, Threads, etc.), and I have them arranged as I like. Sometimes, for reasons unknown, I'll open the IDE, and the way I've
|
| How to eliminate delay making first call to a webservice? | 21 Sep 2007 15:51 GMT | 6 |
Every time I make any .NET framework based webservice consumer I have the same problem: The first call my application makes to consume a webservice takes about 15 seconds. Subsequent calls are very fast. What is happening during this initial delay, and is there anything I can
|
| Overline in label | 21 Sep 2007 15:48 GMT | 3 |
is there a simple way to add an overline on the text in a label/checkbox/radiobutton? Any special chars that can do this similar to how & works with menus? Thanks,
|
| How to invoke COM members | 21 Sep 2007 13:34 GMT | 2 |
I need to implement a method like this: object InvokeCOMMember(object obj, string memberName, params object[] parameters); The method takes a COM class reference (obj) and tries to invoke a
|
| How can I share a resource File between 2 projects in the same Solution? | 21 Sep 2007 13:34 GMT | 4 |
I have created a Resource file that stores common icons used in my projects. I have a solution that contains 2 projects, and I keep getting errors if I add the resource file to both projects. It complains about duplicates etc etc.
|
| IDE question | 21 Sep 2007 13:15 GMT | 3 |
Back in the good oll VS 6.0 days, programming c++, when I wrote the command 'break', the e.g. 'while' clause I was breaking out of was shortly highligted much like scopes are paired/highlighted in VS 2005. Anyone know of a plugin of some kind available for VS 2005 for that kind of ...
|
| Newbie - resizing datagrid columns programatically | 21 Sep 2007 12:44 GMT | 2 |
Working on a winform app that will read a table structure and display the column names within a datagrid. I want to adjust the column widths to fit the control size where possible. Instead of attacking each column separately, I opted for a "higher level"
|
| tables | 21 Sep 2007 10:17 GMT | 2 |
Hi, Ive built an application that gets live data every 5 secs and sends it to excel. In excel Ive got 4 small tables (9x9), which I use vba to sort the data and allocate to the correct table. This works well, infact Im chuffed Ive managed to do this. The next stage is to
|
| He-he... | 21 Sep 2007 09:59 GMT | 2 |
Because
> int remainder= (int)(Math.DivRem(MaxValue, 2, out remainder)); Right is: Math.DivRem(MaxValue, 2, out remainder)
|
| ComboBox drop down button | 21 Sep 2007 09:32 GMT | 2 |
I have a combobox on a form with dropdown style. Is it possible to 'push' the dropdown arrow button from code - causing the combobox to dropdown. regards Jesper, DK
|
| need help for invoking unmanaged functions | 21 Sep 2007 03:27 GMT | 4 |
I want to call unmanaged functions that are implemented in a dll. The problem is about the method return values. for example #include "stdafx.h" typedef struct toOut
|