| Thread | Last Post | Replies |
|
| .Net Framework 1.1 question | 19 Dec 2005 05:34 GMT | 2 |
When I run the Setup.exe program in my client, it ask to install the .Net Framework first. I am wondering that do I need to download the .Net Framework from the internet? Or it is inside the Visual Studio .Net CDs?
|
| Event Subscribers | 19 Dec 2005 05:07 GMT | 6 |
I have a module that acts as a publisher of events. The clients subscribe for the events using the '+=' operator. Instead, I would like the clients to call a method like "RegisterForXEvent" passing the required information. Inside that method, I would like to add the client to ...
|
| Runtime Object creation | 19 Dec 2005 04:59 GMT | 13 |
When the Application is started, it has to read a config file. The config file gives details of the objects that need to be created. Based on the info from the config file, the objects need to be instantiated at run time and its methods have to be invoked. How do I do this?
|
| How to view namespace of dependency? | 19 Dec 2005 00:34 GMT | 9 |
I have two projects in one solution - a library and executable. Each have a namespace such as: ROOT.myapp.Functional ROOT.myapp.UI
|
| How to translate from UTC/GMT time to local time? | 19 Dec 2005 00:23 GMT | 3 |
Suppose one has a database of UTC times that are from different dates in the past. The problem with translating those times to a local time is that one does not know for each UTC time whether the local time at that same moment had daylight savings time in effect.
|
| Object reference not set with Array of ImageButtons | 18 Dec 2005 22:17 GMT | 5 |
ImageButton[] ship; ship = new ImageButton[5]; for (int i=0; i<5; i++) {
|
| XML Deserialization | 18 Dec 2005 21:47 GMT | 12 |
Is there a way to be notified when the deserialization of an XML is complete, like a callback method? I tried the IDeserializationCallback interface, but that doesnt for XML-Deserialization.
|
| runtime casting | 18 Dec 2005 21:45 GMT | 10 |
I want to replace CSomeObject class with some kind of runtime method that returns type CSomeObject that I can use as cast. How do I specify type of explicit cast at runtime? eg:
|
| newbie question on 2 dim arraylist | 18 Dec 2005 21:40 GMT | 2 |
Is it possible to define a two dimensional arraylist ? if so how? Many Thanks
|
| need help (2d chart, gdi+) | 18 Dec 2005 19:00 GMT | 2 |
I have to draw a 2d chart. The problem is that I have 64000 x values!, so the graph MUST be scrollable (left - right). I don't know how to draw that (and on wich control - label? panel?), does anybody know how to do that, or is there any free conroll that draws a chart like that?
|
| BackgroundWorker - have no idea | 18 Dec 2005 18:55 GMT | 1 |
I'am trying to force my background worker to finish, but i can't - its still visible in windows processes. have no idea why it's still there when file is sent. Code is clear and visible so i wish someone could help me.
|
| Compilation Error | 18 Dec 2005 18:42 GMT | 1 |
Newbie using VC# Express..... Part the First ======== Can some one tell me why Example 1 compiles and Example 2 does not...
|
| Newbie question: Create multiple forms from template | 18 Dec 2005 18:17 GMT | 2 |
I have designed a generic "DataInput" form that I would like to re-use depending on what menu item the user has chosen. Say I have a menu with three items, where each menu item needs to provide a form for data display and input.
|
| Opacity Property | 18 Dec 2005 17:27 GMT | 3 |
Opacity property of a form, blends the blue bar (that has the close, maximize and minimize buttons) also. How can I blend the form without blending the above system blue bar? Another question, how can I convert a specified client point into a
|
| MS Access SQL Select command in date range problem | 18 Dec 2005 15:44 GMT | 3 |
Select PoHead.*, PoItem.*, PoItem.Tranno as Tranno from PoItem INNER JOIN [PoHead] ON PoItem.Tranno = PoHead.Tranno Where PoHead.TranDate > #5/10/2005# AND PoHead.TranDate < #9/10/2005# AND TRUE ORDER BY PoHead.TranDate, PoHead.SupplierCode, PoHead.ProjectCode, PoItem.StockCode
|