Re: [Mono-list] does mono support int32

2009-09-09 Thread Rolf Bjarne Kvinge
Hi, > > My project is using int32 like > > dim loginBranchNo As Int32 > or > iLoginBranchNo = Convert.ToInt32 > > I am getting some error , please contact to system administrator. Could you be more specific tan "some error"? Explaining exactly what you do and copy/paste the error would make it

Re: [Mono-list] does mono support int32

2009-09-08 Thread Adam Tauno Williams
On Tue, 2009-09-08 at 09:10 -0700, Daniel Morgan wrote: > Functions in vb.net require parentheses. Also, the conversion will fail if > there was an > overflow. You did not specify the exact error message. In C# one would usually do a - int x if (int.TryParse(z, out x)) { // I got a number i

Re: [Mono-list] does mono support int32

2009-09-08 Thread Daniel Morgan
Functions in vb.net require parentheses. Also, the conversion will fail if there was an overflow. You did not specify the exact error message. --- On Tue, 9/8/09, Adam Tauno Williams wrote: > From: Adam Tauno Williams > Subject: Re: [Mono-list] does mono support int32 > To: &

Re: [Mono-list] does mono support int32

2009-09-08 Thread Petit Eric
Did you try the MoMa tool ? 2009/9/8 Bharti Mishra : > > > > Adam Tauno Williams wrote: >> >>> My project is using int32 like >>> dim loginBranchNo As Int32 >>> or >>> iLoginBranchNo = Convert.ToInt32 >>> I am getting some error , please contact to system administrator. >>> Priviosly >>> I have re

Re: [Mono-list] does mono support int32

2009-09-08 Thread Bharti Mishra
Adam Tauno Williams wrote: > >> My project is using int32 like >> dim loginBranchNo As Int32 >> or >> iLoginBranchNo = Convert.ToInt32 >> I am getting some error , please contact to system administrator. >> Priviosly >> I have removed some windows specific function from my project. >> so I want

Re: [Mono-list] does mono support int32

2009-09-08 Thread Adam Tauno Williams
> My project is using int32 like > dim loginBranchNo As Int32 > or > iLoginBranchNo = Convert.ToInt32 > I am getting some error , please contact to system administrator. Priviosly > I have removed some windows specific function from my project. > so I want to know is there any problem with Int32 in

[Mono-list] does mono support int32

2009-09-08 Thread Bharti Mishra
hi, My project is using int32 like dim loginBranchNo As Int32 or iLoginBranchNo = Convert.ToInt32 I am getting some error , please contact to system administrator. Priviosly I have removed some windows specific function from my project. so I want to know is there any problem with Int32 in mono