Hi. I'm making a simple one screen program in Visual Studio 2008 and I just need to add 4 links to it (which i don't know how to do) and make it into a CAB (i need to learn this too)
I've attached a "template" of the program (app) that i think may have the code that i've created so far for Visual Studio 2008. It is in C#.
Also, I've attached a picture of the single screen with the 4 buttons that need to be made into links that open up the linked webpage in the phone's default browser. The links that correspond to the text buttons in the picture are attached in a notepad doc as well.
Here is the code in question with the buttons that just needs to be turned into links that open up the default browser to the websites (i've also attached this code in notepad):
One last question, I also have to make this same app for the iPhone, is there any simple conversion tool for that? Or am i going to have to borrow my friends mac book pro and iPhone?
Any and all help is much appreciated. Thanks!
I've attached a "template" of the program (app) that i think may have the code that i've created so far for Visual Studio 2008. It is in C#.
Also, I've attached a picture of the single screen with the 4 buttons that need to be made into links that open up the linked webpage in the phone's default browser. The links that correspond to the text buttons in the picture are attached in a notepad doc as well.
Here is the code in question with the buttons that just needs to be turned into links that open up the default browser to the websites (i've also attached this code in notepad):
Quote
using System;
using System.Linq;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace SmartDeviceProject3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
}
private void button2_Click(object sender, EventArgs e)
{
}
private void button3_Click(object sender, EventArgs e)
{
}
private void button4_Click(object sender, EventArgs e)
{
}
private void pictureBox1_Click(object sender, EventArgs e)
{
}
}
}
using System.Linq;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace SmartDeviceProject3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
}
private void button2_Click(object sender, EventArgs e)
{
}
private void button3_Click(object sender, EventArgs e)
{
}
private void button4_Click(object sender, EventArgs e)
{
}
private void pictureBox1_Click(object sender, EventArgs e)
{
}
}
}
One last question, I also have to make this same app for the iPhone, is there any simple conversion tool for that? Or am i going to have to borrow my friends mac book pro and iPhone?
Any and all help is much appreciated. Thanks!
Attached Files
Edited by raptor15sc, 22 May 2010 - 12:12 PM.







Sign In
Create Account




Back to top










