Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to determine the field a textbox is bound to
Message
From
31/10/2010 20:09:18
 
 
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Environment versions
Environment:
VB 8.0
OS:
Vista
Network:
Windows XP
Database:
Jet/Access Engine
Application:
Desktop
Miscellaneous
Thread ID:
01487443
Message ID:
01487732
Views:
41
>>>BTW what's your 'favorite online C#-to-VB converter' ?
>>
>>I have two of them that I like:
>>
>>http://www.carlosag.net/Tools/CodeTranslator/ - translates in both directions
>>http://authors.aspalliance.com/aldotnet/examples/translate.aspx - C#-to-VB only
>.
>Thx. Never looked for anything like that before. I have no trouble translated VB -> C# - it's only the reverse that give me pause.
>Both were interesting. Both tripped up on:
int i =25;
>int i2 = i < 25 ? 1 : 0;
(g)


Yeah, in the past I've seen one or the other give wrong results, but for the most part they're pretty good. The first converter really messed up your example code, but the second converter was close enough so that you'd at least know what the C# code meant (if you were a VB developer and didn't know C# at all)
Dim i2 As Integer = (If i < 25 Then 1 Else 0) 
'ToDo: Unsupported feature: conditional (?) operator.
~~Bonnie
Bonnie Berent DeWitt
NET/C# MVP since 2003

http://geek-goddess-bonnie.blogspot.com
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform