Automatically pulled from My Clippings on NewsGator Online

Filed under: , , , , , ,

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

Add to digg
Add to del.icio.us
Add to Google
Add to StumbleUpon
Add to Facebook
Add to Reddit
Add to Technorati



Sponsored Topics:
iPhoneAppleAppStoreDownload SquadXcode
Go to Source

Related posts:

Tags: , , , , , , , , ,

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.

<?php
echo $_SERVER['REMOTE_ADDR'];
?>

Related posts:

Tags: , , , ,

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: