| Thread | Last Post | Replies |
|
| Why doesn't this simple code compile? | 12 Dec 2005 22:17 GMT | 18 |
using Team Studio 2005 1. Create a new web site 2. Add a new class to the project 3. In the Page_Load handler of default.aspx.cxs, create a reference to the
|
| Volatile fields | 12 Dec 2005 22:03 GMT | 13 |
let be focus on sigle processor machine 32 bits. 1. with multi-threaded on single processor machine 32bit do i have to sync access to atomic get/set properties of type less then 32 bits ? 2. for those properties is it enough to use volatile on single processor
|
| xml and data sets | 12 Dec 2005 22:01 GMT | 2 |
I am trying to put some XXL comde in a database column, and I am using a dataset to edit it... let's imagine this scenario <?xml version = "1.0"?>
|
| How to put a collection into dataset? | 12 Dec 2005 21:50 GMT | 2 |
I use a method that returns either a dataset or a collection depending on the method called. Since no database is involved at the layer I'm working, I can't use a data adapter's fill method to fill these results into my local dataset. How can I get these results into the local
|
| ASP.NET/DHTML | 12 Dec 2005 21:44 GMT | 1 |
All or Anyone: I am developing an Internet application where pictures are dragged and dropped into place. I am doing the drag and drop on the client side with javascript(unless anyone can suggest a better approach). When the picture
|
| .NET Remoting | 12 Dec 2005 21:26 GMT | 3 |
We need to get the correct error message from the .NET Remoting server on the another computer. When we use .NET Remoting the client does not receive correct SQL Server error message if the client is on the another computer. For example, if the
|
| C# confusion | 12 Dec 2005 21:06 GMT | 4 |
I'm coming from a 3 year C background with some basic knowlegde on the Win32 API. I just started learning C# a day ago and I have a couple questions that I need cleared up that just have me very confused. [quesitons]
|
| Toolbar and Windows Forms | 12 Dec 2005 21:05 GMT | 1 |
I have a little trouble trying to assign a Toolbar control to another toolbar variable control. I am getting my forms controls with this: for (int j = 0; j <= frmChild.Controls.Count - 1; j++)
|
| TryParse with HexNumber returning wrong value | 12 Dec 2005 21:00 GMT | 5 |
Ok, Someone tell me what I'm doing wrong. The statement below is returning 527.0 in v, instead of the expected 215. Am I missing something? double v;
|
| QueueUserWorkItem: Design guidance | 12 Dec 2005 20:20 GMT | 1 |
I'd like to implement QueueUserWorkItem for some parts of the app; specifically for DB related caching and file i/o. Example: When the user finishes work on a file, I'd like to process the file persistence (some data to db + file system as zip) in the background. I haven't
|
| Copying data between byte arrays | 12 Dec 2005 19:08 GMT | 6 |
It's probably simple but I can't find a way how to copy number of bytes from one byte array to another? Just like Array.Copy(SourceArray, SourceIndex, DestArray, DestIndex, Length) does but in my case the arrays have different length. Of course I can copy byte by byte but I
|
| Using generic list with SoapFormatter | 12 Dec 2005 18:55 GMT | 1 |
I'm trying to use an SoapFormatter with a generic List (List<int>) (.NET 2.0) When I use it I get an exception that states that the collections from Generic-namespace cannot be used with the SoapFormatter.
|
| Custom ListView | 12 Dec 2005 18:55 GMT | 1 |
i would like to create a custom list view with draw custom graphics elements i try to override OnDrawItem, but it doesn't work could you help me please?
|
| Merging toolbars | 12 Dec 2005 18:26 GMT | 3 |
I developed an app using VC# Express Beta that included an mdi parent and an mdi child form. Both forms contain a ToolStrip and, while using the Beta, these ToolStrips merged together as I expected them to. Now, I've updated to the final release of VC# Express and my ToolStrips no ...
|
| Register Callback function to C++ DLL from C# | 12 Dec 2005 17:30 GMT | 1 |
I am developing a wrapper for a C++ SDK DLL built for a video capture card. After opening all channels on the card i call the function StartVideoCapture(IntPtr channelHandle) what is supposed to happen after that is that when the data stream is reday the DLL should raise an event
|