| Thread | Last Post | Replies |
|
| Sending mesages between C# apps | 28 Nov 2006 08:57 GMT | 5 |
I've a c# app that I execute on a remote machine, which works as I expect it to, but when that apps throws an exception on the remote machine how do I know what's going on, since it's a remote app?
|
| comparsion overview C++ commands vs C# - commands ? | 28 Nov 2006 08:47 GMT | 3 |
as an C++ programmer it would be handy to have a little table with c# and the counterpart command in C++. Only Keyword´s would be greate. Do you know something like that ? Thanks,
|
| Type info in static method | 28 Nov 2006 07:31 GMT | 4 |
How do i get the type info in a static method? for instance in the code below is it possible for the Method to get the type to know what type was used to call Method? thanks
|
| MultiCast Delegates | 28 Nov 2006 07:23 GMT | 5 |
I recently worked on delegates. But I have a question regarding Multicast delegates. The scenario is as follows: I have a delegate myDelegate with object dlgt, and two methods myMethod1(), and myMethod2().
|
| GUI convention | 28 Nov 2006 07:15 GMT | 3 |
I am writing some winform and asp.net applications. is there a standard GUI convention provided by Microsoft (or maybe someone else) to design application? (to design a windows-like application).
|
| How to send mail bodies with german umlauts using System.Net.Mail? | 28 Nov 2006 07:10 GMT | 1 |
I'm using VS 2005 and I need to send a mail body which contains german umlauts (ä,ö,ü). When I receive the mail in Outlook 2003 (english operating system) I always get a '|' or other similar symbols instead of the expected umlaut.
|
| how to convert stream data to string | 28 Nov 2006 06:59 GMT | 3 |
I am getting data from an FTP into a Stream object. Now I need to put this data into a string so I can manipulate it. Can anyone show me some example code?
|
| During copying file , wanna read file Size | 28 Nov 2006 06:40 GMT | 2 |
During copying file , wanna read file Size like this string CheckFileSize(string fileName) { if( fileName == null ) return;
|
| Focus-Lost Problem | 28 Nov 2006 06:34 GMT | 3 |
againe a "basic" question on UserControls. I have some UserControls inside a panel. Inside the controls i have checkboxes, comboboxes and textboxes. On change of any data inside the control i like to save the actual done
|
| String concatenation issue | 28 Nov 2006 05:10 GMT | 2 |
Hello. I'm working on a client/server application and I'm having some weird issues with concatenating strings. The client program sends some text: Object objData = "IssuedCommand:SenderName";
|
| timer not being called when OnPaint calls Invalidate | 28 Nov 2006 05:00 GMT | 4 |
I have a simple form that handles all its paint functionality like so: this.SetStyle(ControlStyles.AllPaintingInWmPaint | ControlStyles.Opaque, true); And the entry point to this program is like so:
|
| לשלוח דואר לאדם מסויים ללא זיהוי | 28 Nov 2006 02:49 GMT | 3 |
אני מעוניין לשלוח דואר אלקטרוני בתוכנת Windows Outlook 2003 אבל לא מעונין שהאדם שמקבל את הדוא"ל יראה את השם שלי ב-FROM
|
| interrupting a lengthy sequence | 28 Nov 2006 02:38 GMT | 13 |
I have a lengthy sequence of operations that are executed and reported on in a status window in a Windows Form application. Some work is done by background threads but other work is not. I am wondering how to recognize if the user presses an Escape (or even just a Shift key if ...
|
| Hiding a virtual method | 28 Nov 2006 02:31 GMT | 9 |
I have class A which inherits from class B. B contains the following virtual method: public virtual List<T> Select() {
|
| collection in BindingSource (synchronization) | 28 Nov 2006 00:56 GMT | 1 |
I've created simple list: IList<XXX> _list = new List<XXX>(); _list.Add(..); _list.Add(..);
|