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
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
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: &
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
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
> 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
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