Re: CInt in VB.net
From: Marc M (nospam_at_mail.com)
Date: 01/18/05
- Next message: Steven Spits: "Passed 70-316"
- Previous message: Marc M: "Re: CInt in VB.net"
- In reply to: anonymous_at_discussions.microsoft.com: "CInt in VB.net"
- Next in thread: pkasemsant_at_aol.com: "CInt in VB.net"
- Messages sorted by: [ date ] [ thread ]
Date: Tue, 18 Jan 2005 09:37:40 -0600
CInt will convert to Integer
Use CDouble.
All C????? are old VB 6.0 syntax
In .Net use CType to convert like
If CType(input, Double) .......
Hope this helps
Marc M
MCSD (6.0 & .NET)
anonymous@discussions.microsoft.com wrote:
> Hi,
>
> I have a question regarding the use of CInt and/or Char
> member functions.
>
> Let's say I have an input string,
>
> Dim input As String = "7.5"
>
> and I need to check if this string(number) is either 7 or
> 8 (or so on....), I use the CInt function and compare the
> value using If-statement.
>
> "7.5" is supposed to return false to me but CInt now
> turns it into 8 (so it returns true now)
>
> Any ideas to fix that?
>
> thanks.
- Next message: Steven Spits: "Passed 70-316"
- Previous message: Marc M: "Re: CInt in VB.net"
- In reply to: anonymous_at_discussions.microsoft.com: "CInt in VB.net"
- Next in thread: pkasemsant_at_aol.com: "CInt in VB.net"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|