| Thread | Last Post | Replies |
|
| Socket.SendFile( ) alt. in .net 1.1? | 25 Sep 2006 14:39 GMT | 1 |
I'm using .NET 2.0 but unfortunately there's a windows service that needs to be implemented in .NET 1.1 ... so I need to send a file to a server, what's the similar method of doing so in 1.1? Socket client = new Socket(AddressFamily.InterNetwork,
|
| Need to Free Memory after p/invoke? | 25 Sep 2006 14:31 GMT | 5 |
In http://www.pinvoke.net/default.aspx/urlmon.FindMimeFromData, it is suggested to use FindMimeFromData in below way. [DllImport("urlmon.dll", CharSet = CharSet.Unicode, ExactSpelling = true, SetLastError = false)]
|
| Suggestion - interfaces and constraints | 25 Sep 2006 13:50 GMT | 3 |
Let's say I have an interface (IValid) I want to add to all the different Winform.Controls classes (textbox, radiobutton, etc). And I have a bunch of methods that then use these IValid Controls. Sometimes they access them as Controls, sometimes as IValids. Which means
|
| Office automation | 25 Sep 2006 13:27 GMT | 1 |
In order to work with MS Word document, do I need to install Visual Studio Tools for the Microsoft Office System ?
|
| SessionEnding Event stops | 25 Sep 2006 13:24 GMT | 5 |
I'm listening to the SessionEnding event, so I can close my application properly when Windows is shutting down. I do some disposing and stuff if the event occurrs but windows doesn't shutdown after that. Somehow my application cancels the shutdown.
|
| Internet Accessible? | 25 Sep 2006 13:17 GMT | 4 |
How can I find that user is connected to internet or not? thanks in advance
|
| List view item alignment | 25 Sep 2006 13:07 GMT | 2 |
I want to align the text in the first column in the list view to the right. However, when I select the 'Right' from the drop down list box in the TextAlign property of the first column it still says Left.
|
| Dll returning null terminated string, how to handle this ? | 25 Sep 2006 12:55 GMT | 5 |
I have a DLL using stdcall and a function of it is returning a null terminated string. How do I declare this in C# (VS2005) ? I try things like: [DllImport(dllName)]
|
| how to load assembly dinamically | 25 Sep 2006 12:54 GMT | 2 |
I want to load an assembly dinamically into another application with a button click. how to load and execute that dinamic assebly.. i tried like this
|
| static constructor is not guaranteed to be finished? | 25 Sep 2006 12:05 GMT | 7 |
In the book *Programming C#* 4th editionby Jesse Liberty, it reads "Actually, the CLR guarantees to start running the static constructor before anything else is done with your class. However, it only guarantees to *start* running the static constructor; it doesn't
|
| XML | 25 Sep 2006 10:56 GMT | 1 |
I want to build an xml document and let my web service return it. Its real simple xml. Whats the best way of doing this? xmldocument? xmltextwriter? Should i return the document itself or convert it to a string?
|
| Serial Port .NET 1.1 | 25 Sep 2006 09:45 GMT | 1 |
I'm writing an application to read data from a serial port. Unfortunatly due to system restrictions I can only use v1.1 of the .NET framework. All the help files I have read reference v2.0 of the framework. How do I implement the serial port in v1.1?
|
| How to judge whether content type is truly "text/html"? | 25 Sep 2006 06:30 GMT | 4 |
I know that HttpWebRequest.GetResponse() generates a HttpWebResonse. The response has one ContentType property. But the property is just decided by http response header. It is possible that the content is actually HTML, while the ContentType is "image/jpeg".
|
| Interesting Geometry Problem - IQ of 140+ Required :-) | 25 Sep 2006 05:20 GMT | 6 |
//Shrinks the specified polygon by one pixel (in any relevant direction) //so that the shrunken polygon sits exactly within the original (specifed) polygon. public void Point[] ShrinkPolygon(Point[] polygon)
|
| Image on button | 25 Sep 2006 04:21 GMT | 1 |
I'm trying to show an image ontop of a button, but with no luck thoug. What properties besids Button.Image do i have to change to show the image? I use VS 2005 C#
|