| Thread | Last Post | Replies |
|
| BitConverter.ToInt16 doesn't work correct | 16 Oct 2007 17:00 GMT | 12 |
Hello. I have a problem with getting short value from 2 byte array. I have this code. There are 2 short values in bytes. byte[] cast = { 18, 152, 00, 80 }; Int32 port = BitConverter.ToInt16(cast, 0); // -26606 - wrong!
|
| Dll Import "Translate C++ --> C#' | 16 Oct 2007 15:30 GMT | 2 |
I write a POS (point-of-sale) applic. until now i use c# code to open the cash-drawer. But now there is a new hardware and i have just a c++ code snip to do this.
|
| Error Message Class Obsolete | 16 Oct 2007 14:57 GMT | 3 |
Ive added a library project which was compiled in an earlier version of .net which is giving me some warnings. Warning 31 'System.Configuration.ConfigurationException.ConfigurationException(string)'
|
| .NET Remoting and Credential Caching | 16 Oct 2007 14:24 GMT | 2 |
I have a client/server application that utilizes Impersonation on a TCP Channel. So I create the channel with the version of the constructor that takes an IDictionary of channel properties, and specify "impersonate = true".
|
| Closing a TabPage, another approach, possible? | 16 Oct 2007 13:40 GMT | 1 |
.NET 2.0 I have a form containing a TabControl. During runtime TabPages get added to this TabControl. I want a way to close the TabPages. As it is now, I have to restart the
|
| Get corresponding column value | 16 Oct 2007 13:34 GMT | 3 |
I have a combo box and I am filling Employee Codes in it. I want to retrieve employee first and last name when a user selects an employee code from the combo box. Though it very easy with a single SQL Query, I want to know if there is any other way to get this. I mean if I use
|
| reading xml into database | 16 Oct 2007 13:00 GMT | 4 |
I've an XML document which is in the region of 20meg which comes in weekly, the contents of the document need to be read and some fields tweaked and then the content imported into a SQL Server database. Anybody got any recommendations on the best way of doing this? Any
|
| upload.... with name | 16 Oct 2007 12:32 GMT | 4 |
having an "upload file" control on my page, how can i change the text on the button from "browse" into something else? Thanks Vinnie
|
| C#.NET Developers in Richmond Area | 16 Oct 2007 11:45 GMT | 2 |
I am trying to find a C#.NET application developer candidates in the Richmond area. Any help will be greatly appreciated. Or any direction on other avenues to try and find candidates. Sincerely,
|
| how to Draw an ellipse using c# | 16 Oct 2007 11:20 GMT | 2 |
I wanted to draw an ellipse using c# with System.Drawing.Graphics. I tried out several tutorials and none of them worked and there seems to be something missing. One did execute without any errors but it did not render an ellipse on the form.
|
| solution does not run after upgrading assemblies | 16 Oct 2007 11:15 GMT | 2 |
Using VCS 2005 Express. I replaced in my solution tree Castle dlls with new version and used References/Add Reference to update references in every project in my solution.
|
| generic toarray string[] ? | 16 Oct 2007 10:32 GMT | 1 |
hello, i ve tries to convert a generic into a string[] for use string.join. no problems with arraylist : ArrayList al = new ArrayList(); al.Add("J1");
|
| How to prevent file from being replaced on startup? | 16 Oct 2007 08:10 GMT | 4 |
I have a setup project that I've created for an application that requires a temporary data file to be installed in the root installation directory. On application startup, if this data file exists in the directory, the application will process the file and
|
| Which one is a better [InsertCommand]... | 16 Oct 2007 05:33 GMT | 2 |
>From the below given codes used to insert a record in a table, which code is well-optimized and must be used. Please also let me know why it is better. =======[ CODE 1 ]===========================================
|
| Work with bits | 16 Oct 2007 02:05 GMT | 7 |
I have some problems which getting bites. For example 247 it is 11110111 in bytes. int i = 247; // 11110111 How I can get some pozition on bite?
|