Thomas Gish | 1 Jul 01:29
Picon
Favicon

MaskedTextProvider

Hello all

I've been working on System.ComponentModel.MaskedTextProvider and have
most of the properties finished and some of the methods implemented. I
am planning on having the class complete this weekend. I was wondering
how I would go about getting this class added to subversion so I could
make patches against it.

Thanks
Thomas
_______________________________________________
Mono-winforms-list maillist  -  Mono-winforms-list <at> lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-winforms-list

Re: MaskedTextProvider

Just run "svn add MaskedTextProvider.cs" in the directory where the file is. 
After that svn allows you to diff against it. No write-rights to the 
repository are required for the add.

Cheers,
 Peter

PS: No, I'm not that smart. Jackson told me that this works even without 
write rights.

-----Original Message-----
From: "Thomas Gish" <tgishjr <at> iupui.edu>
To: <mono-winforms-list <at> lists.ximian.com>
Date: 30 June, 2005 17:29
Subject: [Mono-winforms-list] MaskedTextProvider

>Hello all
>
>I've been working on System.ComponentModel.MaskedTextProvider and have
>most of the properties finished and some of the methods implemented. I
>am planning on having the class complete this weekend. I was wondering
>how I would go about getting this class added to subversion so I could
>make patches against it.
>
>Thanks
>Thomas
>_______________________________________________
>Mono-winforms-list maillist  -  Mono-winforms-list <at> lists.ximian.com
>http://lists.ximian.com/mailman/listinfo/mono-winforms-list
>
(Continue reading)

Paul | 1 Jul 12:01
Picon

Problem with MWF

Hi,

I've just recompiled mwf using the preview option and a piece of
software which normally runs is causing a bit of a problem - looks like
something has broken somewhere.

The throwback is this

Mono System.Windows.Forms Assembly [Revision: 44786; built: 2005/5/25
22:34:45]
Keyboard: British keyboard layout
TextControl.cs(969) Invalidate called in UpdateView(line, pos)
TextBox.cs(1175) Invalidate called in CalculateDocument
TextBox.cs(1175) Invalidate called in CalculateDocument
TextBox.cs(1175) Invalidate called in CalculateDocument
TextBox.cs(1175) Invalidate called in CalculateDocument
TextBox.cs(1175) Invalidate called in CalculateDocument
TextBox.cs(1175) Invalidate called in CalculateDocument
TextBox.cs(1175) Invalidate called in CalculateDocument
TextBox.cs(1175) Invalidate called in CalculateDocument
TextBox.cs(1175) Invalidate called in CalculateDocument
TextBox.cs(1175) Invalidate called in CalculateDocument
TextBox.cs(1175) Invalidate called in CalculateDocument
TextBox.cs(1175) Invalidate called in CalculateDocument

Unhandled Exception: System.NullReferenceException: Object reference not
set to an instance of an object
in <0x0003f> System.Windows.Forms.Document:PositionCaret
(System.Windows.Forms.Line line, Int32 pos)
in <0x00314> System.Windows.Forms.TextBoxBase:set_Text (System.String
(Continue reading)

Re: Problem with MWF

Having the code that causes this would surely help. Or at least some details 
what the code puts in / what keys you pressed in the textbox.

Peter

-----Original Message-----
From: "Paul" <paul <at> all-the-johnsons.co.uk>
To: "winforms" <mono-winforms-list <at> lists.ximian.com>
Date: 01 July, 2005 04:01
Subject: [Mono-winforms-list] Problem with MWF

Hi,

I've just recompiled mwf using the preview option and a piece of
software which normally runs is causing a bit of a problem - looks like
something has broken somewhere.

The throwback is this

Mono System.Windows.Forms Assembly [Revision: 44786; built: 2005/5/25
22:34:45]
Keyboard: British keyboard layout
TextControl.cs(969) Invalidate called in UpdateView(line, pos)
TextBox.cs(1175) Invalidate called in CalculateDocument
TextBox.cs(1175) Invalidate called in CalculateDocument
TextBox.cs(1175) Invalidate called in CalculateDocument
TextBox.cs(1175) Invalidate called in CalculateDocument
TextBox.cs(1175) Invalidate called in CalculateDocument
TextBox.cs(1175) Invalidate called in CalculateDocument
TextBox.cs(1175) Invalidate called in CalculateDocument
(Continue reading)

Alexander Olk | 1 Jul 18:32
Picon

Re: Problem with MWF

Am Freitag, den 01.07.2005, 10:03 -0600 schrieb Peter Dennis Bartok:
> Having the code that causes this would surely help. Or at least some details 
> what the code puts in / what keys you pressed in the textbox.

Peter,

ColorDialog still crashes with the same error. It is the same issue that
I mailed you some days ago...

Alexander Olk

_______________________________________________
Mono-winforms-list maillist  -  Mono-winforms-list <at> lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-winforms-list

Dave Russell | 1 Jul 20:02

Close method not working?

I've done a great deal of .NET programming under Windows, and I'm just
now starting to do so under Mono as well. So far, I've really been
impressed with the System.Windows.Forms classes - they seem to work
nearly identically to their Windows cousins!

The problem I'm having right now is closing windows. So, I'll pop up a
child window (like an about box) by creating a new instance of the
window's class, say AboutForm, ala:

AboutForm frm = new AboutForm();
frm.Show();

The About form, then has a simple OK button, with a single line in the
event handler:

this.Close();

The problem is that the window never closes! Even selecting the "X" in
the corner, or choosing Close from the system menu has no effect. Am I
missing something here? This code works perfectly fine when I build it
for Windows using VS.NET. Maybe there's some nuance I'm not aware of
here.

Thanks for the help,

Dave

_______________________________________________
Mono-winforms-list maillist  -  Mono-winforms-list <at> lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-winforms-list
(Continue reading)

Paul | 2 Jul 00:07
Picon

Re: Problem with MWF

Hi,

> Having the code that causes this would surely help. Or at least some details 
> what the code puts in / what keys you pressed in the textbox.

The source is below. It doesn't run, just gives the throwback I
originally posted. I have a few other examples of this behaviour in code
which previously ran.

> using System;
> using System.Drawing;
> using System.ComponentModel;
> using System.Windows.Forms;
> using System.Data;
> 
> namespace WindowsApplication1
> {
>   public class Form1:System.Windows.Forms.Form
>   {
>     private System.Windows.Forms.GroupBox groupBox1;
>     private System.Windows.Forms.RadioButton radioButton1;
>     private System.Windows.Forms.RadioButton radioButton2;
>     private System.Windows.Forms.RadioButton radioButton3;
>     private System.Windows.Forms.CheckBox checkBox1;
>     private System.Windows.Forms.CheckBox checkBox2;
>     private System.Windows.Forms.CheckBox checkBox3;
>     private System.Windows.Forms.Button button1;
>     private System.Windows.Forms.Button button2;
>     private System.Windows.Forms.ProgressBar progressBar1;
>     private System.Windows.Forms.TabControl tabControl1;
(Continue reading)

Re: Problem with MWF

Alexander, Paul,

Fixed in svn r46866. Sorry about causing a regression. I'm still cleaning up 
some of that code, and a off-by-one error snuck in.

Cheers,
  Peter

-----Original Message-----
From: "Alexander Olk" <xenomorph2 <at> onlinehome.de>
To: <mono-winforms-list <at> lists.ximian.com>
Date: 01 July, 2005 10:32
Subject: Re: [Mono-winforms-list] Problem with MWF

>Am Freitag, den 01.07.2005, 10:03 -0600 schrieb Peter Dennis Bartok:
>> Having the code that causes this would surely help. Or at least some 
>> details
>> what the code puts in / what keys you pressed in the textbox.
>
>Peter,
>
>ColorDialog still crashes with the same error. It is the same issue that
>I mailed you some days ago...
>
>Alexander Olk
>
>_______________________________________________
>Mono-winforms-list maillist  -  Mono-winforms-list <at> lists.ximian.com
>http://lists.ximian.com/mailman/listinfo/mono-winforms-list
>
(Continue reading)

Paul | 2 Jul 01:08
Picon

Re: Problem with MWF

Hi,

> Fixed in svn r46866. Sorry about causing a regression. I'm still cleaning up 
> some of that code, and a off-by-one error snuck in.

'sokay, we still love you :-)

TTFN

Paul
--

-- 
"The city of Washington was built on a stagnant swamp some 200 years ago
and very little has changed; it stank then and it stinks now. Only
today, it is the fetid stench of corruption that hangs in the air" -
Simpson, L. Mr Lisa Goes to Washington (1991) Fox. 8F01 (Sep).
_______________________________________________
Mono-winforms-list maillist  -  Mono-winforms-list <at> lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-winforms-list
Vasiliy Stepanov | 7 Jul 13:28
Picon

mono application under mac os x using mwf.

I try to run mono application under mac os x using mwf. The dialog window of application appears, but I could press any buttons. Also I cannot move application window.

_______________________________________________
Mono-winforms-list maillist  -  Mono-winforms-list <at> lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-winforms-list

Gmane