Re: [Mono-list] VB.NET compiler now 20 times faster !

2004-10-21 Thread B Anirban
Hey, May be you wanted to write this mail to jambu. The whole credit goes to him :-) Thanks. Anirban. >>> Sijmen Mulder <[EMAIL PROTECTED]> 21-Oct-04 1:44:16 PM >>> > Mono's VB.NET compiler is now 20 times faster. > Check it out from CVS today and let us know what you find. Unbeleivable. How

Re: [Mono-list] VB.NET compiler now 20 times faster !

2004-10-20 Thread B Anirban
Hey Jambu, The hack was just superb. One program which used to take 11 minutes in my machine to compile is taking 15secs. This should be real good news for ASP developers as well who are interested in writing code in vb .net. They can run their code as it is without tweaking the code or HTTP sess

RE: [Mono-list] Language Clarification

2004-10-12 Thread B Anirban
Hey Devid, As Rafael has already mentioned, if you specify "Page Language= VB" in your aspx page VBCodeGenerator generates a corresponding VB file for that page. This page gets compiled on the fly when you try to access your asp .net application for the first time (even when you use precompiled cod

RE: [Mono-list] VB? Or just C#?

2004-10-04 Thread B Anirban
Hi David, This problem is occurring since you have an older version of Microsoft.VisualBasic dll. And mono is not yet equipped for remapping this assembly to the newer version automatically. Please report bug in bugzilla (bugzilla.ximian.com) on this against mbas. Thanks. Anirban. >>> "David P.

Re: [Mono-list] VB? Or just C#?

2004-09-12 Thread B Anirban
Hi David, > Can Mono compile ASP .NET websites written in VB, or is it limited to > only C#? If it can, I'm having trouble finding documentation on how... Mono can compile simple ASP .Net pages written in VB. We have not tested yet with any ASP .Net application. You can try compiling your applic

[Mono-list] mbas is getting better

2004-08-19 Thread B Anirban
Hey Guys, Today when I run the mbas test suite I proudly noticed that 93% of positive test cases related to Types and Type members are getting passed. Mbas is getting better. You may get more info on this in my today's blog (http://codeblogs.ximian.com/blogs/banirban). Regards. Anirban.

Re: [Mono-list] Strings.InStr

2004-08-16 Thread B Anirban
Since you are using C#, you should try using String.IndexOf() function. This actually serves the same purpose in C# and is the parent function of InStr. Anirban. >>> lamyae Benabdeljalil <[EMAIL PROTECTED]> 16-Aug-04 11:17:54 PM >>> Hell all i cannot make Strings.InStr() method work with mono, ev

[Mono-list] Execution result of VB Runtime tests on Mono

2004-06-23 Thread B Anirban
://codeblogs.ximian.com/blogs/banirban/archives/VBTests/log_linux.html/log_24_06.txt I will be publishing shortly the whole test files along with the updated result. Great going. Thanks. Anirban. >>> A Rafael D Teixeira <[EMAIL PROTECTED]> 25-May-04 8:01:31 PM >>> On Tue, 2004-0

Re: [Mono-list] Compilation with MBAS (MCS works still fine)

2004-06-03 Thread B Anirban
Hi Jochen, The problem is fixed and checked in cvs. Please update driver.cs in your local area. I had filed a bug (59540) and closed it to keep track of the problem. Thanks. Anirban. >>> "Jochen Wezel" <[EMAIL PROTECTED]> 02-Jun-04 2:24:14 PM >>> After refreshing my RedHat 9 system with Beta 2 f

[Mono-list] Execution result of VB Runtime tests on Mono

2004-05-24 Thread B Anirban
Hi All, I have executed the VB Runtime tests developed by MainSoft on Mono. The results are published in following link http://codeblogs.ximian.com/blogs/banirban/archives/VBTests/log_linux.html/exec_log_linux.html Thanks. Anirban. ___ Mono-list mailli

Re: [Mono-list] vb.net applications on linux

2004-05-11 Thread B Anirban
Hi Ahmed, As most of the posts for this topic suggest you to compile the program in Windows with 'Option Strict on' should work. But still you might need to do few changes in your program to get it working in Mono. The scenario of mbas today is like this. The work is going on in two pieces. a) V

Re: [Mono-list] problems while building

2004-03-12 Thread B Anirban
Download the latest monocharge from http://www.go-mono.com/daily. Copy all dlls to usr/local/lib and exes to usr/local/bin (if you have used prefix while building mono use that path instead of usr/local) setps are - build mono make install mono copy files (dll and exe) from mono charge make mcs ma

Re: [Mono-list] Running Testcases

2004-03-11 Thread B Anirban
> I want to know about a console based testing method > ( and which does not need gtk# like nunit-gtk ) You can use run_test.sh which is in mcs/corlib/Test folder. Anirban. >>> mono devel <[EMAIL PROTECTED]> 12-Mar-04 11:15:37 AM >>> hello, Can anyone please tell me how to run test cases i

[Mono-list] Status report

2004-02-22 Thread B Anirban
Last Week: - Checked in another set of test cases for mbas - Compiled the problems in mbas in a doc - Started working on properties This week: - keep working on properties - Will start working with attributes if possible. Regards. Anirban. ___ Mono-li

[Mono-list] Bug fix - 41691

2003-12-08 Thread B Anirban
Hi, I am resending this mail since in the last mail the patches got wrapped. Thanks. Anirban. Hi, I am posting here my fixes for bug 41691. For this I felt a need for changing the check_type method (in Binder.cs) for extracting better match. Hence I created here a overloaded version of check_type

[Mono-list] Bug fix - 41691

2003-12-08 Thread B Anirban
Hi, I am posting here my fixes for bug 41691. For this I felt a need for changing the check_type method (in Binder.cs) for extracting better match. Hence I created here a overloaded version of check_type method. Also I overloaded the SelectMethod function for handling named arguments. I am attachi