Office中国论坛/Access中国论坛
标题:
【作业】01课-coreluo
[打印本页]
作者:
coreluo
时间:
2014-3-7 23:23
标题:
【作业】01课-coreluo
本帖最后由 faunus 于 2014-3-7 23:42 编辑
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Office.Tools.Ribbon;
namespace ExcelAddIn2
{
public partial class Ribbon1
{
private void Ribbon1_Load(object sender, RibbonUIEventArgs e)
{
}
private void kClick(object sender, RibbonControlEventArgs e)
{
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = "notepad.exe";
p.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
p.Start();
}
private void checkBox1_Click(object sender, RibbonControlEventArgs e)
{
}
private void button2_Click(object sender, RibbonControlEventArgs e)
{
if (checkBox1.Checked == true)
{
System.Diagnostics.Process.Start("http://www.baidu.com/");
}
else
{
System.Diagnostics.Process.Start("http://yy.com/89272026/1107544603");
}
}
}
}
复制代码
作者:
coreluo
时间:
2014-3-7 23:24
作业是我同桌花了2H教我做的....非常感谢我的同桌...
作者:
紫电
时间:
2014-3-7 23:38
[attach]53408[/attach]
符合题意
作者:
faunus
时间:
2014-3-7 23:40
coreluo 发表于 2014-3-7 23:24
作业是我同桌花了2H教我做的....非常感谢我的同桌...
感谢同桌
欢迎光临 Office中国论坛/Access中国论坛 (http://www.office-cn.net/)
Powered by Discuz! X3.3