上一页 1 ··· 7 8 9 10 11 12 13 下一页
摘要: //需要添加引用 Microsoft.Office.Interop.Word public class WordHelp { Microsoft.Office.Interop.Word.Application oWordApp; Microsoft.Office.Interop.Word.Document oWordDoc; object oMissing = System.Reflection.Missing.Value; /// <summary> /// 加载文档 /// </summary> ... 阅读全文
posted @ 2012-12-11 10:11 csdnbbs 阅读(136) 评论(0) 推荐(0) 编辑
摘要: private void gridView1_CustomDrawRowIndicator(object sender, DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventArgs e) { e.Appearance.TextOptions.HAlignment=DevExpress.Utils.HorzAlignment.Far; if (e.Info.IsRowIndicator) { ... 阅读全文
posted @ 2012-12-11 10:04 csdnbbs 阅读(1225) 评论(0) 推荐(0) 编辑
摘要: 下拉框二级联动,页面无刷新A. (aspx) <asp:DropDownList ID="DropDownList1" runat="server" Height="16px" onchange="getChildren(this.options[this.selectedIndex].value, 'ddl');" Width="139px"> <asp:ListItem Value="0">请选择</asp:ListItem& 阅读全文
posted @ 2012-12-10 23:38 csdnbbs 阅读(227) 评论(0) 推荐(0) 编辑
摘要: <%@ Page Title="主页" MaintainScrollPositionOnPostback="true" %> 阅读全文
posted @ 2012-12-10 22:31 csdnbbs 阅读(133) 评论(0) 推荐(0) 编辑
摘要: //Java中如果:参数个数不固定,可以用下面方式写。如果[show(String msg,int...nums)]有多少参数,它需要放在最后。 public static void showNum(int...nums){ for(int i : nums){ System.out.println(i); } } public static void main(String[] args) { showNum(1); showNum(1,2); showNum(1,2,3);... 阅读全文
posted @ 2012-12-10 20:55 csdnbbs 阅读(250) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 下一页