| Thread | Last Post | Replies |
|
| Creating a window service | 12 Oct 2007 20:48 GMT | 3 |
I will create a window service but wonder if a good solution is to start with a console application or windows application with forms even when I have no output to produce. I might use output in debug purpose and when this console or windows forms application works as expected I ...
|
| Session.IsNewSession with Firefox | 12 Oct 2007 20:42 GMT | 4 |
Can any one tell me why Session.IsNewSession doesn't work with Firwfox broswer? Z. Su
|
| Time Zones on the Computer | 12 Oct 2007 20:20 GMT | 1 |
Currently I am writting an application around safe travel, as part of the system I need to store timezone information and also specific time zone dates. So, I use
|
| Break thread sleep | 12 Oct 2007 19:48 GMT | 20 |
Hello group. I have thread in which I perform specific task in loop. I can specify, by check box, in what periods of time that task should be done, ex. instantly, with 5min break, with 15min break etc. For now I had it
|
| NumericUpDown | 12 Oct 2007 19:46 GMT | 5 |
i need help whit the numericUpDown I tried many ways but first let me explain the objective of the control 1 - range from 1 to 100
|
| Compare two integer constants | 12 Oct 2007 19:04 GMT | 5 |
I have two constant integers and when I try to compare their values, I get error: Operator '==' cannot be applied to operands of type ... Here is a cut down version of my code
|
| Newbie Question: decimal variable type | 12 Oct 2007 18:57 GMT | 3 |
Hi, folks! I read somewhere that the decimal variable type uses 128-bits in memory for each variable. However, I read from other sources that the decimal type only uses 96-bits to store the number.
|
| Copy Items from a Generic List into multiple Generic Lists | 12 Oct 2007 18:27 GMT | 5 |
I have two List<Order> and List<OrderDetails> Order looks like this: { int orderID
|
| PropertyGrid: CategoryAttribute + BrowsableAttributes | 12 Oct 2007 18:08 GMT | 2 |
I have a form containing only a PropertyGrid that I use to modify an instance of the following class: class MyClass {
|
| Interface in .NET -- mutable or not? | 12 Oct 2007 17:58 GMT | 8 |
It is my understanding that with .NET you can add or remove methods in your interface while still maintain binary compatibility. This is not true for COM. Does this mean that published interfaces under .NET are no longer required to be immutable?
|
| Calling managed VC++ from C# | 12 Oct 2007 17:40 GMT | 4 |
Hi all, sorry for the cross group spam but my question does really fall into both groups. Here's my issue. I have a Visual C++, CLR Class Library with a public class and a public method in a solution. Also in the solution is a c# console app.
|
| IPAddress.Parse documentation inaccurate | 12 Oct 2007 16:41 GMT | 2 |
http://msdn2.microsoft.com/en-us/library/system.net.ipaddress.parse.aspx ... states that you can call .Parse() with a single integral argument (as a string); "A one part address is stored directly in the network address." (The example in the table included states that 65536
|
| DataRelations Link Question Win [C#] | 12 Oct 2007 16:21 GMT | 1 |
Is it possible to link more than two tables together? My sample that works perfectly fine (but only the two links) is as follows: DataRelation TableDetail = DB_DataSet.Relations.Add("EMPLOYEE_ASSIGNED_LEVELS",
|
| Error while using TransactionScope | 12 Oct 2007 16:11 GMT | 1 |
I have a two classes, first named "ModCon" has procedures written for connections and the second named "ModRes" contains functions and procedures that can be reused. For my question it is important to add sample codes of the two classes and later the code from a Form's
|
| How get syntax right for this HTML written in code? | 12 Oct 2007 15:53 GMT | 3 |
How can I write this code so that it will appear as just "Click here" but encoded with the link information? strFile = "Click here"; row["Link"] = "<a href="http://www.ibm.com>" + strFile + "</a>";
|