Welcome![Sign In][Sign Up]
Location:
Search - MenuBar

Search list

[Windows Developshow-Bitmap-Scrolling

Description: 打开显示图像,带滚动条的代码,有例子,有例程。 good example to learn menubar, a demo can be use in ur poject.-images show opened, with the rolling of the code, is an example, routines. Good example to learn menubar. a demo can be use in ur poject.
Platform: | Size: 18957 | Author: dwang | Hits:

[WEB CodeMatlab

Description: Matlab小问题 问: Matlab仿真中怎样编辑Scope中的图象??? 答: 实现的方法有以下的几种: 1)PrintScreen,然后粘贴到Windows位图编辑器,选择图像点击右键,选择“反色”即可; 2)在Scope中,它的参数设置的第二页,有一个Save Data to Workplace,将它选中,然后在下面的方框 中指定变量名,然后用plot命令画出; 3)直接在模型上再加一个,to Workplace模块,也用plot画出; 4) 等scope显示出来图像以后,在matlab上运行 set(0, ShowHiddenHandles , On ) set(gcf, menubar , figure ) 这时候你会发现scope的工具栏的上面多了一行,点击insert-axes,鼠标会变成十字形状,然后再图像的任意一处双击左键出现一个对话框PropertyEditor,选中style在窗口的右便会出现color,这时你就可以任意修改背景颜色了。 问: 怎样进行S-function的编程和使用??? 答: S-function也就是System-function的缩写。说得简单,S-function就是用MATLAB所提供的模型不能完全满足用户,而提供给用户自己编写程序来满足自己要求模型的接口。要了
Platform: | Size: 5901 | Author: wupeng | Hits:

[GUI DevelopMyToolBar

Description: 用工具栏实现MenuBar简单实用-toolbar with simple and practical realization of Wet
Platform: | Size: 3103 | Author: 张中国 | Hits:

[Othermenubar

Description: labview 中菜单调用案例,已经通过测。
Platform: | Size: 27191 | Author: dannygto | Hits:

[Menu controlMenuBarXP

Description: menubar控件 支持xp风格的menubar控件
Platform: | Size: 60842 | Author: wwq | Hits:

[Other resourceMenuBar

Description: windows CE上的菜单栏示例程序,对于初学者有指导意义
Platform: | Size: 1260198 | Author: billcawell | Hits:

[JSP/Javafh110

Description: MenuBar mb //MenuBar 类封装绑定到框架的菜单栏的平台概念。为了将该菜单栏与 Frame 对象关联, //可以调用该框架的 setMenuBar 方法。 Menu me //Menu 对象是从菜单栏部署的下拉式菜单组件. MenuItem item //默认的 MenuItem 对象包含一个简单的加标签的菜单项。 MenuShortcut shortcut=new MenuShortcut(KeyEvent.VK_E)
Platform: | Size: 962 | Author: fhmlrs | Hits:

[GDI-BitmapWin32++_A_Simple_Alternative_to_MFC

Description: Win32++ provides a framework for developing applications using the Win32 API directly. It supports all MS operating systems that run the Win32 API, from Windows 95 through to Windows XP and Vista. This framework is designed to produce programs with a similar look and feel to those created using MFC. It can develop applications based on simple windows, dialogs, frames and MDI frames. The frames produced by Win32++ have the following features: • Rebar control (to contain the Menubar and Toolbar) • Menubar • Toolbar • Status bar • Tool tips
Platform: | Size: 755124 | Author: 含羞草 | Hits:

[ActiveX/DCOM/ATLccMenuBar

Description: 一个menubar例子
Platform: | Size: 182992 | Author: kimm | Hits:

[SDK图书管理系统

Description: import java.awt.*; import javax.swing.*; import java.awt.event.*; public class BookManageMain{ public void main(String[] args){ Frame f = new Frame("图书管理系统");//super("图书管理系统"); MenuBar Menub = new MenuBar(); //系统管理子菜单 Menu jMenuSystem = new Menu("系统管理"); MenuItem jMenuItemLogin = new MenuItem("用户登录"); Menu jMenuUserManage = new Menu("用户管理"); MenuItem jMenuFileExit = new MenuItem("退出"); MenuItem jMenuItemuseradd = new MenuItem("添加用户"); MenuItem jMenuItemuserupdate = new MenuItem("修改用户"); MenuItem jMenuItemuserdelete = new MenuItem("删除用户"); jMenuItemLogin.addActionListener(this); jMenuFileExit.addActionListener(this); jMenuItemuseradd.addActionListener(this); jMenuItemuserupdate.addActionListener(this); jMenuItemuserdelete.addActionListener(this); Menub.add(jMenuSystem); //书籍管理子菜单 Menu jMenuBookManage = new Menu("书籍管理"); MenuItem jMenuItemBookAdd = new MenuItem("添加书籍信息"); MenuItem jMenuItemBookUpdate = new MenuItem("修改书籍信息"); MenuItem jMenuItemBookDelete = new MenuItem("删除书籍信息"); jMenuItemBookAdd.addActionListener(this); jMenuItemBookUpdate.addActionListener(this); jMenuItemBookDelete.addActionListener(this); Menub.add(jMenuBookManage); //借书管理子菜单 Menu jMenuBorrowBook = new Menu("借书管理"); MenuItem jMenuItemBookBorrow = new MenuItem("书籍出借"); MenuItem jMenuItemBookBorrowUpdate = new MenuItem("出借信息修改"); jMenuItemBookBorrow.addActionListener(this); jMenuItemBookBorrowUpdate.addActionListener(this); Menub.add(jMenuBorrowBook); //还书管理子菜单 Menu jMenuReturnBook = new Menu("还书管理"); MenuItem jMenuItemBookReturn = new MenuItem("书籍还入"); MenuItem jMenuItemBookReturnUpdate = new MenuItem("书籍还入信息修改"); jMenuItemBookReturn.addActionListener(this); jMenuItemBookReturnUpdate.addActionListener(this); Menub.add(jMenuReturnBook); //信息一览子菜单 Menu jMenuAllInfo = new Menu("信息一览"); MenuItem jMenuItemAllBook = new MenuItem("书籍列表"); MenuItem jMenuItemAllRead = new MenuItem("借阅者列表"); MenuItem jMenuItemAllInfo = new MenuItem("借阅情况列表"); jMenuItemAllBook.addActionListener(this); jMenuItemAllRead.addActionListener(this); jMenuItemAllInfo.addActionListener(this); Menub.add(jMenuAllInfo); f.setMenuBar(Menub); Menub.add(jMenuSystem); Menub.add(jMenuBookManage); //jMenuSystem.addSeparator(); Menub.add(jMenuBorrowBook); Menub.add(jMenuReturnBook); Menub.add(jMenuAllInfo); jMenuSystem.add(jMenuItemLogin); jMenuSystem.addSeparator();//分割线 jMenuSystem.add(jMenuUserManage); jMenuSystem.addSeparator(); jMenuSystem.add(jMenuFileExit); jMenuUserManage.add(jMenuItemuseradd); jMenuUserManage.addSeparator(); jMenuUserManage.add(jMenuItemuserupdate); jMenuUserManage.addSeparator(); jMenuUserManage.add(jMenuItemuserdelete); jMenuBookManage.add(jMenuItemBookAdd); jMenuBookManage.addSeparator(); jMenuBookManage.add(jMenuItemBookUpdate); jMenuBookManage.addSeparator(); jMenuBookManage.add(jMenuItemBookDelete); jMenuBorrowBook.add(jMenuBookBorrow); jMenuBorrowBook.addSeparator(); jMenuBorrowBook.add(jMenuBookBorrowUpdate); jMenuReturnBook.add(jMenuItemBookReturn); jMenuReturnBook.addSeparator(); jMenuReturnBook.add(jMenuItemBookReturnUpdate); jMenuAllInfo.add(jMenuItemAllBook); jMenuAllInfo.addSeparator(); jMenuAllInfo.add(jMenuItemAllRead); jMenuAllInfo.addSeparator(); jMenuAllInfo.add(jMenuItemAllInfo); f.setSize(800,600); //f.setBounds(400,400,600,800); f.setVisible(true); f.show(); } //设置初始状态 /* jMenuUserManage.setEnabled(false); jMenuBookManage.setEnabled(false); jMenuBorrowBook.setEnabled(false); jMenuReturnBook.setEnabled(false); jMenuAllInfo.setEnabled(false); */ } /* public void this_windowOpened(WindowEvent e){ setEnable("else"); jMenuItemLogin dlg = new jMenuItemLogin(this); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize=getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); }*/ public void actionPerformed(ActionEvent e){ if(e.getActionCommand()= "用户登录") {jMenuItemLogin dlg = new jMenuItemLogin(this); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommand()="添加用户") {jMenuItemuseradd dlg= new jMenuItemuseradd(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommand="修改用户") {jMenuItemuserupdate dlg = new jMenuItemuserupdate(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommand="删除用户") { jMenuItemuserdelete dlg = new jMenuItemuserdelete(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show();} else if(e.getActionCommand="添加书籍信息") { jMenuItemBookAdd dlg = new jMenuItemBookAdd(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommand="修改书籍信息") { jMenuItemBookUpdate dlg=new jMenuItemBookUpdate(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommand="删除书籍信息") {jMenuItemBookDelete dlg= new jMenuItemBookDelete(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommand="书籍出借") { jMenuItemuBookBorrow dlg = new jMenuItemuBookBorrow(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommand="出借信息修改") {jMenuItemuBookBorrowUpdate dlg= new jMenuItemuBookBorrowUpdate(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommand="书籍还入") { jMenuItemBookReturn dlg=new jMenuItemBookReturn(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommond="书籍还入信息修改") { jMenuItemBookReturnUpdate dlg= new jMenuItemBookReturnUpdate(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommond="书籍列表") { jMenuItemAllBook dlg=new jMenuItemAllBook(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommond="借阅者列表") { jMenuItemAllRead dlg = new jMenuItemAllRead(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommand="借阅情况列表") { jMenuItemAllInfo dlg = new jMenuItemAllInfo(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommand="借阅情况列表") { AllInfo dlg=new allinfo(); Dimension dlgSize = dlg.getPreferredSize(); Dimension frmSize = getSize(); Point loc = getLocation(); dlg.setLocation((frmSize.width-dlgSize.width)/2+loc.x,(frmSize.height-dlgSize.height)/2+loc.y); dlg.pack(); dlg.show(); } else if(e.getActionCommand="退出") { this.dispose(); System.exit(0); } 图书管理系统
Platform: | Size: 560040 | Author: pangshu1221 | Hits:

[WinSock-NDIS简单的web浏览器

Description: 使用MFC编写的简单的浏览器 CHtmlView 类的成员函数 1.获取和设置属性(Attributes)的成员函数 (1)CString GetType( ) const; (2)long GetLeft( ) const; void SetLeft( long nNewValue ); (3)long GetTop( ) const; void SetTop( long nNewValue ); (4)long GetHeight( ) const; void SetHeight( long nNewValue ); (5)BOOL GetVisible( ) const; void SetVisible( BOOL bNewValue ); 2.主要的操作(Operations)成员函数 这些成员函数非常有用,常常用在应用程序中。 void GoBack( ); 导航到历史列表的前一个条目(previous item)。 void GoForward( ); 导航到历史列表的下一个条目。 void GoHome( ); 导航到主页,该主页在IE的属性中设置。 void GoSearch( ); 导航到当前搜索页。该页在IE的属性中设置。 void Refresh( ); 重新装入浏览器当前正在显示的URL或者文件,即刷新。 void Stop( ); 撤销任何未完成的导航或下载,并且停止任何动态的页面元素,例如背景音乐和动画。 Navigate 导航到由URL指定的资源。 Navigate2 导航到由URL指定的资源或者由全路径指定的文件。 PutProperty 设置与所给定的对象相关的属性的当前值。 GetProperty 返回与所给定的对象相关的属性的当前值。 ExecWB 执行一个命令。 LoadFromResource 在WebBrowser控件中装入一个资源。 3.事件(Events)处理函数 为了利用Windows的消息驱动机制,CHtmlView 类定义了许多可重载的事件处理函数,当一定的事件发生时,MFC框架会自动调用相应的事件处理函数。用户可以重载这些函数,添加自己的代码,实现应用程序特定的功能。下面列举了一些,详细的资料可查阅MSDN文档。 OnNavigateComplete2 对于一个窗口或显示框架,完成到一个超链接的导航后,调用此函数 OnBeforeNavigate2 对于一个窗口或显示框架,在给定的Web浏览器中,一个导航出现之前,调用此函数 virtual void OnStatusTextChange( LPCTSTR lpszText ); 当与WebBrowser 控件相关的状态栏的文本改变时,调用此函数,参数lpszText包含新的状态栏文本的字符串。 virtual void OnVisible( BOOL bVisible ); 当WebBrowser 的窗口应当被显示或隐藏时,框架调用此函数,bVisible表示了窗口的状态,:如果为非零,对象可见;为零,对象不可见。 virtual void OnToolBar( BOOL bToolBar ); 当 ToolBar 属性已经改变时,调用此函数,bToolBar为非零, IE的工具栏是可见的;否则相反。 virtual void OnMenuBar( BOOL bMenuBar ); 当 MenuBar 属性已改变时,调用此函数。bMenuBar为非零,菜单栏可见;否则相反。
Platform: | Size: 3688551 | Author: chuengchi@126.com | Hits:

[OAOA协同

Description: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> 协同办公系统 </title><link rel="Stylesheet" type="text/css" href="CSS/master.css" /> <link rel="Stylesheet" type="text/css" href="CSS/sitecooperateCss.css" /> <style type="text/css"> .Task_Default_Grid { border:0} .Task_Default_Grid tr td { height:25px; line-height:25px; color:#0173BC; border:0; color:#6E6F71} .Task_Default_Grid tr td a { color:#0073BC} .Task_Default_Title { height:25px; line-height:25px; border-bottom:1px solid #999; color:#333333; font-weight:bold } .Task_Default_Head { height:25px; line-height:25px; text-align:left; font-weight:lighter; } .Task_Default_Head th { text-align:left; border:0;} #Content_right tr td { vertical-align:top} .mobanul { list-style:none; list-style-type:none; margin:0; padding:0} .mobanul li { height:26px; line-height:26px;} .mobanul li a { color:#0073BC} </style> <script type="text/javascript"> var w1 = screen.width; var w2 = w1 - 30; var h1 = screen.height; var h2 = 650; var t1 = (h1 - h2) / 3; //var appearence = 'dependent:yes;menubar:no;resizable:no;status:no;toolbar:no;titlebar:no;left:5;top:50;dialogWidth:'+w2+'px; dialogHeight:602px'; var appearence = 'dependent:yes;menubar:no;resizable:no;status:no;toolbar:no;titlebar:no;dialogWidth:990px; dialogHeight:652px'; function openexamin(id) { var url = 'Task_Examin1.aspx?ID=' + id + '&dt=20111116110724'; window.showModalDialog(url, 'none', appearence); window.location.reload(); } function opengoexamin(id) { var url ='go_examin.aspx?ID=' + id + '&dt=20111116110724'; window.showModalDialog(url, "tasknew", appearence); window.location.reload(); } function openexaminview(id) { var url = 'Go_Examin1.aspx?ID=' + id; window.showModalDialog(url, "goexamin1", appearence); window.location.reload(); } function openexamindaiban(id) { var url = 'Task_Examin1.aspx?daiban=1&ID=' + id + '&dt=20111116110724'; window.showModalDialog(url, 'none', appearence); window.location.reload(); } function openexamindaiban1(id, tasktype,url) { if (tasktype == 'OA') { var url1 = 'Task_Examin1.aspx?daiban=1&ID=' + id + '&dt=20111116110724'; window.showModalDialog(url1, 'none', appearence); window.location.reload(); } else if (tasktype == 'HR') { window.open(url.replace('{', '=').replace('{', '=').replace('{', '=').replace('{', '=').replace('{', '=').replace('{', '=').replace('{', '=')); } else if (tasktype == 'ERP待办') { window.open("http://10.0.3.100:8000/"+url); } else { window.open(url.replace('{', '=').replace('{', '=').replace('{', '=').replace('{', '=').replace('{', '=').replace('{', '=').replace('{', '=').replace('}', '&').replace('}', '&').replace('|', '&').replace('|', '&').replace('|}', '&').replace('|', '&').replace('|', '&').replace('|', '&').replace('*', '/').replace('*', '/').replace('*', '/').replace('*', '/').replace('*', '/')); // window.open(url.replace(new RegExp('|', 'g'), '=')); } } function GetTasksWait() { document.getElementById('ajaxwait').innerHTML = "<img src='/_layouts/images/loading.gif' align=absmiddle style='margin:20px' /><span style='color:#666'>正在加载待办事项,请稍等</span>"; AjaxService.GetWaitTasks("panr", GetGetWaitTasks); } function GetGetWaitTasks(res) { document.getElementById('ajaxwait').innerHTML = res; //window.alert(res); } function TaskNew(templetid) { var url = "task_new1.aspx?templetid="+templetid; var w1 = screen.width; var w2 = w1 - 30; var h1 = screen.height; var h2 = 650; var t1 = (h1 - h2) / 3; var appearence = 'dependent=yes,menubar=no,resizable=no,status=no,toolbar=no,titlebar=no,left=5,top=50,width=965px,height=620px'; var openWindow = window.open(url, "tasknew", appearence); openWindow.focus(); } </script> </head> <body> <form name="aspnetForm" method="post" action="thinkanydefault.aspx" id="aspnetForm"> <div> <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" /> <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUJMTk4NTM3MDU4D2QWAmYPZBYCAgMPZBYCAgEPZBYCAgEPPCsADQEADxYEHgtfIURhdGFCb3VuZGceC18hSXRlbUNvdW50ZmRkGAEFI2N0bDAwJENvbnRlbnRQbGFjZUhvbGRlcjEkZ3JpZFRyYWRlDzwrAAoBCGZkgVPWq+n+ib9NI98bYSPgOP6wYjA=" /> </div> <script type="text/javascript"> //<![CDATA[ var theForm = document.forms['aspnetForm']; if (!theForm) { theForm = document.aspnetForm; } function __doPostBack(eventTarget, eventArgument) { if (!theForm.onsubmit || (theForm.onsubmit() != false)) { theForm.__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument; theForm.submit(); } } //]]> </script> <script src="/WebResource.axd?d=YUjlm6ycKfnreIke4GK3XQ2&amp;t=633802920069218315" type="text/javascript"></script> <script src="/ScriptResource.axd?d=z3KJcVLT9ijw1U1WP3pQFkrXumDsg6wUOC-1ek6Qo_XZeAuKvPuCDOgdKKFxxdmnnoXJFiMaKmNKva15-BdwOk_xeIPnLbrAuAMPt7xuJyY1&amp;t=ffffffffec2d9970" type="text/javascript"></script> <script src="/ScriptResource.axd?d=z3KJcVLT9ijw1U1WP3pQFkrXumDsg6wUOC-1ek6Qo_XZeAuKvPuCDOgdKKFxxdmnNTUAczOieuXP3zVeTLUjHd_cyvM_8TdB3KcMk-B-U6vUhv5N_CQBxFd9ZErk2oN20&amp;t=ffffffffec2d9970" type="text/javascript"></script> <script src="AjaxService.asmx/js" type="text/javascript"></script> <div id="Content_right" style="background-image:none; padding:5px; padding-left:0px; padding-right:0px"> <script type="text/javascript"> //<![CDATA[ Sys.WebForms.PageRequestManager._initialize('ctl00$ContentPlaceHolder1$ScriptManagerAjax', document.getElementById('aspnetForm')); Sys.WebForms.PageRequestManager.getInstance()._updateControls([], [], [], 90); //]]> </script> <table style="width:100%"> <tr> <td style="padding-left:10px;"> <span style="float:left">&nbsp;待办事项</span><br /><hr style="height:0px; color:#fff; border-top:1px solid #EBEBEB;" /></td> <td style="padding-left:10px;"> <span style="float:left">&nbsp;跟踪事项</span><br /><hr style="height:0px; color:#fff; border-top:1px solid #EBEBEB;" /></td> </tr> <tr> <td style=" padding-top:0; width:49%; padding-left: 10px; padding-right: 10px; padding-bottom: 10px;" rowspan="4" id="ajaxwait"> </td> <td style=" padding:10px; padding-top:0;height:145px;"> <div> </div> </td> </tr> <tr> <td style=" padding:10px; padding-top:0; text-align:right"> <a href="OATaskTrades.aspx" style='color:#0171BD'>[更多...]</a></td> </tr> <tr> <td style="padding-left:10px;"> &nbsp;我的模板<br /><hr style="height:0px; color:#fff; border-top:1px solid #EBEBEB;" /></td> </tr> <tr> <td style=" padding:10px; padding-top:0;"> <table cellpadding=0 cellspacing=0 style="width:100%;height:145px;"><tr><td style="width:50%"> <ul class="mobanul"></ul> </td><td> <ul class="mobanul"></ul> </td></tr></table> </td> </tr> <tr> <td style=" padding:10px; padding-top:0; width:49%; text-align:right"> <a href="Task_Wait.aspx" style='color:#0171BD'>[更多OA待办...]</a></td> <td style=" padding:10px; padding-top:0; text-align:right"> <a href='PersonalTempletsSetup.aspx' style='color:#0171BD'>[更多...]</a><a href='PersonalTempletsSetup.aspx' style='color:#0171BD'>[模板配置]</a></td> </tr> </table> <script type="text/javascript"> GetTasksWait(); </script> </div> <script type="text/javascript"> //<![CDATA[ Sys.Application.initialize(); //]]> </script> </form> </body> </html>
Platform: | Size: 8895 | Author: niyang2005@126.comni | Hits:

[Menu controldockmenubar_demo

Description: dock(任意摆放)功能的菜单-The menu which can be docked arbitrarily
Platform: | Size: 52224 | Author: 站长 | Hits:

[Menu controlMenuBarXP

Description: 使用工具条实现的菜单条。-menu bar realized by toolbar
Platform: | Size: 77824 | Author: 站长 | Hits:

[Menu controlvc_menubar1

Description: 菜单条演示程序,不错-menu of the demo program, it is true
Platform: | Size: 59392 | Author: 永利 | Hits:

[ActiveX/DCOM/ATLccMenuBar

Description: 一个menubar例子-Example of a menubar
Platform: | Size: 182272 | Author: kimm | Hits:

[GUI DevelopSCIDE

Description: 类似vc界面的代码编辑器源代码,界面比较使用。-vc interface similar to the code editor source code, the use of interface comparison.
Platform: | Size: 251904 | Author: 周玉光 | Hits:

[Modem programvc_demo

Description: 使用VC编写的GPRS通讯代码,可用于GPRS MODEM收发数据-prepared by the use of VC GPRS communications code can be used to send and receive data GPRS Modem
Platform: | Size: 2039808 | Author: 王磊 | Hits:

[Menu controlcadmenubar

Description: 基于AUTOCAD2002的菜单程序,可以直接应用MFC在AUTOCAD下直接生成菜单-Based on the menu AutoCAD2002 procedures can be applied directly in AutoCAD MFC generated directly under the menu
Platform: | Size: 111616 | Author: 孔繁星 | Hits:

[Menu controlTestMenuBar

Description: 自己写的重载ccontrolbar类,提供菜单功能,用vc6.0写的-himself wrote the heavy ccontrolbar category, the menu function, write the vc6.0
Platform: | Size: 30720 | Author: 牛黄丸 | Hits:
« 1 23 4 »

CodeBus www.codebus.net