[Mono-devel-list] Mono-Startup

2005-07-07 Thread Jan Waiz








Hi Folks,



before writing all the Stuff i am fighting with:



Working with:

Windows XP-Prof.

Mono-1.1.8

Visual Studio 2003

ASP.NET



I have create an new ASP-Project in VS-2003 what is
still on ASP-Page thats holds only a small Table  I try to find
out the Steps I have to make that this will work with XSP. So  where can
I find a Step-by-Step-Tutorial that explains that or can someone tell me, what I
have to do?



Okay  the must be something to do with
prj2make. But there are several BAT-Files. What are they doing and what File do
I have to use?



And: What do I have to do with that MakeFile?



A lot of Confusion I am hoping, that somebody
can switch on my Light of Knowledge J



TIA

Jan Waiz






___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-devel-list] Bug in System.Drawing.Graphics.DrawString

2005-07-07 Thread Patrick Michel

Hello!

The DrawString method repeats each line of text after the previous one.

This time I filed a bug and attached a code fragment... :)

http://bugzilla.ximian.com/show_bug.cgi?id=75500

Greets,

Patrick

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-devel-list] access public fields via remoting

2005-07-07 Thread Svetlana Zholkovsky

Hi, All,
I try to access the public field in my remote object.
The field itself is MarshalByRefObject.
I get following error:


Any idea?

Thanks,

Svetlana

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-devel-list] access public fields via remoting

2005-07-07 Thread Svetlana Zholkovsky

Sorry, my attachment is not arrived,

The error is :

** (RemoteClientGH.exe:5888): WARNING **: unable to label tree 01F17730
(outarg_r8 (ldind.ref regvar[%ebx]))

This application has requested the Runtime to terminate it in an unusual 
way.

Please contact the application's support team for more information.


Svetlana

Svetlana Zholkovsky wrote:


Hi, All,
I try to access the public field in my remote object.
The field itself is MarshalByRefObject.
I get following error:


Any idea?

Thanks,

Svetlana

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list



___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-devel-list] Windows Forms 2 - WebBrowser control

2005-07-07 Thread Andrew Sklyarevsky
Hello!

The new version of Windows.Forms from Microsoft in .NET 2.0 will have a
WebBrowser control to embed a HTML renderer into form. Of course, Microsoft
realization will be in the wrapper for Internet Explorer ActiveX element.

Which realization will be maded in Mono Framework (and will any realization
exist)?

---
Andrew Sklyarevsky, Tashkent.
mailto:[EMAIL PROTECTED]
http://www.oridea.org/
http://www.livejournal.com/users/snoralip/



___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-devel-list] Windows Forms 2 - WebBrowser control

2005-07-07 Thread Sunny
On 7/7/05, Andrew Sklyarevsky [EMAIL PROTECTED] wrote:
 Hello!
 
 The new version of Windows.Forms from Microsoft in .NET 2.0 will have a
 WebBrowser control to embed a HTML renderer into form. Of course, Microsoft
 realization will be in the wrapper for Internet Explorer ActiveX element.
 
 Which realization will be maded in Mono Framework (and will any realization
 exist)?
 
 ---
 Andrew Sklyarevsky, Tashkent.
 mailto:[EMAIL PROTECTED]
 http://www.oridea.org/
 http://www.livejournal.com/users/snoralip/
 

There is such a control in .net 1.1 too. It's a wrapper of IE. I have
found an Mozilla/Gecko ActiveX control which can be used from .net
here:
http://www.iol.ie/~locka/mozilla/control.htm

Never tried it, but looks like a way to go :)

Cheers
Sunny
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-devel-list] IBM DB2 V8.2 and Mono IBM.Data.DB2 Provider (Linux)

2005-07-07 Thread Thomas Lazar

Hi there.

I'm evaluating mono for my firm. Requirement is IBM DB2 V8.2 data access.

I'm using Mono 1.1.8.1, Suse Linux 9.2 Pro and DB2 V8.2 for Linux.

Well... i first encountered the problem Pablo Cardona described in 
[Mono-devel-list] IBM DB2 db2_36.so problem. I linked libdb2.so to 
libdb2_36.so and everything seemed fine.


But now there is a new problem.

Everytime i drop a sql select which returns more then one column in the 
result set, e.g. 'select test_String1, test_String2 from dummytable', 
and try to access the data, e.g via 
Console.WriteLine(String(reader.Item['test_String1']), i get that 
exception:


Unhandled Exception: System.IndexOutOfRangeException: name
in 0x00093 IBM.Data.DB2.DB2DataReader:GetOrdinal (System.String name)
in (wrapper remoting-invoke-with-check) 
IBM.Data.DB2.DB2DataReader:GetOrdinal (string)

in 0x00013 IBM.Data.DB2.DB2DataReader:get_Item (System.String name)
in 0x0046b db2test.Units.db2test:db2test ()

Ok. The problem is occurs in GetOrdinal i thought.

rdr.GetOrdinal('test_string1').ToString results in:

Unhandled Exception: System.IndexOutOfRangeException: name
in 0x00093 IBM.Data.DB2.DB2DataReader:GetOrdinal (System.String name)
in 0x0052a db2test.Units.db2test:db2test ()

Is this perhaps because i'm using DB2 V8.2 as database and client and 
IBM has changed something in libdb2.so since V8.1? If i'm not mistaken 
the actual IBM.Data.DB2.dll is based on V8.1. Or why do i get this problem?


here is the source and console output from the programm i wrote to test 
the db2 access when i encounterd the problem. i know it's delphi.net 
code (my firm wants me to use it). i got the same problem with c#.


http://support.isoware.com/ISOware/db2test/db2test.dpr
http://support.isoware.com/ISOware/db2test/db2test.out

if nothing helps i'd like to try to debug the data provider myself, but 
i have no clue how to do it. if someone could point me to some howtos on 
debugging with mono, i'd really apreciate it.


bye
thomas
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-devel-list] mono 1.1.8.2 problems with mdb

2005-07-07 Thread Wade Berrier
Hi Mike,

It almost sounds like the default mono that came with suse 9.3 is being
used to run mdb without setting up the environment vars to find the libs
included with the installer.

The installer puts some settings in $HOME/.bashrc that need to be
loaded.  You can do this by starting a new shell or:

 ~/.bashrc

This will set up your path correctly.  Hopefully that helps.  Also, make
sure your ~/.bashrc file contains something similar:

export PATH=$PATH:/opt/mono-1.1.8.2/bin
export
PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/opt/mono-1.1.8.2/lib/pkgconfig


Wade

On Thu, 2005-07-07 at 16:24 +0100, mike horsley wrote:
 hi
 
 i downloaded the new linux installer for 1.1.8.2, installed it. i did
 have to set $PATH because the new installed so maybe this is indicative
 of another problem at my end.
 
 I compiled my test app Main.cs using -debug
 
 I then tried running mdb and got the following error:
 
 [EMAIL PROTECTED]:~/monotest1 mcs -debug Main.cs
 [EMAIL PROTECTED]:~/monotest1 mdb Main.exe
 
 Unhandled Exception: System.TypeInitializationException: An exception
 was thrown by the type initializer for
 Mono.Debugger.Frontend.GnuReadLine --- System.DllNotFoundException:
 libmonodebuggerreadline
 in (wrapper managed-to-native)
 Mono.Debugger.Frontend.GnuReadLine:mono_debugger_readline_static_init ()
 in 0x7 Mono.Debugger.Frontend.GnuReadLine:.cctor ()--- End of
 inner exception stack trace ---
 
 in 0x0 unknown method
 in 0x00043 Mono.Debugger.Frontend.CommandLineInterpreter:Main
 (System.String[] args)
 [EMAIL PROTECTED]:~/monotest1 mdb
 
 Unhandled Exception: System.TypeInitializationException: An exception
 was thrown by the type initializer for
 Mono.Debugger.Frontend.GnuReadLine --- System.DllNotFoundException:
 libmonodebuggerreadline
 in (wrapper managed-to-native)
 Mono.Debugger.Frontend.GnuReadLine:mono_debugger_readline_static_init ()
 in 0x7 Mono.Debugger.Frontend.GnuReadLine:.cctor ()--- End of
 inner exception stack trace ---
 
 in 0x0 unknown method
 in 0x00043 Mono.Debugger.Frontend.CommandLineInterpreter:Main
 (System.String[] args)
 [EMAIL PROTECTED]:~/monotest1
 
 As you can see, i get the same problem if i just launch mdb.
 
 I'm using SUSE 9.3 Pro with the GNOME desktop.
 
 Any ideas?
 
 regards
 Mike
 
 
 ___
 Mono-devel-list mailing list
 Mono-devel-list@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/mono-devel-list

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-devel-list] Re: mono 1.1.8.2 problems with mdb

2005-07-07 Thread Robert Jordan

mike,


i downloaded the new linux installer for 1.1.8.2, installed it. i did
have to set $PATH because the new installed so maybe this is indicative
of another problem at my end.

I compiled my test app Main.cs using -debug

I then tried running mdb and got the following error:

[EMAIL PROTECTED]:~/monotest1 mcs -debug Main.cs
[EMAIL PROTECTED]:~/monotest1 mdb Main.exe

Unhandled Exception: System.TypeInitializationException: An exception
was thrown by the type initializer for
Mono.Debugger.Frontend.GnuReadLine --- System.DllNotFoundException:
libmonodebuggerreadline


You must install the readline-devel RPM.

Rob

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-devel-list] Running mono on a G5

2005-07-07 Thread Gary Ali
Hi, First of all I would like to congratulate you guys for writing mono. It is amazing :)I would like to know if mono supports the G5 running on either Linux or Mac OS X(tiger). I know that mono supports the G4 but would it be possible torun the same on G5? Is G5 backward compatible. I mean, would it be possible to use the same32 bit JITter onG5 and runthe C# apps?

What all would it take to support the G5 under mono?

Thanks,
- Gary
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-devel-list] IBM DB2 V8.2 and Mono IBM.Data.DB2 Provider (Linux)

2005-07-07 Thread tsureshkumar

Thomas Lazar wrote:

Hi there.

I'm evaluating mono for my firm. Requirement is IBM DB2 V8.2 data access.
Unhandled Exception: System.IndexOutOfRangeException: name
in 0x00093 IBM.Data.DB2.DB2DataReader:GetOrdinal (System.String name)
in (wrapper remoting-invoke-with-check) 
IBM.Data.DB2.DB2DataReader:GetOrdinal (string)

in 0x00013 IBM.Data.DB2.DB2DataReader:get_Item (System.String name)
in 0x0046b db2test.Units.db2test:db2test ()



Bugzilla is the way to go ;-). Please post a bug at 
http://bugzilla.ximian.com.


if nothing helps i'd like to try to debug the data provider myself, but 
i have no clue how to do it. if someone could point me to some howtos on 
debugging with mono, i'd really apreciate it.


Great! You can use mono debugger (mdb), but it is in development. 
Otherwise, Console.WriteLine (). Get the source code and keep hacking.


browse : http://svn.myrealbox.com/source/trunk/mcs/class/IBM.Data.DB2/
db2 prvider info : http://www.mono-project.com/IBM_DB2
svn tree : refer http://www.mono-project.com/AnonSVN

suresh.
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list