| Thread | Last Post | Replies |
|
| Vista embed with .net Framework 2.0? | 23 Jul 2008 10:07 GMT | 1 |
which means that I need not pack .net framework 2.0 within my installation program's folder?
|
| Inheritance of controls and forms ... | 23 Jul 2008 08:48 GMT | 3 |
It is maybe a stupid question, but I have some trouble with Inheritance. For example: I create a new class with one form.
|
| Desktop Window Manager wrapper | 23 Jul 2008 07:38 GMT | 4 |
In case you are writing a program that need to interact with the Desktop Window Manager, manage Glass or blur on your forms/windows, you might want to check the series of posts I am writing on this matter at http://stoyanoff.info/code/glasslib/.
|
| disapearing record | 23 Jul 2008 06:26 GMT | 3 |
I have a total loss of how to actually add rows to an MS access table. The addnew creates a row on the table but once EndEdit is called it disappears. What am I missing. DataRowView newRow = (DataRowView)DB.tblBallBindingSource.AddNew();
|
| Remove v3.5 reference? | 23 Jul 2008 05:52 GMT | 13 |
How can I know what references I have used in my project? Is it those under "All Components" in Object Browser? How to remove them? I am going to downgrade my project from .NET Framework 3.5 to 2.0 by changing TargetFramework to ".NET Framework 2.0" in Project Properties.
|
| Help | 23 Jul 2008 03:13 GMT | 3 |
I am a new VS and C# developer with 20 plus years programming experience and I am finding the database stuff incredibly frustrating. I have read programming c# 3.0 pretty much cover to cover, the c# cookbook does not seem to have any database stuff (it is not obvious anyway). ...
|
| 4 panes WinForm | 23 Jul 2008 03:07 GMT | 3 |
I work with VS2005 and .NET FW ver. 3.0. I need to implement 3 to 4 panes in my form application. Is that possible? Is there a way for the user to configure in real time (the pane number)?
|
| Dispose in Forms (VS 2005) | 23 Jul 2008 03:06 GMT | 5 |
Hi misters, I noticed one thing that looked a little weird: The Dispose method goes into the generated portion of the partial form. Now, this might not be highly applicable to a Form (because you should be
|
| c# accessors | 23 Jul 2008 02:54 GMT | 4 |
İ have a property like this. [TypeConverterAttribute(typeof(AConverter))] public class Expandable {
|
| User control refactoring (WPF) | 23 Jul 2008 02:30 GMT | 3 |
Hi Expert, i'm doing some program for my project which using WPF, to create my application more managible i would apply "user control" concept for my project for each section of my workspace.
|
| Microsoft Report Viewer with SqlConnection | 23 Jul 2008 01:34 GMT | 1 |
anyone has a code sample to connect the Microsoft Report Viewer Control using Microsoft SQL Server stored procedure?
|
| XML config | 23 Jul 2008 01:13 GMT | 6 |
I'd like to know if there is a way that I could create a new object for each product in an XML file. XML---------- <flavor id="vanilla">
|
| mpossible strange behaviour with sendmessage (make no sense at all) | 22 Jul 2008 23:56 GMT | 6 |
I use sendMessage to retrieve information from another application. For some obscur reasons, my code work only in a button click event and nowhere else in my application. I mean I get unexpected result depending where the code is placed in my application ?!?!?!?!?
|
| using | 22 Jul 2008 20:00 GMT | 5 |
Consider the following code: using(StreamReader fin = new StreamReader(filename)) { // do work with fin
|
| Webbrowser control : Removing redraw when changing pages | 22 Jul 2008 17:59 GMT | 6 |
I'm using a webbrowser control within an application for the UI and want to hide the flicker and redraw when changing pages. Ideally I want to render the new page to a seperate offscreen buffer then fade this over the exisiting page. Can anyone recommend a good way to approach ...
|