Windows Forms - future
Mon, 1 Sep 2008 17:04:03 +0200
When Microsoft is planning to stop including Windows Forms in .NET? Will it
ever happen? I was wandering if it safe now to start learning WPF.
Kind Regards
djp
...
|
Keyboard Hooking including Unicode
Mon, 1 Sep 2008 07:42:00 -0700
Hi. I posted this question a LONG time ago, got a response from the wonderful
Linda Liu, and then lost the thread and everything but need to close up the
issue.
I need to be able to globally hook the keyboard in a C# Windows App, but,
very specifically, I need to be able to receive a KeyPress event that wil ...
|
Child controls are visible & take up layout space but will not draw
Sun, 31 Aug 2008 11:05:29 -0700 (PDT)
I have a user control that contains a FlowLayoutPanel. At runtime I
dynamically add other controls to this panel (I've also tried using a
regular Panel with manual positioning but run into the same issue that
follows). When I first launch the application, my control has -- as an
example -- 5 regular buttons laid ...
|
Re: Displaying Text in a RichtText Control Problems,...
Fri, 29 Aug 2008 20:49:05 +0000 (UTC)
Hi Kerem,
I don't get it when you say this is not a 100% solution... This is the only
solution! :)
If you do a simple test, and set the Text property of a RichTextBox including
RTF Control Codes such as "\", and then check the Rtf property, you will
notice that the RichTextBox control duplicate the contr ...
|
Embedded UserControl sometimes displays 'Red X' in Internet Explor
Fri, 29 Aug 2008 13:45:02 -0700
We have created a very simple user control (System.Windows.Forms.UserControl)
by making a new VB.NET Windows Control Library Project in Visual Studio 2003
(named VPControls.CtlGraph). The user control contains a graph control
(GSNetWinChart from GraphicsServer). We have successfully displayed the
control o ...
|
IT - Jobs, Interview Questions, Certification
Fri, 29 Aug 2008 09:17:06 -0700 (PDT)
Hi,
In the very fast moving IT Industry, there is a need for the people to
keep a note of what is happening in the field, what are the latest
Jobs available and in which technologies they are available and what
companies and also in which cities.
And also when applying for Jobs, it is obvious for people to ...
|
form mouse event
Fri, 29 Aug 2008 05:06:00 -0700
I have a user control on a form. Now when I move mouse on usercontrol, I want
form's mouse move event to also fire. How to do that.
Thanks ...
|
|
|
Creating and returning a form from a thread - C# 2.0
Thu, 28 Aug 2008 21:08:55 -0700 (PDT)
Hello All,
We have two applications in .NET 2.0 C#.
App1 communicates with App2 throught App2's COM layer. App1 has the
ability to load some of the forms exposed by App2.
The problem is when the user tries to load the form from App2 for the
first time the whole GUI freezes up as the UI thread gets busy ...
|
Re: Displaying Text in a RichtText Control Problems,...
Thu, 28 Aug 2008 22:57:28 +0000 (UTC)
Hum.. Okay.
Just replace each backslash to *two* backslashes, as do in C# when you don't
use the "@" :).
Something like:
@"{\rtf1 {\colortbl ;\red0\green128\blue0;\red0\green0\blue255;}{\b "
+ ObjectProperty.Name.Replace(@"\", @"\\")
+ @"} \par \b0 {"
+ da.Description
+ @"}\par {\b Value: }\cf1\b0 ...
|
Displaying Text in a RichtText Control Problems,...
Thu, 28 Aug 2008 21:37:01 +0200
Hi,
i have text like this:
"ACPI\GENUINEINTEL_-_X86_FAMILY_6_MODEL_13\_0"
an after displaying it in a RichTextBox as RTF string, i get this:
"ACPI_-_x86_Family_6_Model_13 "
How can i enclose this text section, so that the RTF Engine
does it print exactly the way it is add and does not treat
backslas ...
|