| Thread | Last Post | Replies |
|
| Urgent:How to Check availability of web service | 05 Apr 2008 02:05 GMT | 3 |
Is there any way to check the availability of a web service without including any extra web method? Thank & regards nRk
|
| System.Timers.Timer Issue | 05 Apr 2008 00:59 GMT | 3 |
I have a windows service that is using the timer object from System.Timers to fire every minute and do some work. Occasionally that work takes longer than a minute - and I don't want the elapsed event to fire again if a previous event is still occurring.
|
| OpenFileDialog (Constant Inital Directory) | 05 Apr 2008 00:49 GMT | 5 |
I drag the OpenFileDialog into the WZYWIG editor and set all its properties. Setting its' InitalDirectory does make the first time it opens, open up in the right directory. However, everytime after that it remembers the directory that the user navigated too and opens
|
| Object initializer question | 04 Apr 2008 23:04 GMT | 11 |
I am creating a MVC pattern code for my project and here is what I am doing in the view constructor presenter = new presenter(){name = "MVC", view = this, age=30};
|
| yield question | 04 Apr 2008 22:01 GMT | 4 |
I have the following code ArrayList list = new ArrayList(); foreach (string name in FilesNames()) {
|
| I wished I had a way to error on unused return value for a type | 04 Apr 2008 21:52 GMT | 4 |
Some of my classes are immutable. Calling any function on one of those classes without using its return value is an error. I wished I could declare this as an attribute of the function itself that would then cause a compiler error if that return value was not used. Has anybody
|
| What is the suitable Network Architecture? | 04 Apr 2008 21:48 GMT | 1 |
I have to design a system as an assignment.It is comprised of several branches and a head office.My point is since these branches and the headoffice belongs to the same company what is the suitable network architecture, should it be a Web based or networked using lease lines ...
|
| Reflection : GetEvent, GetMethod, Bind Method on Event | 04 Apr 2008 20:39 GMT | 1 |
TValue oItem = (TValue)Activator.CreateInstance(typeof(TValue), BindingFlags.Instance | BindingFlags.NonPublic, null, new object[] { m_nCleTemporaire },
|
| GIS Plugin for VS C# 2005 | 04 Apr 2008 20:31 GMT | 6 |
Does anyone know of a good GIS plugin for VS 2005? Thanks
|
| Beginner and trying to get the tag value of a treeview.selectednod | 04 Apr 2008 20:09 GMT | 1 |
I am trying to do this line of code: txtBxMessageBody.Text = ".\\ " + treeView1.SelectedNode.Tag.ToString(); I am getting an error back. It is something pretty simple but I can't figure it out.
|
| How to dynamically create generic type from other | 04 Apr 2008 19:59 GMT | 18 |
I have some code like if (val.GetType().Name == typeof(List<>).Name) { }
|
| fonts | 04 Apr 2008 18:50 GMT | 2 |
How to set Fonts to muliple Styles for instance Font oFont = new Font("Arial",10,FontStyle.bold) //id like to use bold + Italic
|
| why do extension functions ignore the where clause? | 04 Apr 2008 16:20 GMT | 2 |
I have here some example code (below) that I believe should work fine. However, I get the error Error 1 The call is ambiguous between the following methods or properties:
|
| SqlDBType size | 04 Apr 2008 16:20 GMT | 1 |
I have a variable of SqlParameter type called parameter. I need to find out what the original size is to compare it with the actual size of my string. parameter.size gives me the size of the string but not the size of the
|
| compression deflate | 04 Apr 2008 16:00 GMT | 3 |
i would like to store the compressed stream in a table is there a way to convert the compressed stream to a string or someother storeable data type thanks
|