小巧精悍的中国式报表控件。
2.7主要变动:1.增加了设计器的OCX可视控件,可以将设计器嵌入到自己的Form和网页中。
2.VCL控件增加了相关的右键菜单,可以在Delphi的IDE中设计报表。
3.采用全新Office风格的工具条界面(无需皮肤控件支持)。
4.报表对象的右键菜单中增加了:自动对齐,统一调整大小等功能菜单。
5.图表功能改进,例如:支持设置X轴标题,支持多个Series等。
6.图片和文本一样支持居中、靠右显示等特性。
7.自动合并选项中的“约束合并”改为“依赖关系”由原来的“受左边列合并关系约束”改变为“受左边最近一个合并列的约束”。
8.修正了报表视图中,源子表过宽不能完整显示的问题。
9.修正了设计器处于Form设计页面时退出报错的问题。
10.修正了最小行高度调整不能到位的问题。
11.改进了列自动合并算法,修正了对于复杂报表中单元格自动合并错位的问题。
12.修正了多份打印时,页数不正确的问题。
13.修改了连续纸打印(纸张自动高度)时,对某些打印机的设置失效的问题。
2024/3/25 12:55:29 18.3MB AC Report Anycell 中国式报表
1
SpringMvc+POI导入Excel文件,采用简单的form表单提交方式和Jquery.form.js插件提供的异步表单方式导入Excel数据
2024/2/28 20:26:26 17.23MB SpringMvc POI Excel Jquery.form
1
3DVIAPlayerActiveX.ocx可以在网页中显示3D模型,该手册介绍该控件的一些函数,属性及事件,可用于web和form开发,不过3D模型需在3DVIA中制作。
2024/1/20 18:41:45 393KB 3D VIA Player ocx
1
Vclskinv3.84破解版这是从网上收集的vclskinv3.84破解版,内含官方的未注册版,Delphi编程的朋友都知道,未注册的Vclskin控件会在使用它的界面窗口标题栏显示Vclskin的版权信息,这有点烦人,破解版中有使用说明,要参考操作。
使用说明:  从IDE->Components先卸载以前的VCLSKIN下载VCLSKIN解压,然后拷贝本补丁到解压后的目录覆盖  编译并安装,在IDE的控件栏可以看见VCLSKIN包含有TSkinData,TSkinStore和TSkinCaption请在放置TSkinData控件的FORM上放置一个TSkinCaption,当TSkinCaption的Active属性为False时关闭补丁,当Active为True时开启补丁。
补丁未开启时VclSkin为DEMO版,补丁开启时VclSkin业已成为retail版本了。
补丁支持运行时动态开启。
2024/1/5 18:30:41 5.11MB Vclskin
1
FOCAS开发
2023/12/26 11:29:52 3.4MB FOCAS fanuc
1
ADO.Net访问数据库,有数据有界面,每个form都有上千行代码,扩展性好
2023/12/24 14:37:13 6.38MB 停车管理系统 c# ADO.Net
1
FORM个性化学习笔记.doc
2023/12/22 2:42:01 578KB EBS
1
fanucfocas仿真实例fanuc监控fanucfocas仿真实例fanuc监控
2023/12/21 0:09:27 14MB fanuc focas 实例 仿真
1
Modelpredictivecontrol(MPC)hasalonghistoryinthefieldofcontrolen-gineering.Itisoneofthefewareasthathasreceivedon-goinginterestfromresearchersinboththeindustrialandacademiccommunities.Fourmajoras-pectsofmodelpredictivecontrolmakethedesignmethodologyattractivetobothpractitionersandacademics.Thefirstaspectisthedesignformulation,whichusesacompletelymultivariablesystemframeworkwheretheperfor-manceparametersofthemultivariablecontrolsystemarerelatedtotheengi-neeringaspectsofthesystem;hence,theycanbeunderstoodand‘tuned’byengineers.Thesecondaspectistheabilityofthemethodtohandleboth‘soft’constraintsandhardconstraintsinamultivariablecontrolframework.Thisisparticularlyattractivetoindustrywheretightprofitmarginsandlimitsontheprocessoperationareinevitablypresent.Thethirdaspectistheabilitytoperformon-lineprocessoptimization.Thefourthaspectisthesimplicityofthedesignframeworkinhandlingallthesecomplexissues.Thisbookgivesanintroductiontomodelpredictivecontrol,andrecentdevelopmentsindesignandimplementation.Beginningwithanoverviewofthefield,thebookwillsystematicallycovertopicsinrecedinghorizoncon-trol,MPCdesignformulations,constrainedcontrol,Laguerre-function-basedpredictivecontrol,predictivecontrolusingexponentialdataweighting,refor-mulationofclassicalpredictivecontrol,tuningofpredictivecontrol,aswellassimulationandimplementationusingMATLABandSIMULINKasaplatform.Bothcontinuous-timeanddiscrete-timemodelpredictivecontrolispresentedinasimilarframework.
2023/12/11 1:41:39 4.96MB Predictive Control System Design
1
usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Text;usingSystem.Windows.Forms;usingSystem.Data.SqlClient;usingSystem.Configuration;namespacePhoneBook{publicpartialclassfrmMain:Form{publicfrmMain(){InitializeComponent();}privatestringstrConn=System.Configuration.ConfigurationManager.AppSettings["ConnectionString"];privatevoidfrmMain_Load(objectsender,EventArgse){LoadGroup();if(trvGroup.Nodes.Count>0){trvGroup.SelectedNode=trvGroup.Nodes[0];LoadList();}else{lvContact.Clear();}}privatevoidLoadGroup(){try{trvGroup.Nodes.Clear();SqlConnectionconn=newSqlConnection(strConn);SqlCommandcmd=newSqlCommand();cmd.Connection=conn;cmd.CommandText="selectdistinct组别from联系人where用户名='"+tsslUserName.Text+"'";conn.Open();SqlDataReadersdr=cmd.ExecuteReader();while(sdr.Read()){trvGroup.Nodes.Add(sdr[0].ToString());}sdr.Close();conn.Close();}catch{}}privatevoidLoadList(){if(trvGroup.Nodes.Count==0){lvContact.Clear();return;}if(trvGroup.SelectedNode.Index>=0){stringstrGroup=trvGroup.SelectedNode.Text;try{lvContact.Clear();lvContact.Columns.Add("姓名",100);lvContact.Columns.Add("工作
2023/12/9 9:50:34 1.54MB C# 管理系统
1
共 109 条记录 首页 上一页 下一页 尾页
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡