| Thread | Last Post | Replies |
|
| WPF 3D XBAP IE DEMO | 26 Jul 2007 12:11 GMT | 3 |
Little C# xbap project that does 3D graphics in internet explorer if you're running Windows Vista. See http://www.lunchgamer.com
|
| Items in toolstrip and menustrip disappear? | 26 Jul 2007 11:09 GMT | 2 |
After I've added the menustrip and the toolstrip to my MDI windows Form (and I've added their respective items), I notice that the items disappear. They're still in the code, but the association between the bar and the items (i.e. toolStrip.Items.AddRange) disappears. How come? ...
|
| Dragging a line on a panel | 26 Jul 2007 10:51 GMT | 3 |
Hello, I have to ralize a graph with a pair of straight vertical lines that have to be dragged in the left-right direction with the mouse. I've never done something similar so I wonder if someone could tell me the key C# classes to use.
|
| Calling Oracle OCI from C# | 26 Jul 2007 10:50 GMT | 2 |
I would like to call the following: OCIAttrGet(ParamHandle, OCI_DTYPE_PARAM, HasDefault,
|
| difference between List<object> and List<MyClass> | 26 Jul 2007 10:23 GMT | 9 |
I seem to have a bit of trouble understanding one bit of how generics work: In C#, every class automatically derives from object, and inherits a bunch of properties (i.e. ToString()). Thus, (MyClass is object) should always evaluate as true.
|
| Login window issues | 26 Jul 2007 09:42 GMT | 3 |
I created login form class below. I have the following issues with it: 1. Log message is shown only after messagebox is displayed. How to force text to be displayed in login form immediately after calling
|
| Using ActiveX Control | 26 Jul 2007 09:01 GMT | 1 |
I am using C# as the code-behing language in ASP.NET and trying to put in ActiveX control in the web page. Could you provide me a suggestion on this as good start up ? Trying to get familiar with ActiveX controls.
|
| How to talk to peers over the internet? | 26 Jul 2007 08:48 GMT | 7 |
I am writing a game that I want to net enable. So I want to be able to connect to peers over the internet. I will be sending very small packets of data. What is the best way to do this?
|
| Webservices and broadcasting to peers | 26 Jul 2007 08:45 GMT | 2 |
This a related question to recent post. I am thinking of using webservices to handle comms for a game I am dev. But not sure you when sending data to a webservice how it broadcasts that data to other peers.
|
| Running application GUI disappears | 26 Jul 2007 08:31 GMT | 1 |
I wrote a windows application in C# (using visual studio 2003) which I am running as an executable on a Windows Server 2003 machine. The application runs smoothly for days. Then out of nowhere, the GUI
|
| Why is C# more prfferred than VB.NET. | 26 Jul 2007 07:12 GMT | 42 |
Why do software industries go for C# than VB.Net ? Wats the exact difference... Which can be the best option..
|
| how to make the checkbox read only | 26 Jul 2007 03:44 GMT | 2 |
how can I make the check box control read only? when I tried the enabled = false it changed the control color yo gray which i don't like..
|
| Prevalence of Singleton | 26 Jul 2007 02:08 GMT | 2 |
Just wondering the extent to which some of you are implementing classes as Singletons. I'm working on a brand new project and, early on, identified some obvious candidates. By "obvoius candidates" I mean classes for which terrible problems would clearly arise if more than one ...
|
| Detecting if an object is not reachable and can be collected by GC | 26 Jul 2007 01:32 GMT | 1 |
Is there any possibility to detect if an object is reachable and can be collected by the GarbageCollector? I'm using a cache of weak references to persistent objects. Objects are then accessed using an ObjectID. If the object is still alive, the
|
| Why is this code causing errors saying the file is in use by another process? | 26 Jul 2007 01:09 GMT | 1 |
I'm writing a Windows service using C# (VS.NET 2005, .NET framework 2.0) that downloads a binary file from the web once every 15 minutes.The first time it downloads the file it works great. However for some reason it is not closing/releasing the file completely. So in subsequent ...
|