| Thread | Last Post | Replies |
|
| .NET 3.0 .... | 25 May 2007 19:35 GMT | 12 |
What are the advantages/new features .NET 3.0 brings in compared to .NET 1.1.What are the impacts on the current system using 1.1, backward compatibility etc. Can i get some heads-on comparison between the two?
|
| Wrapper class template | 25 May 2007 19:22 GMT | 1 |
I have a class, which has some data. I work with list of objects of this class. The data of each object can have different types. For each type of data should has its own Value property to be correct. It looks like this:
|
| How do I stop my software from getting cracked? | 25 May 2007 19:20 GMT | 14 |
I have benefited from a profitable idea for a stand-alone program that I've created in C#. Up until recently, my method of licensing hasn't been touched. I base authorization on user accounts, and the program sends and receives RSA encrypted data in order to determine whether or
|
| Is there an automatic re-build in VisualStudio when I change the source code ? | 25 May 2007 18:54 GMT | 3 |
When I change the source code and save it I have currently always to press explicitely F6 zu "compile" the code (and get new error list). Isn't there an automatic build function which is called whenever I save new code ? BTW: What is the difference between the two menues:
|
| How to rename the current Project ? | 25 May 2007 18:48 GMT | 2 |
Assume the current name of my project is "mytestroj". A couple of project files are named with this stem name like mytestproj.sln, mytestproj.suo, mytestproj.csproj,.... How can I rename my project to "testproj1" ? Is it sufficient just to rename all file in WindowsExplorer?
|
| Difference between Form1() and Form1_Load() ? | 25 May 2007 18:46 GMT | 2 |
In general I have two procedures which are called at the beginning of a Form: Form1() { InitializeComponent(); ..... } and Form1_Load();
|
| Can't debug IIS service from client app | 25 May 2007 18:42 GMT | 1 |
1) I start my client Windows app 2) At a breakpoint I attach to the aspnet_wp.exe 3) I continue stepping through code I am expecting to make it over to the service project (where I have a
|
| Using System.IO.Ports namespace from VS2003 | 25 May 2007 16:50 GMT | 1 |
I understand VS2003 cannot develop applications with .NET Framework 2.0. But is there any tricky way to use from a Windows Application built with VS2003, classes from System.IO.Ports namespace, that is, classes
|
| Data Bindings | 25 May 2007 16:45 GMT | 4 |
Hi, I have a project configured as follows: Main form with a tabcontrol with 1 tab page and a panel with some text boxes in. This form also has some bindingsources dropped onto the form. When a selection is made the program instantiates a new class which creates
|
| how to print this output in c#? | 25 May 2007 16:15 GMT | 4 |
I know it is very easy, but I just can't fngure out the algorithm. For example: I have these: string[] a={"1","2"}; string[] b={"a","b" "c"};
|
| Open two winforms at same time... | 25 May 2007 15:05 GMT | 1 |
I have a product entry program that I need, at the time of entering the description, to open an extra window for the image that goes with the description. This product adding program is a windows application for updating our
|
| how to use GetLogicalProcessorInformation, win32api, under using csharp | 25 May 2007 15:01 GMT | 2 |
Does anyone have any idea that how to use GetLogicalProcessorInformation, win32api, under using csharp? http://msdn2.microsoft.com/en-us/library/ms683194.aspx For me, one of the most difficult things is how to define
|
| Case insensitive compare of single characters | 25 May 2007 14:03 GMT | 1 |
Is it possible to do a case insensitive comparison of individual characters? I tried: Char.ToLowerInvariant(charA).CompareTo(Char.ToLowerInvariant(charB)) And though it works for the most part, it didn't seem to work for all
|
| dialind modem to ISP | 25 May 2007 12:17 GMT | 2 |
Hi all. I am sorry for my weak English. I want to dial a modem to ISP with C#. All documentations about this I could find are based on openning serial port and sending modem commands to it like "ATD<number>" for tone dialing and "ATDP<number>" for pulse dialig.
|
| Testing for DBNulls | 25 May 2007 11:57 GMT | 13 |
I can't seem to find a test for DBNulls. Whatever I try doesn't work. for (int x = 0; x < dataSet.Identity.Rows.Count; x++) { DataRow dataRow = dataSet.Tables["POI_Entity"].NewRow();
|