| Thread | Last Post | Replies |
|
| C#.Net 2.0 get virtual directory path question | 24 Aug 2007 11:36 GMT | 1 |
In my C#.Net 2.0 web application, the web ServiceWeb application is running on the C:\Inetpub\wwwroot\MyWeb folder. I have another file server which store the files for downloading, through the ServiceWeb.
|
| Capture Image of Control to Clipboard | 24 Aug 2007 11:30 GMT | 1 |
How do I capture an Image (Bitmap) of one of my controls (in a Windows Form App) and place it on the clipboard in C#? Thanks, - M
|
| Why Timer stop working ? | 24 Aug 2007 11:00 GMT | 7 |
I've writed a C# windows service in VS 2003. This service use a System.Timers.Timer to periodically call some functions of a web service. ( Some of this functions required minutes to be executed ).
|
| C# - Cant dynamically set url of css file but can in vb.net?? | 24 Aug 2007 10:13 GMT | 2 |
Does anyone know iwhy I can do this in VB.Net: <link rel="stylesheet" href="<%=Global_asax.GetApplicationPath() %>styles/main.css" type="text/css"> in the header of an aspx page and not have a problem. i.e it converts nicely
|
| Matching a number | 24 Aug 2007 09:46 GMT | 5 |
I'd like to validate a number input using a regular expression. This would be done by "\d*". Now the input may have a fdecimal separator, wich would be matched by "\d*(\.|,)\d*" (allowing the , as separator as well).
|
| Transparent Form | 24 Aug 2007 09:30 GMT | 3 |
Is it possible to have a transparent Form? And by that I mean that the background should be transparent. I have tried to set the Opaque property, but that makes everything transparent. I use OnPaint an OnBackgroundPaint to draw stuff on the form,
|
| Passing by 'ref' - Implications for Coupling, Encapsulation, etc | 24 Aug 2007 07:45 GMT | 3 |
Say we have private List<Thing>MethodA() that calls MethodB. As MethodA() executes, it adds items to a List<Thing> instance that is ultimately returned to its caller. MethodB() also accumulates Thing items as it does its work, and adds them to
|
| Software Component for WF | 24 Aug 2007 07:09 GMT | 7 |
Hello friends, Finally im going to work on windowns workflow foundation. Im new to it and just have some little idea as what is it.
|
| Web Page Generator | 24 Aug 2007 06:24 GMT | 6 |
I have a custom template in Visual Web Developer that has the same basic information but a specific set of words need to be changed out, they are labels, for example the city name. I have a database in SQL2005 with one column of all the cities that need their own web page. Is ...
|
| Type casting in classes | 24 Aug 2007 06:18 GMT | 12 |
Hi, I have a question regarding the typecasting. I have a class A with some properties and methods... I also have a copy of same class as class B. Class A and B are having every thing same just a name
|
| Generic List .Find or .Contains | 24 Aug 2007 05:05 GMT | 2 |
I have two lists List<MyClass> firstList = new List<MyClass>(); List<MyClass> secondList = new List<MyClass>(); The class MyClass has several properties (Id, Name, Title)
|
| Visual C# 2005: How can I trigger a breakpoint upon a class member variable change? | 24 Aug 2007 04:05 GMT | 5 |
I am using Visual C# 2005 and I like to setup breakpoint that pause execution upon a class variable change. Is that possible? Thank you,
|
| TopMost Form And A Dialog Box Created From A Static Method | 24 Aug 2007 00:27 GMT | 1 |
I have a dialog box that must behave as MessageBox does with regard to the TopMost property. It must be TopMost if and only if the calling form is TopMost. A static method creates the dialog box. Is there a way of determining if the
|
| security | 23 Aug 2007 23:09 GMT | 2 |
Request for Permission of type "System.Sercurity.Permission, mscorlib, version=0.0.0.0, =neutral, publickeytoken= i get the above error when i start a c# .exe from a network drive....
|
| Reading XML | 23 Aug 2007 22:26 GMT | 3 |
I'm using C# VS2005 and need to access an XML file. I've setup an XmlDocument which opens a file as the following: <root> <Row Run_Date="8/23/2007 11:55:10 AM" />
|