| Thread | Last Post | Replies |
|
| Webrequest Question. | 15 Mar 2006 20:20 GMT | 1 |
I have a Webrequest that uses a XML doc for its 'body' I need to know the length of the doc so I can set Webrequest header ContentLength. Currently I am using an XMLTextWriter to a filestream, reading that stream
|
| what does this mean please? | 15 Mar 2006 19:42 GMT | 4 |
TaggedString val = (TaggedString)backgroundComboBox.SelectedItem; Bitmap bmp = (Bitmap)val.Tag; Now Taggedstring is a class, and I can gather that
|
| ASP.NET Threading Questions | 15 Mar 2006 19:36 GMT | 3 |
I have a C# ASPX page that displays a large amount of information. The software loops through 500 lines of code (and some of the 500 lines are looped multiple times, in a loop). Naturally, it takes approximately 7 seconds for the Page_Load event to fire (where I have all of my ...
|
| Book Recommendations... | 15 Mar 2006 19:17 GMT | 1 |
Hi All... I am in process of developing enterprise level application where I would have chance to design the framework of the application. The application which I am developing is highly UI oriented. Can anyone recommend me
|
| Resolution Headaches - any advice welcome | 15 Mar 2006 19:13 GMT | 3 |
I'm writing a basic application for use in an office environment. I dont like the box standard (excuse the pun) windows forms shape, so am using the transparency trick to hide part of a bmp set to the forms background, to create the illusion of an irregular shaped form.
|
| length of string | 15 Mar 2006 18:55 GMT | 11 |
From a C# application am I writing some text in a Word.Table, in a Cell of the Table to be more precise. The cell has a certain width and any string written in the cell will cover one or more lines in the cell depending on its length. In other words, it
|
| create public Message Queue on workgroup's computer | 15 Mar 2006 18:42 GMT | 3 |
i successfully create private queue on domian computer but i want to create queue to work for 2 applications of domain and workgroup computer. please reply
|
| XML & XSD Schema validation - "all" | 15 Mar 2006 18:30 GMT | 3 |
I'm running into a problem with schema validation. For some reason, if a schema has an xs:all section to it, it does not validate correctly. It seems to treat it as a sequence. My understanding is that switching to an xs:all should not require that the child elements be in any ...
|
| vb.net to c# eventhandler conversion help | 15 Mar 2006 18:24 GMT | 5 |
Hi everyone, i have a vb.net program ive converted most of the code but i know events dont translate well, the original vb.net code uses withevents and .handles and i can't get the events in c# to work 100% they seem to hook up ok but when the eventhandler is called from the
|
| bit shifts by multiple bytes | 15 Mar 2006 18:20 GMT | 4 |
I need to shift all of the values in a byte array by more than 8 bits, meaning that values should flow from one byte to another. Since I don't know in advance how many bits will be shifting, I can't do something easy like putting the bytes into a long or uint and shifting that. ...
|
| finding the current user name accessing an ASP.NET page | 15 Mar 2006 18:17 GMT | 4 |
This may actually be an IIS configuration issue but any help would be appreciated. I'd like to display some content based upon who the current user is that is accessing an internal ASP.NET applciation. I am using the 2.0 framework. I
|
| Where is *.vshost.exe coming from? | 15 Mar 2006 18:14 GMT | 10 |
I have a VS.NET 2005 solution with 10 projects. I have unbinded all projects, closed and reopened the solution. When I build, via Nant, I copy all of the PDB and DLLs to the EXE bin/debug folder. Source Safe is not running. I see a myapp.vshost.exe in the bin/debug folder. I
|
| How to use "volatile" for Int64 value? | 15 Mar 2006 18:04 GMT | 10 |
I really need to use volatile System.Int64 for a .NET v1.1 program in C#. But the compiler complains "a volatile field can not be of type long". How to work around it? Or is there any other way to get similar effect for Int64 type?
|
| Events - thread safe? | 15 Mar 2006 18:03 GMT | 5 |
I am trying to learn how to create an application that uses worker threads to prevent the UI from freezing up. My question is: Is the following code considered "thread safe"? If not, what am I doing wrong?
|
| Converting ushort? to ushort | 15 Mar 2006 17:58 GMT | 6 |
I need to convert a variable from uhsort? type to ushort. The problem is that when I pass the variable of type ushort? to a method that use a ushort type in his parameters the compiler throw an exception. Does any body know how to do this?
|