Results 1 to 10 of 10

Thread: VB.net for Android...

  1. #1

    Thread Starter
    Member
    Join Date
    Feb 2013
    Posts
    34

    VB.net for Android...

    Hi, first off all I know that VB.net is Windows and Android is Linux. Anyway I wanted to ask if there is a program for developing apps for Android with the same coding like in VB.net?
    I have read some Forums etc. They are talking about C# and other software. But since i started my program in VB.net and now I want to convert it to Android i need something like VB.net for android. It also can be similar but not to much different. Maybe a converter from VB.net to Android devices or something like that. Any suggestion?

  2. #2
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: VB.net for Android...

    There is no such thing as VB.NET for Android. You can compile C# code for Mono, which is basically an open source equivalent to the .NET Framework that runs on platforms other than Windows. I'm not sure whether there is a VB compiler for Mono as I've never looked but you can check for yourself. There is a version of Mono that will run on Android but any Android user would have to install it first in order for apps built for it to run.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  3. #3

    Thread Starter
    Member
    Join Date
    Feb 2013
    Posts
    34

    Re: VB.net for Android...

    You know what confuses me? this one here http://xamarin.com/download it says Build iOS, Android and Mac apps using C# and .NET. So I thought they mean VB.net but it seems I misunderstood it

  4. #4
    Angel of Code Niya's Avatar
    Join Date
    Nov 2011
    Posts
    9,017

    Re: VB.net for Android...

    Mono does have a VB.Net compiler according to mono-project.com
    Treeview with NodeAdded/NodesRemoved events | BlinkLabel control | Calculate Permutations | Object Enums | ComboBox with centered items | .Net Internals article(not mine) | Wizard Control | Understanding Multi-Threading | Simple file compression | Demon Arena

    Copy/move files using Windows Shell | I'm not wanted

    C++ programmers will dismiss you as a cretinous simpleton for your inability to keep track of pointers chained 6 levels deep and Java programmers will pillory you for buying into the evils of Microsoft. Meanwhile C# programmers will get paid just a little bit more than you for writing exactly the same code and VB6 programmers will continue to whitter on about "footprints". - FunkyDexter

    There's just no reason to use garbage like InputBox. - jmcilhinney

    The threads I start are Niya and Olaf free zones. No arguing about the benefits of VB6 over .NET here please. Happiness must reign. - yereverluvinuncleber

  5. #5
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: VB.net for Android...

    I've heard that name before but didn't know much about it. It apparently provides a C# compiler that will build native Android apps. They would have to create a separate compiler for VB.NET.

    .NET does not mean VB.NET. It means the .NET platform, of which C# and VB are both parts. That means that you can use types from the .NET Framework class library to build apps in C# and then compile them to native Android format.

    If you already understand VB.NET, even just a bit, learning C# is not too hard. The syntax is a bit different and more terse but all the principles are the same and you use all the same .NET types.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  6. #6
    Angel of Code Niya's Avatar
    Join Date
    Nov 2011
    Posts
    9,017

    Re: VB.net for Android...

    Here is an article about Xamarin 2.0 that claims you can develop in both C# and VB.
    Treeview with NodeAdded/NodesRemoved events | BlinkLabel control | Calculate Permutations | Object Enums | ComboBox with centered items | .Net Internals article(not mine) | Wizard Control | Understanding Multi-Threading | Simple file compression | Demon Arena

    Copy/move files using Windows Shell | I'm not wanted

    C++ programmers will dismiss you as a cretinous simpleton for your inability to keep track of pointers chained 6 levels deep and Java programmers will pillory you for buying into the evils of Microsoft. Meanwhile C# programmers will get paid just a little bit more than you for writing exactly the same code and VB6 programmers will continue to whitter on about "footprints". - FunkyDexter

    There's just no reason to use garbage like InputBox. - jmcilhinney

    The threads I start are Niya and Olaf free zones. No arguing about the benefits of VB6 over .NET here please. Happiness must reign. - yereverluvinuncleber

  7. #7
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: VB.net for Android...

    Quote Originally Posted by Niya View Post
    Here is an article about Xamarin 2.0 that claims you can develop in both C# and VB.
    Interesting. It sounds like, rather than compiling from C# to native Android, it compiles from the CIL. If that's the case then you could theoretically write apps in any language that compiles to CIL.

    That said, it looks like you only get the Xamarin IDE, which presumably only supports C#, and not VS support unless you pay for the Enterprise license. Maybe there's commandline tools though.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  8. #8

    Thread Starter
    Member
    Join Date
    Feb 2013
    Posts
    34

    Re: VB.net for Android...

    Quote Originally Posted by jmcilhinney View Post
    If you already understand VB.NET, even just a bit, learning C# is not too hard.
    I have some experience in C++. I hope this will help me a lil bil when i have to use C#

    Quote Originally Posted by jmcilhinney View Post
    Here is an article about Xamarin 2.0 that claims you can develop in both C# and VB.
    At least there is hope. I hope it doesnt force me to buy the full version coz there where I live we cant buy Softwares etc. and i dnt know where to get it because buying and shipping it from other countries is also not possible

  9. #9
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: VB.net for Android...

    Quote Originally Posted by dahood View Post
    I hope it doesnt force me to buy the full version coz there where I live we cant buy Softwares etc. and i dnt know where to get it because buying and shipping it from other countries is also not possible
    There's a free version but it's very limited.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  10. #10
    Member BadJasper's Avatar
    Join Date
    Dec 2003
    Location
    Marysville, Mi
    Posts
    34

    Re: VB.net for Android...

    If you are developing web apps in .Net (C# or VB) and you want them to be mobile compatable with all the touch and swipe abilities, you may want to have a look at "Lightswitch over HTML". It's been in Beta for a couple years but, MS finally release the finished product a couple of months ago. The nice thing is that you can use VB or C# so you can use what you are comfortable with. Go ahead and have a look...

    http://msdn.microsoft.com/en-us/vstudio/htmlclient.aspx
    I fear not the darkness for I am the Reaper who owns the night.

    Semper Fi!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width