是否可以在Visual Studio 2015中使用VB在Microsoft Office Word文档中创建表格/形状/文本框?
我在网上找到的就是创建一个文件/保存/关闭单词。 我正在尝试根据用户决定的某些值创建一个表。
答案 0 :(得分:0)
在MSDN上找到此示例。别忘了添加对AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(getActivity());// set title
alertDialogBuilder.setTitle("TITLE");
// set dialog message
alertDialogBuilder
.setMessage("MESSAGE")
.setCancelable(false)
.setPositiveButton("YES",new DialogInterface.OnClickListener(){
//your positive message
}
});
alertDialogBuilder // .setMessage("title")
.setCancelable(false)
.setNegativeButton("NO",new DialogInterface.OnClickListener(){
public void onClick(DialogInterface dialog,int id){
// if this button is clicked, close
// current activity
dialog.cancel();
}
});
// create alert dialog
AlertDialog alertDialog=alertDialogBuilder.create();
// show it
alertDialog.show();
}
Microsoft.Office.Interop.Word