monoTouch .net development kit now available for iPhone
My Clippings September 14th, 2009 by System
Automatically pulled from My Clippings on NewsGator Online
Filed under: Developer, Linux, Apple, Novell, Commercial, iPhone, Mobile
While the Apple App Store is without doubt the largest available medium for a mobile developer to get their app in the hands of the users, for developers new to development using C / Objective C, the barrier to entry can be quite significant. Many developers working with other platforms (particularly Windows / Windows Mobile) have made significant investment into products developed in the .net languages (e.g. C#, VB.net) and therefore may be reluctant to completely port their application to a completely new environment.
Enter Novell with a commercial offering of their open source ‘Mono‘ .net runtime dubbed ‘monoTouch‘.
Available immediately, monoTouch enables applications developed in any .net language to run on the iPhone. Significantly, monoTouch provides .net bindings to native API, allowing application developers will have access to iPhone specific functionality from within their .net applications. monoTouch integrates with both the free MonoDevelop IDE as well as Apple’s XCode toolkit.
Applications developed using monoTouch compile completely to native code – they are not JIT compiled or interpreted.
Continue reading monoTouch .net development kit now available for iPhone
monoTouch .net development kit now available for iPhone originally appeared on Download Squad on Mon, 14 Sep 2009 13:00:00 EST. Please see our terms for use of feeds.
Read | Permalink | Email this | Comments







![]()
Sponsored Topics:
iPhone – Apple – AppStore – Download Squad – Xcode
Go to Source
Tags: Apple, email, Google, Inc., IO, Linux, php, vb.net, wind, XP
Get “real” IP address with vb .net?
Code August 14th, 2009 by Shai Perednik
I saw this post @ stackoverflow.com, I was trying to do the same. So I thought I’d post a complete solution. See this link above or the code below
To Combine the answers above”
Create a php file and paste this in it:
<?php
echo $_SERVER['REMOTE_ADDR'];
?>
save it as curip.php and upload it to your server.
In your VB.net project create a module.
Declare the imports section at the very top
Imports System.Net
Imports System.IO
And create your function:
Public Function GetIP() As String
Dim uri_val As New Uri(“http://yourdomain.com/curip.php”)
Dim request As HttpWebRequest = HttpWebRequest.Create(uri_val)
request.Method = WebRequestMethods.Http.Get
Dim response As HttpWebResponse = request.GetResponse()
Dim reader As New StreamReader(response.GetResponseStream())
Dim myIP As String = reader.ReadToEnd()
response.Close()
Return myIP
End Function
Now anywhere in your code you can issue
Dim myIP = GetIP()
and use the value from there as you wish.
Tags: blockquote, IO, module, php, vb.net
VB.NET – Date Time Picker – How Can I Choose BOTH A Date And A Time?
Code July 8th, 2009 by Shai Perednik
The dateTimePicker can indeed do time. Hence the name
Just change the Format property to time, and the ShowUpDown to True.
Either in the editor, or in code like
CODE
dateTimePicker1.Format = Time
dateTimePicker1.ShowUpDown = True
via VB.NET – Date Time Picker – How Can I Choose BOTH A Date And A Time? | DreamInCode.net.
Related posts:Tags: vb.net

