|
Hello!
I want to draw a reversible frame on my windows form. I have found the method ControlPaint.DrawReversibleFrame, but this method is not, what I'm looking for.
I need a dotted frame like a fokus rectangle.
Is there somebody who can tell me, how I can draw such a frame or how I can draw dashed lines with a XOR combination of colors?
Thanks
Björn
|
|
|
|
|
If you need a focus rectangle, why not use ControlPaint.DrawFocusRectangle ? You can specify both the foreground and background colors. If you need to invert the colors, you can create a new Color by XOR'ing each of the R, G, and B components with 0 or 0xfff.
If you want to draw a rectangle around the bounds of the control itself use the Control.Bounds property for the rectangle param of the DrawFocusRectangle method.
If neither of these approaches is quite what you want, you can draw dotted lines by using a custom Pen with the Pen.DashStyle property set in calls to Graphics.DrawLine or Graphics.DrawRectangle and similar methods.
-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
|
|
|
|
|
I follow all ms treeview document steps, There need to copy webcontrls.dll to app's direction,but i can't find this file.
|
|
|
|
|
You have to download it from http://asp.net/ControlGallery/default.aspx?Category=38&tabindex=2[^]. Follow the directions to properly install the client files and ASP.NET assemblies in the appropriate directories. Unfortunatley, this is a manual installation for each Web Application in which you want to use these controls.
-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
|
|
|
|
|
It doesn't necessarily need to be configured per app. In our configuration the dll is loaded into the GAC on the webserver and the webctrl_client folder is under the webroot.
|
|
|
|
|
sharing internet offline files between two OS?
which i mean if i have two OS Win 98 and 2000 Pro
and each one on different partition
and i connect to the internet using win 98 i want to see
the offline files win i'm using win 2000
i want to write program that do this or if there are solution at the windows
please tell me
|
|
|
|
|
Why are you posting this in the C# forum? This is a Windows question and should be directed to the appropriate forum or the Lounge. I will answer anyway, but please do not post in an inappropriate forum again.
There is a solution in Windows already. Add a favorite to a web site and check the "Offline" check box (or something like that) to download a cached copy. This will be limited to the current OS unless you share the same Internet Cache folder for Internet Explorer in both operating systems, but remember that Windows 9x/ME cannot access NTFS so you'll either have to format your Win2K partition as FAT32 (not a good idea because you loose file security features) or have Win2K access the FAT/FAT32 partition in Windows.
If you're talking about offline network share files, only Windows NT (which includes 2000, XP, and 2003) supports this so your Win98 installation will have to access that folder, which means you'll have to format the partition as FAT32 (again, a bad idea).
-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
|
|
|
|
|
sorry for posting in wrong forum
but i did that in case that i have to write application to do this
in all cases thanks for your help
|
|
|
|
|
Hello,
I'm writing an application that reads in a .WAV file and performs some DSP operations on it.
Visual representation of this data is essential, and I'm looking for some classes that would help generate X-Y plots, including the following:
1. Plot title
2. X and Y axis titles
3. Choice of color for multiple plots on the same graph.
Could somebody point me to suitable resources? I know that there are companies selling such packages, but all I need is an X-Y plot, and a free class would be ideal.
Thank you!
|
|
|
|
|
crushinghellhammer wrote:
Could somebody point me to suitable resources? I know that there are companies selling such packages, but all I need is an X-Y plot, and a free class would be ideal.
Try the MSChart control. It is installed with VS.NET. I realize that it is COM, but it still works nicely in .NET.
Brian
|
|
|
|
|
|
I'm curious if you know of any good documentation on how to convert a C# string to an MFC CString. A C# application I'm working on needs to call a C++ function exported by a dll, and the prototype of that function includes several MFC CString objects.
I suspect it's trivial to do, but that it involves some esoteric knowledge of the built-ins that I just don't have. I'm also hoping to circumvent the use of managed C++ to do this but simply preparing the correct byte-format structure that can sit in and be accepted and properly interpreted as a CString by the C++ function.
Thanks,
Jerry
jerry@cs.stanford.edu
|
|
|
|
|
The first thing to do is read the documentation for the DllImportAttribute in the .NET Framework SDK, as well as the MarshalAsAttribute . The first is how you P/Invoke native functions. Since an MFC CString can be cast to an LPTSTR , you use use the UnmanagedType.LPTStr in the MarshalAsAttribute for the string parameter. There's also several articles about P/Invoke and interoperability in the .NET Framework SDK that should help.
-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
|
|
|
|
|
Hello all,
I have any unusual question for you all. My piqued interest in the Thai lanugage/culture has prompted me to develop my own Thai Learning System. For the various consonants and vowels I want to animate how to draw each symbol. I was thinking of using a Thai True Type font and for each character animate along it to demostrate how it is drawn.
My problem is how can I read the true type fonts coordinates and animating along the symbol? Perhaps I need to hook the event that actually paints the symbols on the canvas then with my own event actually paint the symbol in some sort of time lapse fashion to present it in an animated fashion.
My other thought was to create a bunch of methods that draw each symbol as lines/arcs/Bezier Curves, but I figured it would be easier tracing the true type font in a generic fashion. With the lines/arcs/Bezier Curves I don't know how to get teh GDI+ engine to animate the points. Is there a way?
If anyone has any other suggestions or a better solution, which I am sure exist, please let me know.
Mark H.
|
|
|
|
|
First of all, .NET doesn't contain such low-level hooks. All you could do is draw the fonts yourself. I'm not even aware of any way to control fonts to such a degree exposed in the Win32 APIs and I've spent over a decade getting headaches from them (though such headaches might have lead to temporary blindness, causing me to miss such functionality )! This would be a function of GDI so you could look into the documentation.
Besides, true type fonts don't really contain any data that would allow you to show how each character is drawn. They contain points that help with resizing but those aren't in any order that is representational to how a human would draw them.
Your best bet will be to - as you didn't want to do - use lines, beziers, etc., to draw the characters.
Might I recommend Macromedia Flash, though? I've seen a lot of examples of similar presentations that actually draw things in steps. You would also be able to easily host this in a web page (you can with .NET controls, but it requires the ~20 MB framework and a pre-installed security policy to allow your code form a specific site to run), any COM client, or even a .NET application (which can be a COM client).
If you wanted to use GDI+ in a .NET application, you would have to worry about all the animation. For example, if you use Graphics.DrawLine to draw a line, the line is just there. It won't be animated. You'd instead have to call Graphics.DrawLine repeatedly to draw longer and longer lines until you reached the desired length! That's easy, though, compared to curves - you would have to calculate each point in the spline or the start and sweep angles for arcs with each iteration of the animation!
You could use Managed DirectX - which will help you with graphics a little - but you'd still need to worry about creating a package to handle the character animation. Things like Flash and even DHTML with vector graphics already have this support - you just have to tell it how to animate what you want.
-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
|
|
|
|
|
Your best bet is to use freetype, refer the XFree86 codebase
leppie::AllocCPArticle("Zee blog"); Seen on my Campus BBS: Linux is free...coz no-one wants to pay for it.
|
|
|
|
|
Sorry if this is a common problem that people already know the answer to, but...
I've written a cool app for use in aircraft navigation, and it draws a compass rose by drawing to a graphics path and then using a matrix to rotate it.
Except this functionality is missing in the PocketPC GDI+ library.
Apart from the obvious (write my own anti-aliased rotation code) is there anything I can do to get this to work on a PocketPC?
TIA.
for (int i = 0; i < 360; i+=10)
{
GraphicsPath gpRose = new GraphicsPath();
gpRose.AddLine(centre.X, centre.Y - radius - 3, centre.X, centre.Y - radius - 13);
if (i%30 == 0)
{
gpRose.AddString(i.ToString("000"), new FontFamily("Arial"), (int)FontStyle.Regular, 10, new PointF(centre.X - hdgWidth/2, centre.Y - radius - 25), null);
}
Matrix roseMatrix = new Matrix();
roseMatrix.RotateAt((float)(i-iActualHeading), new PointF(centre.X, centre.Y));
gpRose.Transform(roseMatrix);
e.Graphics.DrawPath(p, gpRose);
}
|
|
|
|
|
While the GraphicsPath and Matrix classes aren't supported in the Compact Framework, the Graphics class is. It won't be easy since you'll have to do a lot of calculates instead of harnessing the power of the Matrix (and I thought the "Matrix" was a bad thing! ), but you could perform all the drawing using the methods of the Graphics class.
-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
|
|
|
|
|
I tried to port a custom control earlier today, and althought the Graphics class is availble, its severly limited.
I did notice a GAPI .NET wrapper on pocketpcdn.com[^]
leppie::AllocCPArticle("Zee blog"); Seen on my Campus BBS: Linux is free...coz no-one wants to pay for it.
|
|
|
|
|
Hi, all,
I've stumbled upon a behavior of the .NET RichTextBox that I think is a bug, and I wanted somebody to do a sanity check before I report this to MS.
Below is a code listing. It displays a form with a RichTextBox control in it. Ctrl++ and Ctrl+- increase/decrease zoom. Space and Backspace keys change content of the text box.
Currently, zoom step is 0.5. Notice that when zoom factor is 2.0 (you can make it that by pressing Ctrl++ twice), the text box doesn't retain the zoom factor when its content changes. When you uncomment MessageBox statement in DisplayText (uses Clear() method of the text box class) method, you can more glimpse of the weird behavior. It is actually different with the MessageBox there. Increase zoom to 2.0 by pressing Ctrl++ twice and then press Space or Backspace repeatedly and notice zoom factor change from 2.0 to 1.0 to 2.0 to 1.0, …
After that, change the zoom step to, say, 0.3 (zoom factor doesn't become 2.0 with this step), and notice that the box behaves as expected (the zoom factor remains as set).
Is this a bug or reflection of my wrong expectations?
Thanks
----------------------------------
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
namespace BugInZoomFactor
{
/// <summary>
/// Summary description for Form2.
/// </summary>
public class BugInZoomFactorForm : System.Windows.Forms.Form
{
private System.Windows.Forms.RichTextBox richTextBox1;
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.Container components = null;
private float zoomFactor = 1.0f;
private float zoomStep = 0.5f;
public BugInZoomFactorForm()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
//
// TODO: Add any constructor code after InitializeComponent call
//
this.KeyPreview = true;
DisplayText("Initial text");
}
private void DisplayText(string text)
{
richTextBox1.Clear();
richTextBox1.ZoomFactor = zoomFactor;
//MessageBox.Show("control's zoom factor is " + richTextBox1.
ZoomFactor.ToString());
richTextBox1.AppendText(text);
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.SuspendLayout();
//
// richTextBox1
//
this.richTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)
((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.richTextBox1.Location = new System.Drawing.Point(16, 154);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.ReadOnly = true;
this.richTextBox1.Size = new System.Drawing.Size(672, 382);
this.richTextBox1.TabIndex = 4;
this.richTextBox1.Text = "";
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(704, 541);
this.Controls.Add(this.richTextBox1);
this.Name = "BugInZoomFactorForm";
// this.Text = "Form2";
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.
OnKeyDown);
this.ResumeLayout(false);
}
#endregion
private void OnKeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
{
if(e.KeyCode == Keys.Oemplus && e.Control)
{
if(zoomFactor < 64.0)
{
zoomFactor += zoomStep;
richTextBox1.ZoomFactor = zoomFactor;
}
}
else if(e.KeyCode == Keys.OemMinus && e.Control)
{
if(zoomFactor > 1.0)
{
zoomFactor -= zoomStep;
richTextBox1.ZoomFactor = zoomFactor;
}
}
else if(e.KeyCode == Keys.Space)
{
DisplayText("Subsequent text");
}
else if(e.KeyCode == Keys.Back)
{
DisplayText("Initial text");
}
}
[STAThread]
static void Main()
{
BugInZoomFactorForm form = new BugInZoomFactorForm();
Application.Run(form);
}
}
}
|
|
|
|
|
I'm seeing this behavior too, odd. I don't see anything wrong with your code right off hand (hey, just have to check before filing a bug ) and looking at the IL for the RichText.set_ZoomFactor (and a subsequent call to a private method) doesn't show any calculation bugs either. I'm guessing this is actually a problem with the Rich Edit common control somewhere in the EM_SETZOOM message handler.
So, googling for "Rich Edit" EM_SETZOOM[^] shows you're not the only one! Feel free to report, though. Maybe someone hasn't yet. Never know.
-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
|
|
|
|
|
Problem: I need to call a function when either a combo box selection is changed or some new text is typed into the combo box.
SelectedIndexChanged takes care of the first half, but I can't figure out the OnTextChanged part.
Does anyone know what event is triggered when a user types in text into the ComboBox?
I know there are Enter and Leave events... but then I will have to keep track of whether the text changed myself, and that's my very last resort, because I have a gut feeling (called laziness ) that there has to be a better way to do this
Does anyone have any ideas?
Thank you,
Elena
Elena
|
|
|
|
|
elena12345 wrote:
Does anyone have any ideas?
When you form loads up, store an intial value within a public variable, the add an event handler for KeyDown , something like this should work:
public string buffer = "something";
private void comboBox1_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
{
if(e.KeyCode == Keys.Enter)
{
ComboBox cb = sender as ComboBox;
if(cb != null)
{
if(cb.Text != buffer)
{
}
}
}
}
- Nick Parker My Blog
|
|
|
|
|
Hi Nick,
Thank you for your reply.
I don't see the advantage of using the KeyDown event instead of the Leave event. I got to store the value and do everytyhing manually anyway.
Plus neither KeyDOwn nor Leave will catch the cases when the ComboBox is set programmatically.
I guess there is no ComboBox.OnSelectedValueChaged silver bullet.
Thanks again,
Elena
|
|
|
|
|
The TextChanged event fires if your ComboBox.DropDownStyle is set to ComboBoxStyle.DropDown . The unfortunate part is that is fires for every character typed, so you might want to handle the LostFocus event or the Validating event in order to add the new text or to call the function after the text is entered in its entirety.
-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
|
|
|
|