I made some changes and I got it down to the 2 errors.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace NewRibbon02
{
public partial class Form1 : Form
{
public Form1(Autodesk.Revit.UI.ExternalCommandData commandData)
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://bw1.sharepoint.com/sites/DGBIMandCAD/_layouts/15/Doc.aspx?OR=teams&action=edit&sourcedoc={9D...}");
}
private void panel1_Paint(object sender, PaintEventArgs e)
{
}
private void label1_Click(object sender, EventArgs e)
{
}
private void button2_Click(object sender, EventArgs e)
{
MessageBox.Show("Sorry we are working on this page","By Rick Holguin");
}
private void button3_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://bw1.sharepoint.com/sites/DGBIMandCAD/_layouts/15/Doc.aspx?OR=teams&action=edit&sourcedoc={78...}");
}
private void button4_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://bw1.sharepoint.com/sites/DGBIMandCAD/_layouts/15/Doc.aspx?OR=teams&action=edit&sourcedoc={F3...}");
}
private void button5_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://bw1.sharepoint.com/sites/DGBIMandCAD/_layouts/15/Doc.aspx?OR=teams&action=edit&sourcedoc={17...}");
}
private void button6_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://bw1.sharepoint.com/sites/DGBIMandCAD/Shared%20Documents/Architecture/10.%20DG%20Detail%20Lib...");
}
private void button7_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://bw1.sharepoint.com/sites/DGBIMandCAD/_layouts/15/Doc.aspx?OR=teams&action=edit&sourcedoc={70...}");
}
private void button8_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://bw1.sharepoint.com/sites/DGBIMandCAD/_layouts/15/Doc.aspx?OR=teams&action=edit&sourcedoc={CD...}");
}
private void button9_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://bw1.sharepoint.com/sites/DGBIMandCAD/_layouts/15/Doc.aspx?OR=teams&action=edit&sourcedoc={61...}");
}
private void button10_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://bw1.sharepoint.com/sites/DGBIMandCAD/_layouts/15/Doc.aspx?OR=teams&action=edit&sourcedoc={6E...}");
}
private void button22_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://bw1.sharepoint.com/sites/DGBIMandCAD/_layouts/15/Doc.aspx?OR=teams&action=edit&sourcedoc={66...}");
}
private void button23_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://bw1.sharepoint.com/sites/DGBIMandCAD/_layouts/15/Doc.aspx?OR=teams&action=edit&sourcedoc={B7...}");
}
private void button32_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://bw1.sharepoint.com/sites/DGBIMandCAD/_layouts/15/Doc.aspx?OR=teams&action=edit&sourcedoc={F1...}");
}
private void buttonTB_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://bw1.sharepoint.com/sites/DGBIMandCAD/Shared%20Documents/Architecture/10.%20DG%20Detail%20Lib...");
}
private void buttonMF_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://bw1.sharepoint.com/sites/DGBIMandCAD/Shared%20Documents/Architecture/10.%20DG%20Detail%20Lib...");
}
}
namespace Autodesk
{
class Revit
{
public class UI
{
public class ExternalCommandData
{
}
}
}
}