| Thread | Last Post | Replies |
|
| Video Conferencing C# | 15 Nov 2005 13:37 GMT | 1 |
I'am currently trying to make a windows C# video conferencing application. I was wondering if any one could point me in the right direction as I'm new to this level of C#.
|
| GUI design | 15 Nov 2005 12:32 GMT | 1 |
My application needs an intuitive Front end. My app monitors movement in a room. What i would like to do is give an indication to the user where someone is in the room.
|
| Catching generic exceptions | 15 Nov 2005 10:43 GMT | 5 |
I am trying to make my code conform to FXCop standards. The problem I have is when, for example, I try to catch errors generated by creating an instance of XmlTextWtriter FxCop insists that I only catch named exceptions. I can add clauses for all currently known exceptions, ...
|
| Comparing same interface type returns false, Why? | 15 Nov 2005 10:24 GMT | 5 |
Using Windows CP Pro VS .net 2005 I'm creating an app that allows user to extend its functionality by installing plug in modules, these modules support an interface I have
|
| System.Net.WebException Error - Please help | 15 Nov 2005 09:02 GMT | 6 |
I have written a windows app to request a file from www.hotmail.com and i get the following error: ************* Exception Text ************** System.Net.WebException: The remote server returned an error: (407)
|
| C# has live-as VB's With Statement? | 15 Nov 2005 07:29 GMT | 2 |
Which statement on the C# has live-as VB's "With" Statement?
|
| Databound listbox refresh problem | 15 Nov 2005 06:51 GMT | 1 |
I have a list box that is bound to an arraylist, but when the data changes the listbox does not refresh. ----------------------------------------------------------------------------- al = new ArrayList();
|
| [ActiveDirectory] Set logonHours ? | 15 Nov 2005 05:55 GMT | 2 |
How can i set the LogonHours to users, using System.DirectoryServices? I think I must create a byte array, but it doesn't work. Thanks in advance, JBrek
|
| Designer view goes crazy up after overriding WndProc | 15 Nov 2005 05:23 GMT | 2 |
Hi, I'm working on an app that has to inherit Form and override WndProc for several different reasons. Anyway it performs some actions on the window when WM_CREATE is called. The big problem right now is that the designer view goes nutz when it opens up because the program ...
|
| Clearing the window | 15 Nov 2005 05:20 GMT | 1 |
I'm drawing to the window and want to then clear it to the standard background colour. However I get errors when trying either of the following: Graphics g = CreateGraphics();
|
| Loading DataGrid with Performance Issues | 15 Nov 2005 05:18 GMT | 5 |
I've been bothered for some time about my DataGrid not populating my rows very quickly. I have about 10K rows loading into the grid. I create a datatable dt with 2 columns, an ID and a display. The ID is a member of the keys array.
|
| Change menu item text programmatically | 15 Nov 2005 05:01 GMT | 1 |
I am trying to programmatically change the text of a menu item in a submenu of context menu. The menu item starts off as "Play" and I later execute this.menuItem1.Text = "Stop";
|
| DllImport Syntax | 15 Nov 2005 04:53 GMT | 3 |
I have to use a functio that is inside of a DLL. Using DllImport directive, I am able to point to the proper "public static extern void". However, the function takes a "char*" as one of its inputs. The DLL changes
|
| eval function | 15 Nov 2005 04:50 GMT | 4 |
Does C# have an Eval function like JScript does? I have a need to evaluate some code on the fly... TIA!
|
| Passing a Winform to a class | 15 Nov 2005 04:43 GMT | 3 |
Ok I'm learning C# and GDI+, and I created class that will plot some lines in the main form using GDI but my problem that I do not know how to pass the mainFrm to the class where I will do the drawing lie
|