摘要:
select * from DispatchLists where cinvcode='10500490' and cfree2='ZB230912071' and dlid=1000033726 阅读全文
摘要:
select * from VouchType where cVouchType IN('32','09') --单据类型 select * from InvPosition where cinvcode='10500490' and cFree2='ZB240306071' and AutoID= 阅读全文
摘要:
一、基础档案1、存货档案select * from inventoryselect * from inventory_extradefind2、人员档案select * from person3、部门档案select * from department4、供应商档案select * from ven 阅读全文
摘要:
--查询一个表中的所有字段SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='zsyh_AccInfo'--查询一个库下的所有表select * from sysobjects where xtype='U'--查询一个数据库下的所有 阅读全文
摘要:
网络上有几种方法,先总结如下: 调用窗体(父):FormFather,被调用窗体(子):FormSub 方法1: 所有权法 //FormFather: //需要有一个公共的刷新方法 public void Refresh_Method() { //... } //在调用FormSub时,要把Form 阅读全文
摘要:
在使用TabControl控件时,需要考虑自动创建的TabPage页实现——关闭功能 思路一:自定义TabControl控件,添加关闭按钮 思路二:TabControl控件TabPage显示ToolTip属性(例如双击关闭) 此处,解释思路二,实现方式 操作步骤: 第一步:TabControl添加多 阅读全文
摘要:
select * from Warehouse --仓库表select * from Inventory --材料编码表select * from Rd_Style --入出库 select * from CurrentStock 现存量汇总表iSodid (U861) 订单idcWhCode (U 阅读全文
摘要:
U8 BOM涉及的数据表有四张 bom_bom BOM资料 该表主要记录BOM表的一些基本信息,版本、创建、审核等信息,不包括任何子件、母件信息;bomid是BOM主键 bom_parent BOM母件资料 该表非常简单,就只有bomid和parentid(母件物料Id )字段。 bom_opcom 阅读全文
摘要:
//用代码设置参数的数据:Report.ParameterByName("Parameter1").AsString = "...";Report.ParameterByName("Parameter1").AsBoolean = true;Report.ParameterByName("Param 阅读全文