Windows Phone Source
Results 1 to 10 of 10
Like Tree1Likes
  • 1 Post By techblitz

Thread: App Development

Hybrid View

  1. #1
    Moderator techblitz's Avatar
    Join Date
    Apr 2012
    Posts
    1,051
    Thanks
    1
    Thanked 0 Times in 0 Posts

    App Development

    Have any of you developed for Windows Phone? I want to build an app for my site, Techblitz, but I have neither a Windows Phone nor programming experience. I'd like to learn, but I've always had little trouble focusing on programming
    If you hve built an app, can you tell tales of your development and share the Marketplace link? Thanks!

  2. #2
    Senior Member
    Join Date
    Apr 2012
    Location
    Christchurch, New Zealand
    Posts
    142
    Thanks
    1
    Thanked 0 Times in 0 Posts
    I'm also keen to start learning. Have a look at this: Windows Phone 7 Development for Absolute Beginners | Channel 9 , it has great tutorials to help understand the very basics

  3. #3
    Moderator techblitz's Avatar
    Join Date
    Apr 2012
    Posts
    1,051
    Thanks
    1
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by Tom Mohammed View Post
    I'm also keen to start learning. Have a look at this: Windows Phone 7 Development for Absolute Beginners | Channel 9 , it has great tutorials to help understand the very basics
    Yeah, I was on the fourth or fifth video but I got distracted. I'll have to set out weekend to learn basic coding!
    Last edited by techblitz; 04-06-2012 at 12:17 AM.

  4. #4
    Junior Member
    Join Date
    Apr 2012
    Posts
    17
    Thanks
    0
    Thanked 0 Times in 0 Posts
    I haven't built any WP app and/or game (working on a game now) as I have no device to test on. But I'm programming in C# for almost 4 years now, started learning at secondary school, found it fun and wanted to improve. But yeah, don't really have anything to show as I've never done anything public That will soon change, I hope.

  5. #5
    Member
    Join Date
    Apr 2012
    Location
    Seattle
    Posts
    49
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Was getting into it, but then reviewed the API, and realized my super cool app idea wouldn't be possible. It would be possible on Android, but not interested in learning the Google way.

  6. #6
    Moderator techblitz's Avatar
    Join Date
    Apr 2012
    Posts
    1,051
    Thanks
    1
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by mmgaa1 View Post
    Was getting into it, but then reviewed the API, and realized my super cool app idea wouldn't be possible. It would be possible on Android, but not interested in learning the Google way.
    What's your super cool app idea involve? I promise we won't steal it!
    _philipp_ likes this.

  7. #7
    Member
    Join Date
    Apr 2012
    Location
    Seattle
    Posts
    49
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by techblitz View Post
    What's your super cool app idea involve? I promise we won't steal it!
    Yeah right. I really wish they would open it up a bit more, but understand why they don't.

  8. #8
    Moderator techblitz's Avatar
    Join Date
    Apr 2012
    Posts
    1,051
    Thanks
    1
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by mmgaa1 View Post
    Yeah right. I really wish they would open it up a bit more, but understand why they don't.
    I have a really intense app idea involving the camera, but I DO NOT have the experience to build anything like that yet.

  9. #9
    Senior Member
    Join Date
    Apr 2012
    Location
    Christchurch, New Zealand
    Posts
    142
    Thanks
    1
    Thanked 0 Times in 0 Posts
    I'm an absolute beginner too but I had a go at making an app that counts the number of days since something, thanks to one of the tutorials in the video series I posted above but I changed it up a bit I also chucked in an if statement just for practice. I couldn't figure out how to get the date to show just the days though. If anyone knows how to change that, it would be much appreciated. Heres my code:


    string message;
    if (textBox1.Text == "24/03/1995")
    {
    message = "test ";
    }

    else
    {

    DateTime myBirthday = DateTime.Parse(textBox1.Text);

    TimeSpan myAge = DateTime.Now.Subtract(myBirthday);

    message = myAge.ToString();
    }

    myTextBlock.Text = String.Format("{0}", message);

  10. #10
    Member
    Join Date
    Apr 2012
    Location
    Seattle
    Posts
    49
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by Tom Mohammed View Post
    ....I couldn't figure out how to get the date to show just the days though. ....
    message = myAge.Days.ToString();

Posting Permissions

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

Copyright © 2013 Neverstill