maurizio.regoli | 6 Aug 2010 17:46
Picon

Error reading the number of frame in a HTML page using WebBrowser class


Hi,
 I'm try to get the number of frame in a HTML page using WebBrowser class
running on Mono. For example, if I try to navigate in
http://localhost/index.html where

index.html source code
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<title>Test Page</title>
</head>
<frameset cols="175,*" bordercolor="white" border="0" framespacing="0"
frameborder="NO">
<frame src="index04_02.html" name="Menu" scrolling="NO" noresize>
<frame src="index04_04.html" name="body" noresize>
<noframes>
<body bgcolor="white">
</body>
</noframes>
</frameset>
</html> 

index04_02.html source code
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<title>remote IU</title>
</head>
<body link="#0033ff" vlink="#0033ff" alink="red" bgcolor="#ccccff" >
(Continue reading)

Stifu | 6 Aug 2010 18:34
Picon
Favicon
Gravatar

Re: Error reading the number of frame in a HTML page using WebBrowser class


Please file a bug report.
http://mono-project.com/Bugs#How_to_make_a_good_bug_report

maurizio.regoli wrote:
> 
> Hi,
>  I'm try to get the number of frame in a HTML page using WebBrowser class
> running on Mono. For example, if I try to navigate in
> http://localhost/index.html where
> 
> index.html source code
> <html>
> <head>
> <meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
> <title>Test Page</title>
> </head>
> <frameset cols="175,*" bordercolor="white" border="0" framespacing="0"
> frameborder="NO">
> <frame src="index04_02.html" name="Menu" scrolling="NO" noresize>
> <frame src="index04_04.html" name="body" noresize>
> <noframes>
> <body bgcolor="white">
> </body>
> </noframes>
> </frameset>
> </html> 
> 
> index04_02.html source code
> <html>
(Continue reading)

Stifu | 14 Aug 2010 00:34
Picon
Favicon
Gravatar

Re: Clearing Textbox Controls


Hi,

It is this bug: https://bugzilla.novell.com/show_bug.cgi?id=621475
I submitted a patch for it, but it hasn't been applied yet.

scruffyruffian wrote:
> 
> Hi,
> 
> I apologise if this has come up before, I used the search but found
> nothing particularly relevant. I have an application written in C# .NET
> 3.5 which I'm trying to get running with Mono so that people using Linux
> can mess with it too.
> 
> I have a text box which starts off with text in it, then when the user
> clicks, it uses the click event to remove that default text - allowing the
> user to enter their own without having to delete the default text
> manually.
> 
> However, running under Mono (2.6.7), when I click on the text box control
> it clears the text, but the next click or keyboard hit will cause the form
> to just close.
> 
> I tried creating a new Solution in VS2008, stuck a text box on the form.
> The only property I changed was the "Text" on the TextBox control which I
> changed to "Hello".
> 
> I then gave the TextBox control a "Click" event, and tried doing the
> following to try and clear the text box without causing the form to close
(Continue reading)

Daniel Liang | 18 Aug 2010 09:33
Picon

Encrypted password format does not work for MysqlMembershipProvider

Hi, I am trying to use MysqlMembershipProvider in mono 2.6.4 under Ubuntu, but Encrypted password keeps failing on me. I tried the same code on Windows and it works fine.

I have set membership and machineKey in web.config as follows:

<membership defaultProvider="MySQLMembershipProvider">
    <providers>
        <remove name="MySQLMembershipProvider"/>
        <add name="MySQLMembershipProvider" .... passwordFormat="Encrypted" ..../>
    </providers>
</membership>
<machineKey validationKey="3F5AEE12D9EE359871867FCB45D819AF27AA7263A20EB484F3FAA6A4FFB3B345903C23394F1030DE39078A5D39809C79F06F9C2974E0F3A6810504DF7EEA219B" decryptionKey="4184C83286BA70E4706F996D95B7DF848A3143227200BA74CB2E624E2B730E0F" validation="SHA1" decryption="AES"/>

There was a similar topic on this issue in a previous thread:
http://go-mono.com/forums/#nabble-td1539979

But that doesn't describe whether MysqlMembershipProvider works with Encrypted password in mono or not.

When I create users under Mono, the values under "password" column in the database are different even I have the same password for all the users. But if I create the users under windows, the values are all the same.

Does anyone know how to make that work?

_______________________________________________
Mono-winforms-list maillist  -  Mono-winforms-list <at> lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-winforms-list
Stifu | 21 Aug 2010 10:48
Picon
Favicon
Gravatar

Re: Alignment issue on different OS


Hi,

It may be this issue:
http://www.mono-project.com/FAQ:_Winforms#My_forms_are_sized_improperly
Basically, look for AutoScale property definitions in your designer code,
and remove them.

murali wrote:
> 
> Hi all,
> 
>        I have developed a vb.net window application to run on mono. The
> application works fine in suse linux, if the same is executed on ubuntu or
> centos, the position of controls in the form is changed.
> 
>        please let me know how to solve this issue.
> 
> Thanks & Regards,
> Murali S
> 

--

-- 
View this message in context: http://mono.1490590.n4.nabble.com/Alignment-issue-on-different-OS-tp2333290p2333345.html
Sent from the Mono - WinForms mailing list archive at Nabble.com.
_______________________________________________
Mono-winforms-list maillist  -  Mono-winforms-list <at> lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-winforms-list


Gmane