This is the application I'm trying to create.
A user enters a word into a text box thnt is then added onto the end of a url and the url opens a webpage
So a user enters "this link" and when the button is pressed it opens www.someurl.com/thislink
And either that link opens or it displays "Page not found.
This is all I have. Im sorry, like I said I'm brand new and we all need a starting point
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
}
}
}


Sign In
Create Account


Back to top









