Collegato datagrid dei datamatrix segnalati XF...

This commit is contained in:
Samuele E. Locatelli
2015-12-17 12:20:25 +01:00
parent c5a66ee428
commit d00f44abc3
15 changed files with 1027 additions and 48 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+2
View File
@@ -46,4 +46,6 @@ exec stp_insNewLemma 'DtxAdd', 'Aggiunto DataMatrix'
exec stp_insNewLemma 'DtxRem', 'Rimosso DataMatrix'
exec stp_insNewLemma 'B48_ReadTwiceToConfirm', 'DataMatrix precedentemente segnalato: Prego confermare assegnazione con nuova lettura'
exec stp_insNewLemma 'btnBloccoDmtx', 'Blocco Datamatrix'
exec stp_insNewLemma 'TipoNC', 'Tipo NC'
exec stp_insNewLemma 'FormatoDmtx', 'Formato Datamatrix'
+38 -17
View File
@@ -8,18 +8,31 @@
<div class="row">
<div class="col-xs-4">
Formato Datamatrix:
<asp:DropDownList runat="server" ID="ddlFormDmtx">
<asp:ListItem>B48</asp:ListItem>
</asp:DropDownList>
<div id="div1" runat="server" class="panel panel-warning panel-sm">
<div class="panel-heading">
<b><%: traduci("FormatoDmtx") %></b>
</div>
<div class="panel-body">
<asp:DropDownList runat="server" ID="ddlFormDmtx">
<asp:ListItem>B48</asp:ListItem>
</asp:DropDownList>
</div>
</div>
</div>
<div class="col-xs-4">
</div>
<div class="col-xs-4">
Tipo NC:
<asp:DropDownList runat="server" ID="ddlTipoAttr">
<asp:ListItem Value="XF" Text="Fusione"></asp:ListItem>
</asp:DropDownList>
<div id="div2" runat="server" class="panel panel-warning panel-sm">
<div class="panel-heading">
<b><%: traduci("TipoNC") %></b>
</div>
<div class="panel-body">
<asp:DropDownList runat="server" ID="ddlTipoAttr">
<asp:ListItem Value="XF" Text="Fusione"></asp:ListItem>
</asp:DropDownList>
</div>
</div>
</div>
</div>
<div class="row">
@@ -48,17 +61,24 @@
<div>
Elenco ultimi DataMatrix segnalati
<div style="text-align: center; margin: auto;">
<asp:GridView ID="grView" runat="server" AutoGenerateColumns="False" DataKeyNames="UDC" DataSourceID="odsUdcSBloccabili" CellPadding="4" ForeColor="#333333" GridLines="None" Width="100%">
<asp:GridView ID="grView" runat="server" AutoGenerateColumns="False" DataSourceID="odsDtxByAttr" CellPadding="4" ForeColor="#333333" GridLines="None" Width="100%">
<AlternatingRowStyle BackColor="White" />
<Columns>
<asp:BoundField DataField="UDC" HeaderText="UDC" ReadOnly="True" SortExpression="UDC" />
<asp:BoundField DataField="Particolare" HeaderText="Particolare" SortExpression="Particolare" />
<asp:BoundField DataField="DescParticolare" HeaderText="Descr." SortExpression="DescParticolare" />
<asp:BoundField DataField="Qta" HeaderText="Qta" SortExpression="Qta" />
<asp:BoundField DataField="DescStato" HeaderText="Stato" SortExpression="DescStato" />
<asp:BoundField DataField="ModDate" HeaderText="Mod" SortExpression="ModDate" />
<asp:BoundField DataField="Note" HeaderText="Note" SortExpression="Note" />
<asp:BoundField DataField="DataMatrix" HeaderText="DataMatrix" SortExpression="DataMatrix" />
<asp:BoundField DataField="DataOra" HeaderText="DataOra" SortExpression="DataOra" />
<%--<asp:BoundField DataField="StazioneID" HeaderText="StazioneID" SortExpression="StazioneID" />
<asp:BoundField DataField="EsitoMarcatura" HeaderText="EsitoMarcatura" SortExpression="EsitoMarcatura" />
<asp:BoundField DataField="FormatoDtmxMM" HeaderText="FormatoDtmxMM" SortExpression="FormatoDtmxMM" />
<asp:BoundField DataField="PartNumber" HeaderText="PartNumber" SortExpression="PartNumber" />
<asp:BoundField DataField="IdMaster" HeaderText="IdMaster" SortExpression="IdMaster" />--%>
<asp:CheckBoxField DataField="Associato" HeaderText="Associato" SortExpression="Associato" />
<asp:BoundField DataField="PN_OK" HeaderText="PartNumber" ReadOnly="True" SortExpression="PN_OK" />
<asp:BoundField DataField="FD_OK" HeaderText="FormatoDtmx" ReadOnly="True" SortExpression="FD_OK" />
</Columns>
<EmptyDataTemplate>
<%# traduci("noRecord") %>
</EmptyDataTemplate>
<EditRowStyle BackColor="#7C6F57" />
<FooterStyle BackColor="#1C5E55" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#1C5E55" Font-Bold="True" ForeColor="White" />
@@ -70,9 +90,10 @@
<SortedDescendingCellStyle BackColor="#D4DFE1" />
<SortedDescendingHeaderStyle BackColor="#15524A" />
</asp:GridView>
<asp:ObjectDataSource ID="odsUdcSBloccabili" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getByCodBlocco" TypeName="GMW_data.DS_magazzinoTableAdapters.v_UdcDetailTableAdapter">
<asp:ObjectDataSource ID="odsDtxByAttr" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="GetData" TypeName="GMW_data.DS_DataMatrixTableAdapters.Dmtx_ByAttrTableAdapter">
<SelectParameters>
<asp:Parameter DefaultValue="W10" Name="CodBlocco" Type="String" />
<asp:ControlParameter ControlID="ddlTipoAttr" Name="CodAttr" PropertyName="SelectedValue" Type="String" />
<asp:ControlParameter ControlID="ddlFormDmtx" Name="FormatoDtmx" PropertyName="SelectedValue" Type="String" />
</SelectParameters>
</asp:ObjectDataSource>
<br />
+20 -2
View File
@@ -30,6 +30,15 @@ namespace GMW.WebUserControls {
/// </remarks>
protected global::Microsoft.AspNet.Web.Optimization.WebForms.BundleReference BundleReference2;
/// <summary>
/// div1 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlGenericControl div1;
/// <summary>
/// ddlFormDmtx control.
/// </summary>
@@ -39,6 +48,15 @@ namespace GMW.WebUserControls {
/// </remarks>
protected global::System.Web.UI.WebControls.DropDownList ddlFormDmtx;
/// <summary>
/// div2 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlGenericControl div2;
/// <summary>
/// ddlTipoAttr control.
/// </summary>
@@ -121,12 +139,12 @@ namespace GMW.WebUserControls {
protected global::System.Web.UI.WebControls.GridView grView;
/// <summary>
/// odsUdcSBloccabili control.
/// odsDtxByAttr control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.ObjectDataSource odsUdcSBloccabili;
protected global::System.Web.UI.WebControls.ObjectDataSource odsDtxByAttr;
}
}
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
+848
View File
@@ -52,6 +52,8 @@ namespace GMW_data {
private AnagFormatiDtmxDataTable tableAnagFormatiDtmx;
private Dmtx_ByAttrDataTable tableDmtx_ByAttr;
private global::System.Data.SchemaSerializationMode _schemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -122,6 +124,9 @@ namespace GMW_data {
if ((ds.Tables["AnagFormatiDtmx"] != null)) {
base.Tables.Add(new AnagFormatiDtmxDataTable(ds.Tables["AnagFormatiDtmx"]));
}
if ((ds.Tables["Dmtx_ByAttr"] != null)) {
base.Tables.Add(new Dmtx_ByAttrDataTable(ds.Tables["Dmtx_ByAttr"]));
}
this.DataSetName = ds.DataSetName;
this.Prefix = ds.Prefix;
this.Namespace = ds.Namespace;
@@ -280,6 +285,16 @@ namespace GMW_data {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
[global::System.ComponentModel.Browsable(false)]
[global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
public Dmtx_ByAttrDataTable Dmtx_ByAttr {
get {
return this.tableDmtx_ByAttr;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
[global::System.ComponentModel.BrowsableAttribute(true)]
@@ -389,6 +404,9 @@ namespace GMW_data {
if ((ds.Tables["AnagFormatiDtmx"] != null)) {
base.Tables.Add(new AnagFormatiDtmxDataTable(ds.Tables["AnagFormatiDtmx"]));
}
if ((ds.Tables["Dmtx_ByAttr"] != null)) {
base.Tables.Add(new Dmtx_ByAttrDataTable(ds.Tables["Dmtx_ByAttr"]));
}
this.DataSetName = ds.DataSetName;
this.Prefix = ds.Prefix;
this.Namespace = ds.Namespace;
@@ -506,6 +524,12 @@ namespace GMW_data {
this.tableAnagFormatiDtmx.InitVars();
}
}
this.tableDmtx_ByAttr = ((Dmtx_ByAttrDataTable)(base.Tables["Dmtx_ByAttr"]));
if ((initTable == true)) {
if ((this.tableDmtx_ByAttr != null)) {
this.tableDmtx_ByAttr.InitVars();
}
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -544,6 +568,8 @@ namespace GMW_data {
base.Tables.Add(this.tablestp_DtxCheckBlocked);
this.tableAnagFormatiDtmx = new AnagFormatiDtmxDataTable();
base.Tables.Add(this.tableAnagFormatiDtmx);
this.tableDmtx_ByAttr = new Dmtx_ByAttrDataTable();
base.Tables.Add(this.tableDmtx_ByAttr);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -630,6 +656,12 @@ namespace GMW_data {
return false;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
private bool ShouldSerializeDmtx_ByAttr() {
return false;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
private void SchemaChanged(object sender, global::System.ComponentModel.CollectionChangeEventArgs e) {
@@ -727,6 +759,9 @@ namespace GMW_data {
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public delegate void AnagFormatiDtmxRowChangeEventHandler(object sender, AnagFormatiDtmxRowChangeEvent e);
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public delegate void Dmtx_ByAttrRowChangeEventHandler(object sender, Dmtx_ByAttrRowChangeEvent e);
/// <summary>
///Represents the strongly named DataTable class.
///</summary>
@@ -5041,6 +5076,411 @@ namespace GMW_data {
}
}
/// <summary>
///Represents the strongly named DataTable class.
///</summary>
[global::System.Serializable()]
[global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
public partial class Dmtx_ByAttrDataTable : global::System.Data.TypedTableBase<Dmtx_ByAttrRow> {
private global::System.Data.DataColumn columnDataMatrix;
private global::System.Data.DataColumn columnDataOra;
private global::System.Data.DataColumn columnStazioneID;
private global::System.Data.DataColumn columnEsitoMarcatura;
private global::System.Data.DataColumn columnFormatoDtmxMM;
private global::System.Data.DataColumn columnPartNumber;
private global::System.Data.DataColumn columnIdMaster;
private global::System.Data.DataColumn columnAssociato;
private global::System.Data.DataColumn columnPN_OK;
private global::System.Data.DataColumn columnFD_OK;
private global::System.Data.DataColumn columnParticolare;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public Dmtx_ByAttrDataTable() {
this.TableName = "Dmtx_ByAttr";
this.BeginInit();
this.InitClass();
this.EndInit();
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
internal Dmtx_ByAttrDataTable(global::System.Data.DataTable table) {
this.TableName = table.TableName;
if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
this.CaseSensitive = table.CaseSensitive;
}
if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
this.Locale = table.Locale;
}
if ((table.Namespace != table.DataSet.Namespace)) {
this.Namespace = table.Namespace;
}
this.Prefix = table.Prefix;
this.MinimumCapacity = table.MinimumCapacity;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
protected Dmtx_ByAttrDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
base(info, context) {
this.InitVars();
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public global::System.Data.DataColumn DataMatrixColumn {
get {
return this.columnDataMatrix;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public global::System.Data.DataColumn DataOraColumn {
get {
return this.columnDataOra;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public global::System.Data.DataColumn StazioneIDColumn {
get {
return this.columnStazioneID;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public global::System.Data.DataColumn EsitoMarcaturaColumn {
get {
return this.columnEsitoMarcatura;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public global::System.Data.DataColumn FormatoDtmxMMColumn {
get {
return this.columnFormatoDtmxMM;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public global::System.Data.DataColumn PartNumberColumn {
get {
return this.columnPartNumber;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public global::System.Data.DataColumn IdMasterColumn {
get {
return this.columnIdMaster;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public global::System.Data.DataColumn AssociatoColumn {
get {
return this.columnAssociato;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public global::System.Data.DataColumn PN_OKColumn {
get {
return this.columnPN_OK;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public global::System.Data.DataColumn FD_OKColumn {
get {
return this.columnFD_OK;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public global::System.Data.DataColumn ParticolareColumn {
get {
return this.columnParticolare;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
[global::System.ComponentModel.Browsable(false)]
public int Count {
get {
return this.Rows.Count;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public Dmtx_ByAttrRow this[int index] {
get {
return ((Dmtx_ByAttrRow)(this.Rows[index]));
}
}
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public event Dmtx_ByAttrRowChangeEventHandler Dmtx_ByAttrRowChanging;
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public event Dmtx_ByAttrRowChangeEventHandler Dmtx_ByAttrRowChanged;
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public event Dmtx_ByAttrRowChangeEventHandler Dmtx_ByAttrRowDeleting;
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public event Dmtx_ByAttrRowChangeEventHandler Dmtx_ByAttrRowDeleted;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public void AddDmtx_ByAttrRow(Dmtx_ByAttrRow row) {
this.Rows.Add(row);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public Dmtx_ByAttrRow AddDmtx_ByAttrRow(string DataMatrix, System.DateTime DataOra, int StazioneID, string EsitoMarcatura, string FormatoDtmxMM, string PartNumber, long IdMaster, bool Associato, string PN_OK, string FD_OK, string Particolare) {
Dmtx_ByAttrRow rowDmtx_ByAttrRow = ((Dmtx_ByAttrRow)(this.NewRow()));
object[] columnValuesArray = new object[] {
DataMatrix,
DataOra,
StazioneID,
EsitoMarcatura,
FormatoDtmxMM,
PartNumber,
IdMaster,
Associato,
PN_OK,
FD_OK,
Particolare};
rowDmtx_ByAttrRow.ItemArray = columnValuesArray;
this.Rows.Add(rowDmtx_ByAttrRow);
return rowDmtx_ByAttrRow;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public override global::System.Data.DataTable Clone() {
Dmtx_ByAttrDataTable cln = ((Dmtx_ByAttrDataTable)(base.Clone()));
cln.InitVars();
return cln;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
protected override global::System.Data.DataTable CreateInstance() {
return new Dmtx_ByAttrDataTable();
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
internal void InitVars() {
this.columnDataMatrix = base.Columns["DataMatrix"];
this.columnDataOra = base.Columns["DataOra"];
this.columnStazioneID = base.Columns["StazioneID"];
this.columnEsitoMarcatura = base.Columns["EsitoMarcatura"];
this.columnFormatoDtmxMM = base.Columns["FormatoDtmxMM"];
this.columnPartNumber = base.Columns["PartNumber"];
this.columnIdMaster = base.Columns["IdMaster"];
this.columnAssociato = base.Columns["Associato"];
this.columnPN_OK = base.Columns["PN_OK"];
this.columnFD_OK = base.Columns["FD_OK"];
this.columnParticolare = base.Columns["Particolare"];
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
private void InitClass() {
this.columnDataMatrix = new global::System.Data.DataColumn("DataMatrix", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnDataMatrix);
this.columnDataOra = new global::System.Data.DataColumn("DataOra", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnDataOra);
this.columnStazioneID = new global::System.Data.DataColumn("StazioneID", typeof(int), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnStazioneID);
this.columnEsitoMarcatura = new global::System.Data.DataColumn("EsitoMarcatura", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnEsitoMarcatura);
this.columnFormatoDtmxMM = new global::System.Data.DataColumn("FormatoDtmxMM", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnFormatoDtmxMM);
this.columnPartNumber = new global::System.Data.DataColumn("PartNumber", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnPartNumber);
this.columnIdMaster = new global::System.Data.DataColumn("IdMaster", typeof(long), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnIdMaster);
this.columnAssociato = new global::System.Data.DataColumn("Associato", typeof(bool), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnAssociato);
this.columnPN_OK = new global::System.Data.DataColumn("PN_OK", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnPN_OK);
this.columnFD_OK = new global::System.Data.DataColumn("FD_OK", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnFD_OK);
this.columnParticolare = new global::System.Data.DataColumn("Particolare", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnParticolare);
this.columnDataMatrix.AllowDBNull = false;
this.columnDataMatrix.MaxLength = 50;
this.columnDataOra.AllowDBNull = false;
this.columnStazioneID.AllowDBNull = false;
this.columnEsitoMarcatura.AllowDBNull = false;
this.columnEsitoMarcatura.MaxLength = 10;
this.columnFormatoDtmxMM.AllowDBNull = false;
this.columnFormatoDtmxMM.MaxLength = 20;
this.columnPartNumber.AllowDBNull = false;
this.columnPartNumber.MaxLength = 30;
this.columnIdMaster.AllowDBNull = false;
this.columnAssociato.AllowDBNull = false;
this.columnPN_OK.ReadOnly = true;
this.columnPN_OK.MaxLength = 50;
this.columnFD_OK.ReadOnly = true;
this.columnFD_OK.MaxLength = 20;
this.columnParticolare.AllowDBNull = false;
this.columnParticolare.MaxLength = 15;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public Dmtx_ByAttrRow NewDmtx_ByAttrRow() {
return ((Dmtx_ByAttrRow)(this.NewRow()));
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
return new Dmtx_ByAttrRow(builder);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
protected override global::System.Type GetRowType() {
return typeof(Dmtx_ByAttrRow);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
base.OnRowChanged(e);
if ((this.Dmtx_ByAttrRowChanged != null)) {
this.Dmtx_ByAttrRowChanged(this, new Dmtx_ByAttrRowChangeEvent(((Dmtx_ByAttrRow)(e.Row)), e.Action));
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
base.OnRowChanging(e);
if ((this.Dmtx_ByAttrRowChanging != null)) {
this.Dmtx_ByAttrRowChanging(this, new Dmtx_ByAttrRowChangeEvent(((Dmtx_ByAttrRow)(e.Row)), e.Action));
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleted(e);
if ((this.Dmtx_ByAttrRowDeleted != null)) {
this.Dmtx_ByAttrRowDeleted(this, new Dmtx_ByAttrRowChangeEvent(((Dmtx_ByAttrRow)(e.Row)), e.Action));
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleting(e);
if ((this.Dmtx_ByAttrRowDeleting != null)) {
this.Dmtx_ByAttrRowDeleting(this, new Dmtx_ByAttrRowChangeEvent(((Dmtx_ByAttrRow)(e.Row)), e.Action));
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public void RemoveDmtx_ByAttrRow(Dmtx_ByAttrRow row) {
this.Rows.Remove(row);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
DS_DataMatrix ds = new DS_DataMatrix();
global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
any1.Namespace = "http://www.w3.org/2001/XMLSchema";
any1.MinOccurs = new decimal(0);
any1.MaxOccurs = decimal.MaxValue;
any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any1);
global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
any2.MinOccurs = new decimal(1);
any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any2);
global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
attribute1.Name = "namespace";
attribute1.FixedValue = ds.Namespace;
type.Attributes.Add(attribute1);
global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
attribute2.Name = "tableTypeName";
attribute2.FixedValue = "Dmtx_ByAttrDataTable";
type.Attributes.Add(attribute2);
type.Particle = sequence;
global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
if (xs.Contains(dsSchema.TargetNamespace)) {
global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
try {
global::System.Xml.Schema.XmlSchema schema = null;
dsSchema.Write(s1);
for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
s2.SetLength(0);
schema.Write(s2);
if ((s1.Length == s2.Length)) {
s1.Position = 0;
s2.Position = 0;
for (; ((s1.Position != s1.Length)
&& (s1.ReadByte() == s2.ReadByte())); ) {
;
}
if ((s1.Position == s1.Length)) {
return type;
}
}
}
}
finally {
if ((s1 != null)) {
s1.Close();
}
if ((s2 != null)) {
s2.Close();
}
}
}
xs.Add(dsSchema);
return type;
}
}
/// <summary>
///Represents strongly named DataRow class.
///</summary>
@@ -6585,6 +7025,176 @@ namespace GMW_data {
}
}
/// <summary>
///Represents strongly named DataRow class.
///</summary>
public partial class Dmtx_ByAttrRow : global::System.Data.DataRow {
private Dmtx_ByAttrDataTable tableDmtx_ByAttr;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
internal Dmtx_ByAttrRow(global::System.Data.DataRowBuilder rb) :
base(rb) {
this.tableDmtx_ByAttr = ((Dmtx_ByAttrDataTable)(this.Table));
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public string DataMatrix {
get {
return ((string)(this[this.tableDmtx_ByAttr.DataMatrixColumn]));
}
set {
this[this.tableDmtx_ByAttr.DataMatrixColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public System.DateTime DataOra {
get {
return ((global::System.DateTime)(this[this.tableDmtx_ByAttr.DataOraColumn]));
}
set {
this[this.tableDmtx_ByAttr.DataOraColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public int StazioneID {
get {
return ((int)(this[this.tableDmtx_ByAttr.StazioneIDColumn]));
}
set {
this[this.tableDmtx_ByAttr.StazioneIDColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public string EsitoMarcatura {
get {
return ((string)(this[this.tableDmtx_ByAttr.EsitoMarcaturaColumn]));
}
set {
this[this.tableDmtx_ByAttr.EsitoMarcaturaColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public string FormatoDtmxMM {
get {
return ((string)(this[this.tableDmtx_ByAttr.FormatoDtmxMMColumn]));
}
set {
this[this.tableDmtx_ByAttr.FormatoDtmxMMColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public string PartNumber {
get {
return ((string)(this[this.tableDmtx_ByAttr.PartNumberColumn]));
}
set {
this[this.tableDmtx_ByAttr.PartNumberColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public long IdMaster {
get {
return ((long)(this[this.tableDmtx_ByAttr.IdMasterColumn]));
}
set {
this[this.tableDmtx_ByAttr.IdMasterColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public bool Associato {
get {
return ((bool)(this[this.tableDmtx_ByAttr.AssociatoColumn]));
}
set {
this[this.tableDmtx_ByAttr.AssociatoColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public string PN_OK {
get {
try {
return ((string)(this[this.tableDmtx_ByAttr.PN_OKColumn]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("The value for column \'PN_OK\' in table \'Dmtx_ByAttr\' is DBNull.", e);
}
}
set {
this[this.tableDmtx_ByAttr.PN_OKColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public string FD_OK {
get {
try {
return ((string)(this[this.tableDmtx_ByAttr.FD_OKColumn]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("The value for column \'FD_OK\' in table \'Dmtx_ByAttr\' is DBNull.", e);
}
}
set {
this[this.tableDmtx_ByAttr.FD_OKColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public string Particolare {
get {
return ((string)(this[this.tableDmtx_ByAttr.ParticolareColumn]));
}
set {
this[this.tableDmtx_ByAttr.ParticolareColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public bool IsPN_OKNull() {
return this.IsNull(this.tableDmtx_ByAttr.PN_OKColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public void SetPN_OKNull() {
this[this.tableDmtx_ByAttr.PN_OKColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public bool IsFD_OKNull() {
return this.IsNull(this.tableDmtx_ByAttr.FD_OKColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public void SetFD_OKNull() {
this[this.tableDmtx_ByAttr.FD_OKColumn] = global::System.Convert.DBNull;
}
}
/// <summary>
///Row event argument class
///</summary>
@@ -7060,6 +7670,40 @@ namespace GMW_data {
}
}
}
/// <summary>
///Row event argument class
///</summary>
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public class Dmtx_ByAttrRowChangeEvent : global::System.EventArgs {
private Dmtx_ByAttrRow eventRow;
private global::System.Data.DataRowAction eventAction;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public Dmtx_ByAttrRowChangeEvent(Dmtx_ByAttrRow row, global::System.Data.DataRowAction action) {
this.eventRow = row;
this.eventAction = action;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public Dmtx_ByAttrRow Row {
get {
return this.eventRow;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public global::System.Data.DataRowAction Action {
get {
return this.eventAction;
}
}
}
}
}
namespace GMW_data.DS_DataMatrixTableAdapters {
@@ -11761,6 +12405,210 @@ SELECT FormatoDtmx, Descrizione, FormatoEsteso, Lungh FROM AnagFormatiDtmx WHERE
}
}
/// <summary>
///Represents the connection and commands used to retrieve and save data.
///</summary>
[global::System.ComponentModel.DesignerCategoryAttribute("code")]
[global::System.ComponentModel.ToolboxItem(true)]
[global::System.ComponentModel.DataObjectAttribute(true)]
[global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
public partial class Dmtx_ByAttrTableAdapter : global::System.ComponentModel.Component {
private global::System.Data.SqlClient.SqlDataAdapter _adapter;
private global::System.Data.SqlClient.SqlConnection _connection;
private global::System.Data.SqlClient.SqlTransaction _transaction;
private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
private bool _clearBeforeFill;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public Dmtx_ByAttrTableAdapter() {
this.ClearBeforeFill = true;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
get {
if ((this._adapter == null)) {
this.InitAdapter();
}
return this._adapter;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
internal global::System.Data.SqlClient.SqlConnection Connection {
get {
if ((this._connection == null)) {
this.InitConnection();
}
return this._connection;
}
set {
this._connection = value;
if ((this.Adapter.InsertCommand != null)) {
this.Adapter.InsertCommand.Connection = value;
}
if ((this.Adapter.DeleteCommand != null)) {
this.Adapter.DeleteCommand.Connection = value;
}
if ((this.Adapter.UpdateCommand != null)) {
this.Adapter.UpdateCommand.Connection = value;
}
for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
if ((this.CommandCollection[i] != null)) {
((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
}
}
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
internal global::System.Data.SqlClient.SqlTransaction Transaction {
get {
return this._transaction;
}
set {
this._transaction = value;
for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
this.CommandCollection[i].Transaction = this._transaction;
}
if (((this.Adapter != null)
&& (this.Adapter.DeleteCommand != null))) {
this.Adapter.DeleteCommand.Transaction = this._transaction;
}
if (((this.Adapter != null)
&& (this.Adapter.InsertCommand != null))) {
this.Adapter.InsertCommand.Transaction = this._transaction;
}
if (((this.Adapter != null)
&& (this.Adapter.UpdateCommand != null))) {
this.Adapter.UpdateCommand.Transaction = this._transaction;
}
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
get {
if ((this._commandCollection == null)) {
this.InitCommandCollection();
}
return this._commandCollection;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public bool ClearBeforeFill {
get {
return this._clearBeforeFill;
}
set {
this._clearBeforeFill = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
private void InitAdapter() {
this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
tableMapping.SourceTable = "Table";
tableMapping.DataSetTable = "Dmtx_ByAttr";
tableMapping.ColumnMappings.Add("DataMatrix", "DataMatrix");
tableMapping.ColumnMappings.Add("DataOra", "DataOra");
tableMapping.ColumnMappings.Add("StazioneID", "StazioneID");
tableMapping.ColumnMappings.Add("EsitoMarcatura", "EsitoMarcatura");
tableMapping.ColumnMappings.Add("FormatoDtmxMM", "FormatoDtmxMM");
tableMapping.ColumnMappings.Add("PartNumber", "PartNumber");
tableMapping.ColumnMappings.Add("IdMaster", "IdMaster");
tableMapping.ColumnMappings.Add("Associato", "Associato");
tableMapping.ColumnMappings.Add("PN_OK", "PN_OK");
tableMapping.ColumnMappings.Add("FD_OK", "FD_OK");
tableMapping.ColumnMappings.Add("Particolare", "Particolare");
this._adapter.TableMappings.Add(tableMapping);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
private void InitConnection() {
this._connection = new global::System.Data.SqlClient.SqlConnection();
this._connection.ConnectionString = global::GMW_data.Properties.Settings.Default.GMWConnectionString;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
private void InitCommandCollection() {
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[0].Connection = this.Connection;
this._commandCollection[0].CommandText = "dmtx.stp_Dmtx_GetByAttr";
this._commandCollection[0].CommandType = global::System.Data.CommandType.StoredProcedure;
this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodAttr", global::System.Data.SqlDbType.NVarChar, 2, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FormatoDtmx", global::System.Data.SqlDbType.NVarChar, 20, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
public virtual int Fill(DS_DataMatrix.Dmtx_ByAttrDataTable dataTable, string CodAttr, string FormatoDtmx) {
this.Adapter.SelectCommand = this.CommandCollection[0];
if ((CodAttr == null)) {
this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
}
else {
this.Adapter.SelectCommand.Parameters[1].Value = ((string)(CodAttr));
}
if ((FormatoDtmx == null)) {
this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
}
else {
this.Adapter.SelectCommand.Parameters[2].Value = ((string)(FormatoDtmx));
}
if ((this.ClearBeforeFill == true)) {
dataTable.Clear();
}
int returnValue = this.Adapter.Fill(dataTable);
return returnValue;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
public virtual DS_DataMatrix.Dmtx_ByAttrDataTable GetData(string CodAttr, string FormatoDtmx) {
this.Adapter.SelectCommand = this.CommandCollection[0];
if ((CodAttr == null)) {
this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
}
else {
this.Adapter.SelectCommand.Parameters[1].Value = ((string)(CodAttr));
}
if ((FormatoDtmx == null)) {
this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
}
else {
this.Adapter.SelectCommand.Parameters[2].Value = ((string)(FormatoDtmx));
}
DS_DataMatrix.Dmtx_ByAttrDataTable dataTable = new DS_DataMatrix.Dmtx_ByAttrDataTable();
this.Adapter.Fill(dataTable);
return dataTable;
}
}
/// <summary>
///TableAdapterManager is used to coordinate TableAdapters in the dataset to enable Hierarchical Update scenarios
///</summary>
+103 -14
View File
@@ -474,7 +474,7 @@ SELECT DataMatrix, CodStato, UDC, DataOra, CodSoggetto, Particolare FROM Dtx2UDC
<Mapping SourceColumn="Particolare" DataSetColumn="Particolare" />
</Mappings>
<Sources>
<DbSource ConnectionRef="GMWConnectionString (Settings)" DbObjectName="GMW.dmtx.stp_D2U_delete" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="deleteQuery" Modifier="Public" Name="deleteQuery" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy2" UserSourceName="deleteQuery">
<DbSource ConnectionRef="GMWConnectionString (Settings)" DbObjectName="GMW.dmtx.stp_D2U_delete" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="deleteQuery" Modifier="Public" Name="deleteQuery" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy" UserSourceName="deleteQuery">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dmtx.stp_D2U_delete</CommandText>
@@ -534,7 +534,7 @@ SELECT DataMatrix, CodStato, UDC, DataOra, CodSoggetto, Particolare FROM Dtx2UDC
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="GMWConnectionString (Settings)" DbObjectName="GMW.dmtx.stp_DtxRiassocia" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="RiassociaDtx" Modifier="Public" Name="RiassociaDtx" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy" UserSourceName="RiassociaDtx">
<DbSource ConnectionRef="GMWConnectionString (Settings)" DbObjectName="GMW.dmtx.stp_DtxRiassocia" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="RiassociaDtx" Modifier="Public" Name="RiassociaDtx" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy1" UserSourceName="RiassociaDtx">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dmtx.stp_DtxRiassocia</CommandText>
@@ -562,7 +562,7 @@ SELECT DataMatrix, CodStato, UDC, DataOra, CodSoggetto, Particolare FROM Dtx2UDC
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="GMWConnectionString (Settings)" DbObjectName="GMW.dmtx.stp_DtxUpdateUDC" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="UpdateUDC" Modifier="Public" Name="UpdateUDC" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy1" UserSourceName="UpdateUDC">
<DbSource ConnectionRef="GMWConnectionString (Settings)" DbObjectName="GMW.dmtx.stp_DtxUpdateUDC" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="UpdateUDC" Modifier="Public" Name="UpdateUDC" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy2" UserSourceName="UpdateUDC">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dmtx.stp_DtxUpdateUDC</CommandText>
@@ -824,6 +824,36 @@ SELECT FormatoDtmx, Descrizione, FormatoEsteso, Lungh FROM AnagFormatiDtmx WHERE
</DbSource>
</Sources>
</TableAdapter>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="Dmtx_ByAttrTableAdapter" GeneratorDataComponentClassName="Dmtx_ByAttrTableAdapter" Name="Dmtx_ByAttr" UserDataComponentName="Dmtx_ByAttrTableAdapter">
<MainSource>
<DbSource ConnectionRef="GMWConnectionString (Settings)" DbObjectName="GMW.dmtx.stp_Dmtx_GetByAttr" DbObjectType="StoredProcedure" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dmtx.stp_Dmtx_GetByAttr</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="ReturnValue" ParameterName="@RETURN_VALUE" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@CodAttr" Precision="0" ProviderType="NVarChar" Scale="0" Size="2" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@FormatoDtmx" Precision="0" ProviderType="NVarChar" Scale="0" Size="20" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
</MainSource>
<Mappings>
<Mapping SourceColumn="DataMatrix" DataSetColumn="DataMatrix" />
<Mapping SourceColumn="DataOra" DataSetColumn="DataOra" />
<Mapping SourceColumn="StazioneID" DataSetColumn="StazioneID" />
<Mapping SourceColumn="EsitoMarcatura" DataSetColumn="EsitoMarcatura" />
<Mapping SourceColumn="FormatoDtmxMM" DataSetColumn="FormatoDtmxMM" />
<Mapping SourceColumn="PartNumber" DataSetColumn="PartNumber" />
<Mapping SourceColumn="IdMaster" DataSetColumn="IdMaster" />
<Mapping SourceColumn="Associato" DataSetColumn="Associato" />
<Mapping SourceColumn="PN_OK" DataSetColumn="PN_OK" />
<Mapping SourceColumn="FD_OK" DataSetColumn="FD_OK" />
<Mapping SourceColumn="Particolare" DataSetColumn="Particolare" />
</Mappings>
<Sources />
</TableAdapter>
</Tables>
<Sources />
</DataSource>
@@ -925,7 +955,7 @@ SELECT FormatoDtmx, Descrizione, FormatoEsteso, Lungh FROM AnagFormatiDtmx WHERE
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="stp_verificaDtx" msprop:Generator_TableClassName="stp_verificaDtxDataTable" msprop:Generator_TableVarName="tablestp_verificaDtx" msprop:Generator_RowChangedName="stp_verificaDtxRowChanged" msprop:Generator_TablePropName="stp_verificaDtx" msprop:Generator_RowDeletingName="stp_verificaDtxRowDeleting" msprop:Generator_RowChangingName="stp_verificaDtxRowChanging" msprop:Generator_RowEvHandlerName="stp_verificaDtxRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_verificaDtxRowDeleted" msprop:Generator_RowClassName="stp_verificaDtxRow" msprop:Generator_UserTableName="stp_verificaDtx" msprop:Generator_RowEvArgName="stp_verificaDtxRowChangeEvent">
<xs:element name="stp_verificaDtx" msprop:Generator_TableClassName="stp_verificaDtxDataTable" msprop:Generator_TableVarName="tablestp_verificaDtx" msprop:Generator_TablePropName="stp_verificaDtx" msprop:Generator_RowDeletingName="stp_verificaDtxRowDeleting" msprop:Generator_RowChangingName="stp_verificaDtxRowChanging" msprop:Generator_RowEvHandlerName="stp_verificaDtxRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_verificaDtxRowDeleted" msprop:Generator_UserTableName="stp_verificaDtx" msprop:Generator_RowChangedName="stp_verificaDtxRowChanged" msprop:Generator_RowEvArgName="stp_verificaDtxRowChangeEvent" msprop:Generator_RowClassName="stp_verificaDtxRow">
<xs:complexType>
<xs:sequence>
<xs:element name="StatoDtx" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnStatoDtx" msprop:Generator_ColumnPropNameInRow="StatoDtx" msprop:Generator_ColumnPropNameInTable="StatoDtxColumn" msprop:Generator_UserColumnName="StatoDtx" minOccurs="0">
@@ -945,7 +975,7 @@ SELECT FormatoDtmx, Descrizione, FormatoEsteso, Lungh FROM AnagFormatiDtmx WHERE
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="stp_conteggioDtx" msprop:Generator_TableClassName="stp_conteggioDtxDataTable" msprop:Generator_TableVarName="tablestp_conteggioDtx" msprop:Generator_RowChangedName="stp_conteggioDtxRowChanged" msprop:Generator_TablePropName="stp_conteggioDtx" msprop:Generator_RowDeletingName="stp_conteggioDtxRowDeleting" msprop:Generator_RowChangingName="stp_conteggioDtxRowChanging" msprop:Generator_RowEvHandlerName="stp_conteggioDtxRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_conteggioDtxRowDeleted" msprop:Generator_RowClassName="stp_conteggioDtxRow" msprop:Generator_UserTableName="stp_conteggioDtx" msprop:Generator_RowEvArgName="stp_conteggioDtxRowChangeEvent">
<xs:element name="stp_conteggioDtx" msprop:Generator_TableClassName="stp_conteggioDtxDataTable" msprop:Generator_TableVarName="tablestp_conteggioDtx" msprop:Generator_TablePropName="stp_conteggioDtx" msprop:Generator_RowDeletingName="stp_conteggioDtxRowDeleting" msprop:Generator_RowChangingName="stp_conteggioDtxRowChanging" msprop:Generator_RowEvHandlerName="stp_conteggioDtxRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_conteggioDtxRowDeleted" msprop:Generator_UserTableName="stp_conteggioDtx" msprop:Generator_RowChangedName="stp_conteggioDtxRowChanged" msprop:Generator_RowEvArgName="stp_conteggioDtxRowChangeEvent" msprop:Generator_RowClassName="stp_conteggioDtxRow">
<xs:complexType>
<xs:sequence>
<xs:element name="Particolare" msprop:Generator_ColumnVarNameInTable="columnParticolare" msprop:Generator_ColumnPropNameInRow="Particolare" msprop:Generator_ColumnPropNameInTable="ParticolareColumn" msprop:Generator_UserColumnName="Particolare" minOccurs="0">
@@ -959,7 +989,7 @@ SELECT FormatoDtmx, Descrizione, FormatoEsteso, Lungh FROM AnagFormatiDtmx WHERE
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="v_DtxAcquisiti" msprop:Generator_TableClassName="v_DtxAcquisitiDataTable" msprop:Generator_TableVarName="tablev_DtxAcquisiti" msprop:Generator_RowChangedName="v_DtxAcquisitiRowChanged" msprop:Generator_TablePropName="v_DtxAcquisiti" msprop:Generator_RowDeletingName="v_DtxAcquisitiRowDeleting" msprop:Generator_RowChangingName="v_DtxAcquisitiRowChanging" msprop:Generator_RowEvHandlerName="v_DtxAcquisitiRowChangeEventHandler" msprop:Generator_RowDeletedName="v_DtxAcquisitiRowDeleted" msprop:Generator_RowClassName="v_DtxAcquisitiRow" msprop:Generator_UserTableName="v_DtxAcquisiti" msprop:Generator_RowEvArgName="v_DtxAcquisitiRowChangeEvent">
<xs:element name="v_DtxAcquisiti" msprop:Generator_TableClassName="v_DtxAcquisitiDataTable" msprop:Generator_TableVarName="tablev_DtxAcquisiti" msprop:Generator_TablePropName="v_DtxAcquisiti" msprop:Generator_RowDeletingName="v_DtxAcquisitiRowDeleting" msprop:Generator_RowChangingName="v_DtxAcquisitiRowChanging" msprop:Generator_RowEvHandlerName="v_DtxAcquisitiRowChangeEventHandler" msprop:Generator_RowDeletedName="v_DtxAcquisitiRowDeleted" msprop:Generator_UserTableName="v_DtxAcquisiti" msprop:Generator_RowChangedName="v_DtxAcquisitiRowChanged" msprop:Generator_RowEvArgName="v_DtxAcquisitiRowChangeEvent" msprop:Generator_RowClassName="v_DtxAcquisitiRow">
<xs:complexType>
<xs:sequence>
<xs:element name="DataMatrix" msprop:Generator_ColumnVarNameInTable="columnDataMatrix" msprop:Generator_ColumnPropNameInRow="DataMatrix" msprop:Generator_ColumnPropNameInTable="DataMatrixColumn" msprop:Generator_UserColumnName="DataMatrix">
@@ -994,7 +1024,7 @@ SELECT FormatoDtmx, Descrizione, FormatoEsteso, Lungh FROM AnagFormatiDtmx WHERE
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="stp_decodeDtx" msprop:Generator_TableClassName="stp_decodeDtxDataTable" msprop:Generator_TableVarName="tablestp_decodeDtx" msprop:Generator_TablePropName="stp_decodeDtx" msprop:Generator_RowDeletingName="stp_decodeDtxRowDeleting" msprop:Generator_RowChangingName="stp_decodeDtxRowChanging" msprop:Generator_RowEvHandlerName="stp_decodeDtxRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_decodeDtxRowDeleted" msprop:Generator_UserTableName="stp_decodeDtx" msprop:Generator_RowChangedName="stp_decodeDtxRowChanged" msprop:Generator_RowEvArgName="stp_decodeDtxRowChangeEvent" msprop:Generator_RowClassName="stp_decodeDtxRow">
<xs:element name="stp_decodeDtx" msprop:Generator_TableClassName="stp_decodeDtxDataTable" msprop:Generator_TableVarName="tablestp_decodeDtx" msprop:Generator_RowChangedName="stp_decodeDtxRowChanged" msprop:Generator_TablePropName="stp_decodeDtx" msprop:Generator_RowDeletingName="stp_decodeDtxRowDeleting" msprop:Generator_RowChangingName="stp_decodeDtxRowChanging" msprop:Generator_RowEvHandlerName="stp_decodeDtxRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_decodeDtxRowDeleted" msprop:Generator_RowClassName="stp_decodeDtxRow" msprop:Generator_UserTableName="stp_decodeDtx" msprop:Generator_RowEvArgName="stp_decodeDtxRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="PartNumber" msprop:Generator_ColumnVarNameInTable="columnPartNumber" msprop:Generator_ColumnPropNameInRow="PartNumber" msprop:Generator_ColumnPropNameInTable="PartNumberColumn" msprop:Generator_UserColumnName="PartNumber">
@@ -1014,7 +1044,7 @@ SELECT FormatoDtmx, Descrizione, FormatoEsteso, Lungh FROM AnagFormatiDtmx WHERE
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="stp_getFirstLastDtx" msprop:Generator_TableClassName="stp_getFirstLastDtxDataTable" msprop:Generator_TableVarName="tablestp_getFirstLastDtx" msprop:Generator_TablePropName="stp_getFirstLastDtx" msprop:Generator_RowDeletingName="stp_getFirstLastDtxRowDeleting" msprop:Generator_RowChangingName="stp_getFirstLastDtxRowChanging" msprop:Generator_RowEvHandlerName="stp_getFirstLastDtxRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_getFirstLastDtxRowDeleted" msprop:Generator_UserTableName="stp_getFirstLastDtx" msprop:Generator_RowChangedName="stp_getFirstLastDtxRowChanged" msprop:Generator_RowEvArgName="stp_getFirstLastDtxRowChangeEvent" msprop:Generator_RowClassName="stp_getFirstLastDtxRow">
<xs:element name="stp_getFirstLastDtx" msprop:Generator_TableClassName="stp_getFirstLastDtxDataTable" msprop:Generator_TableVarName="tablestp_getFirstLastDtx" msprop:Generator_RowChangedName="stp_getFirstLastDtxRowChanged" msprop:Generator_TablePropName="stp_getFirstLastDtx" msprop:Generator_RowDeletingName="stp_getFirstLastDtxRowDeleting" msprop:Generator_RowChangingName="stp_getFirstLastDtxRowChanging" msprop:Generator_RowEvHandlerName="stp_getFirstLastDtxRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_getFirstLastDtxRowDeleted" msprop:Generator_RowClassName="stp_getFirstLastDtxRow" msprop:Generator_UserTableName="stp_getFirstLastDtx" msprop:Generator_RowEvArgName="stp_getFirstLastDtxRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="DtxStart" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnDtxStart" msprop:Generator_ColumnPropNameInRow="DtxStart" msprop:Generator_ColumnPropNameInTable="DtxStartColumn" msprop:Generator_UserColumnName="DtxStart" minOccurs="0">
@@ -1034,7 +1064,7 @@ SELECT FormatoDtmx, Descrizione, FormatoEsteso, Lungh FROM AnagFormatiDtmx WHERE
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Dtx2UDC" msprop:Generator_TableClassName="Dtx2UDCDataTable" msprop:Generator_TableVarName="tableDtx2UDC" msprop:Generator_TablePropName="Dtx2UDC" msprop:Generator_RowDeletingName="Dtx2UDCRowDeleting" msprop:Generator_RowChangingName="Dtx2UDCRowChanging" msprop:Generator_RowEvHandlerName="Dtx2UDCRowChangeEventHandler" msprop:Generator_RowDeletedName="Dtx2UDCRowDeleted" msprop:Generator_UserTableName="Dtx2UDC" msprop:Generator_RowChangedName="Dtx2UDCRowChanged" msprop:Generator_RowEvArgName="Dtx2UDCRowChangeEvent" msprop:Generator_RowClassName="Dtx2UDCRow">
<xs:element name="Dtx2UDC" msprop:Generator_TableClassName="Dtx2UDCDataTable" msprop:Generator_TableVarName="tableDtx2UDC" msprop:Generator_RowChangedName="Dtx2UDCRowChanged" msprop:Generator_TablePropName="Dtx2UDC" msprop:Generator_RowDeletingName="Dtx2UDCRowDeleting" msprop:Generator_RowChangingName="Dtx2UDCRowChanging" msprop:Generator_RowEvHandlerName="Dtx2UDCRowChangeEventHandler" msprop:Generator_RowDeletedName="Dtx2UDCRowDeleted" msprop:Generator_RowClassName="Dtx2UDCRow" msprop:Generator_UserTableName="Dtx2UDC" msprop:Generator_RowEvArgName="Dtx2UDCRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="DataMatrix" msprop:Generator_ColumnVarNameInTable="columnDataMatrix" msprop:Generator_ColumnPropNameInRow="DataMatrix" msprop:Generator_ColumnPropNameInTable="DataMatrixColumn" msprop:Generator_UserColumnName="DataMatrix">
@@ -1076,7 +1106,7 @@ SELECT FormatoDtmx, Descrizione, FormatoEsteso, Lungh FROM AnagFormatiDtmx WHERE
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="stp_DtxGetAvailFreeAnom" msprop:Generator_TableClassName="stp_DtxGetAvailFreeAnomDataTable" msprop:Generator_TableVarName="tablestp_DtxGetAvailFreeAnom" msprop:Generator_RowChangedName="stp_DtxGetAvailFreeAnomRowChanged" msprop:Generator_TablePropName="stp_DtxGetAvailFreeAnom" msprop:Generator_RowDeletingName="stp_DtxGetAvailFreeAnomRowDeleting" msprop:Generator_RowChangingName="stp_DtxGetAvailFreeAnomRowChanging" msprop:Generator_RowEvHandlerName="stp_DtxGetAvailFreeAnomRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_DtxGetAvailFreeAnomRowDeleted" msprop:Generator_RowClassName="stp_DtxGetAvailFreeAnomRow" msprop:Generator_UserTableName="stp_DtxGetAvailFreeAnom" msprop:Generator_RowEvArgName="stp_DtxGetAvailFreeAnomRowChangeEvent">
<xs:element name="stp_DtxGetAvailFreeAnom" msprop:Generator_TableClassName="stp_DtxGetAvailFreeAnomDataTable" msprop:Generator_TableVarName="tablestp_DtxGetAvailFreeAnom" msprop:Generator_TablePropName="stp_DtxGetAvailFreeAnom" msprop:Generator_RowDeletingName="stp_DtxGetAvailFreeAnomRowDeleting" msprop:Generator_RowChangingName="stp_DtxGetAvailFreeAnomRowChanging" msprop:Generator_RowEvHandlerName="stp_DtxGetAvailFreeAnomRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_DtxGetAvailFreeAnomRowDeleted" msprop:Generator_UserTableName="stp_DtxGetAvailFreeAnom" msprop:Generator_RowChangedName="stp_DtxGetAvailFreeAnomRowChanged" msprop:Generator_RowEvArgName="stp_DtxGetAvailFreeAnomRowChangeEvent" msprop:Generator_RowClassName="stp_DtxGetAvailFreeAnomRow">
<xs:complexType>
<xs:sequence>
<xs:element name="DataMatrix" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnDataMatrix" msprop:Generator_ColumnPropNameInRow="DataMatrix" msprop:Generator_ColumnPropNameInTable="DataMatrixColumn" msprop:Generator_UserColumnName="DataMatrix" minOccurs="0">
@@ -1089,7 +1119,7 @@ SELECT FormatoDtmx, Descrizione, FormatoEsteso, Lungh FROM AnagFormatiDtmx WHERE
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Attr2Dtx" msprop:Generator_TableClassName="Attr2DtxDataTable" msprop:Generator_TableVarName="tableAttr2Dtx" msprop:Generator_RowChangedName="Attr2DtxRowChanged" msprop:Generator_TablePropName="Attr2Dtx" msprop:Generator_RowDeletingName="Attr2DtxRowDeleting" msprop:Generator_RowChangingName="Attr2DtxRowChanging" msprop:Generator_RowEvHandlerName="Attr2DtxRowChangeEventHandler" msprop:Generator_RowDeletedName="Attr2DtxRowDeleted" msprop:Generator_RowClassName="Attr2DtxRow" msprop:Generator_UserTableName="Attr2Dtx" msprop:Generator_RowEvArgName="Attr2DtxRowChangeEvent">
<xs:element name="Attr2Dtx" msprop:Generator_TableClassName="Attr2DtxDataTable" msprop:Generator_TableVarName="tableAttr2Dtx" msprop:Generator_TablePropName="Attr2Dtx" msprop:Generator_RowDeletingName="Attr2DtxRowDeleting" msprop:Generator_RowChangingName="Attr2DtxRowChanging" msprop:Generator_RowEvHandlerName="Attr2DtxRowChangeEventHandler" msprop:Generator_RowDeletedName="Attr2DtxRowDeleted" msprop:Generator_UserTableName="Attr2Dtx" msprop:Generator_RowChangedName="Attr2DtxRowChanged" msprop:Generator_RowEvArgName="Attr2DtxRowChangeEvent" msprop:Generator_RowClassName="Attr2DtxRow">
<xs:complexType>
<xs:sequence>
<xs:element name="idxAttr" msprop:Generator_ColumnVarNameInTable="columnidxAttr" msprop:Generator_ColumnPropNameInRow="idxAttr" msprop:Generator_ColumnPropNameInTable="idxAttrColumn" msprop:Generator_UserColumnName="idxAttr" type="xs:int" />
@@ -1125,7 +1155,7 @@ SELECT FormatoDtmx, Descrizione, FormatoEsteso, Lungh FROM AnagFormatiDtmx WHERE
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="v_Attr2Dtx" msprop:Generator_TableClassName="v_Attr2DtxDataTable" msprop:Generator_TableVarName="tablev_Attr2Dtx" msprop:Generator_TablePropName="v_Attr2Dtx" msprop:Generator_RowDeletingName="v_Attr2DtxRowDeleting" msprop:Generator_RowChangingName="v_Attr2DtxRowChanging" msprop:Generator_RowEvHandlerName="v_Attr2DtxRowChangeEventHandler" msprop:Generator_RowDeletedName="v_Attr2DtxRowDeleted" msprop:Generator_UserTableName="v_Attr2Dtx" msprop:Generator_RowChangedName="v_Attr2DtxRowChanged" msprop:Generator_RowEvArgName="v_Attr2DtxRowChangeEvent" msprop:Generator_RowClassName="v_Attr2DtxRow">
<xs:element name="v_Attr2Dtx" msprop:Generator_TableClassName="v_Attr2DtxDataTable" msprop:Generator_TableVarName="tablev_Attr2Dtx" msprop:Generator_RowChangedName="v_Attr2DtxRowChanged" msprop:Generator_TablePropName="v_Attr2Dtx" msprop:Generator_RowDeletingName="v_Attr2DtxRowDeleting" msprop:Generator_RowChangingName="v_Attr2DtxRowChanging" msprop:Generator_RowEvHandlerName="v_Attr2DtxRowChangeEventHandler" msprop:Generator_RowDeletedName="v_Attr2DtxRowDeleted" msprop:Generator_RowClassName="v_Attr2DtxRow" msprop:Generator_UserTableName="v_Attr2Dtx" msprop:Generator_RowEvArgName="v_Attr2DtxRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="Particolare" msprop:Generator_ColumnVarNameInTable="columnParticolare" msprop:Generator_ColumnPropNameInRow="Particolare" msprop:Generator_ColumnPropNameInTable="ParticolareColumn" msprop:Generator_UserColumnName="Particolare" minOccurs="0">
@@ -1161,7 +1191,7 @@ SELECT FormatoDtmx, Descrizione, FormatoEsteso, Lungh FROM AnagFormatiDtmx WHERE
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="stp_DtxCheckBlocked" msprop:Generator_TableClassName="stp_DtxCheckBlockedDataTable" msprop:Generator_TableVarName="tablestp_DtxCheckBlocked" msprop:Generator_RowChangedName="stp_DtxCheckBlockedRowChanged" msprop:Generator_TablePropName="stp_DtxCheckBlocked" msprop:Generator_RowDeletingName="stp_DtxCheckBlockedRowDeleting" msprop:Generator_RowChangingName="stp_DtxCheckBlockedRowChanging" msprop:Generator_RowEvHandlerName="stp_DtxCheckBlockedRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_DtxCheckBlockedRowDeleted" msprop:Generator_RowClassName="stp_DtxCheckBlockedRow" msprop:Generator_UserTableName="stp_DtxCheckBlocked" msprop:Generator_RowEvArgName="stp_DtxCheckBlockedRowChangeEvent">
<xs:element name="stp_DtxCheckBlocked" msprop:Generator_TableClassName="stp_DtxCheckBlockedDataTable" msprop:Generator_TableVarName="tablestp_DtxCheckBlocked" msprop:Generator_TablePropName="stp_DtxCheckBlocked" msprop:Generator_RowDeletingName="stp_DtxCheckBlockedRowDeleting" msprop:Generator_RowChangingName="stp_DtxCheckBlockedRowChanging" msprop:Generator_RowEvHandlerName="stp_DtxCheckBlockedRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_DtxCheckBlockedRowDeleted" msprop:Generator_UserTableName="stp_DtxCheckBlocked" msprop:Generator_RowChangedName="stp_DtxCheckBlockedRowChanged" msprop:Generator_RowEvArgName="stp_DtxCheckBlockedRowChangeEvent" msprop:Generator_RowClassName="stp_DtxCheckBlockedRow">
<xs:complexType>
<xs:sequence>
<xs:element name="DataMatrix" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnDataMatrix" msprop:Generator_ColumnPropNameInRow="DataMatrix" msprop:Generator_ColumnPropNameInTable="DataMatrixColumn" msprop:Generator_UserColumnName="DataMatrix" minOccurs="0">
@@ -1174,7 +1204,7 @@ SELECT FormatoDtmx, Descrizione, FormatoEsteso, Lungh FROM AnagFormatiDtmx WHERE
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="AnagFormatiDtmx" msprop:Generator_TableClassName="AnagFormatiDtmxDataTable" msprop:Generator_TableVarName="tableAnagFormatiDtmx" msprop:Generator_TablePropName="AnagFormatiDtmx" msprop:Generator_RowDeletingName="AnagFormatiDtmxRowDeleting" msprop:Generator_RowChangingName="AnagFormatiDtmxRowChanging" msprop:Generator_RowEvHandlerName="AnagFormatiDtmxRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagFormatiDtmxRowDeleted" msprop:Generator_UserTableName="AnagFormatiDtmx" msprop:Generator_RowChangedName="AnagFormatiDtmxRowChanged" msprop:Generator_RowEvArgName="AnagFormatiDtmxRowChangeEvent" msprop:Generator_RowClassName="AnagFormatiDtmxRow">
<xs:element name="AnagFormatiDtmx" msprop:Generator_TableClassName="AnagFormatiDtmxDataTable" msprop:Generator_TableVarName="tableAnagFormatiDtmx" msprop:Generator_RowChangedName="AnagFormatiDtmxRowChanged" msprop:Generator_TablePropName="AnagFormatiDtmx" msprop:Generator_RowDeletingName="AnagFormatiDtmxRowDeleting" msprop:Generator_RowChangingName="AnagFormatiDtmxRowChanging" msprop:Generator_RowEvHandlerName="AnagFormatiDtmxRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagFormatiDtmxRowDeleted" msprop:Generator_RowClassName="AnagFormatiDtmxRow" msprop:Generator_UserTableName="AnagFormatiDtmx" msprop:Generator_RowEvArgName="AnagFormatiDtmxRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="FormatoDtmx" msprop:Generator_ColumnVarNameInTable="columnFormatoDtmx" msprop:Generator_ColumnPropNameInRow="FormatoDtmx" msprop:Generator_ColumnPropNameInTable="FormatoDtmxColumn" msprop:Generator_UserColumnName="FormatoDtmx">
@@ -1202,6 +1232,65 @@ SELECT FormatoDtmx, Descrizione, FormatoEsteso, Lungh FROM AnagFormatiDtmx WHERE
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Dmtx_ByAttr" msprop:Generator_TableClassName="Dmtx_ByAttrDataTable" msprop:Generator_TableVarName="tableDmtx_ByAttr" msprop:Generator_TablePropName="Dmtx_ByAttr" msprop:Generator_RowDeletingName="Dmtx_ByAttrRowDeleting" msprop:Generator_RowChangingName="Dmtx_ByAttrRowChanging" msprop:Generator_RowEvHandlerName="Dmtx_ByAttrRowChangeEventHandler" msprop:Generator_RowDeletedName="Dmtx_ByAttrRowDeleted" msprop:Generator_UserTableName="Dmtx_ByAttr" msprop:Generator_RowChangedName="Dmtx_ByAttrRowChanged" msprop:Generator_RowEvArgName="Dmtx_ByAttrRowChangeEvent" msprop:Generator_RowClassName="Dmtx_ByAttrRow">
<xs:complexType>
<xs:sequence>
<xs:element name="DataMatrix" msprop:Generator_ColumnVarNameInTable="columnDataMatrix" msprop:Generator_ColumnPropNameInRow="DataMatrix" msprop:Generator_ColumnPropNameInTable="DataMatrixColumn" msprop:Generator_UserColumnName="DataMatrix">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DataOra" msprop:Generator_ColumnVarNameInTable="columnDataOra" msprop:Generator_ColumnPropNameInRow="DataOra" msprop:Generator_ColumnPropNameInTable="DataOraColumn" msprop:Generator_UserColumnName="DataOra" type="xs:dateTime" />
<xs:element name="StazioneID" msprop:Generator_ColumnVarNameInTable="columnStazioneID" msprop:Generator_ColumnPropNameInRow="StazioneID" msprop:Generator_ColumnPropNameInTable="StazioneIDColumn" msprop:Generator_UserColumnName="StazioneID" type="xs:int" />
<xs:element name="EsitoMarcatura" msprop:Generator_ColumnVarNameInTable="columnEsitoMarcatura" msprop:Generator_ColumnPropNameInRow="EsitoMarcatura" msprop:Generator_ColumnPropNameInTable="EsitoMarcaturaColumn" msprop:Generator_UserColumnName="EsitoMarcatura">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="10" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="FormatoDtmxMM" msprop:Generator_ColumnVarNameInTable="columnFormatoDtmxMM" msprop:Generator_ColumnPropNameInRow="FormatoDtmxMM" msprop:Generator_ColumnPropNameInTable="FormatoDtmxMMColumn" msprop:Generator_UserColumnName="FormatoDtmxMM">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="20" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="PartNumber" msprop:Generator_ColumnVarNameInTable="columnPartNumber" msprop:Generator_ColumnPropNameInRow="PartNumber" msprop:Generator_ColumnPropNameInTable="PartNumberColumn" msprop:Generator_UserColumnName="PartNumber">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="30" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="IdMaster" msprop:Generator_ColumnVarNameInTable="columnIdMaster" msprop:Generator_ColumnPropNameInRow="IdMaster" msprop:Generator_ColumnPropNameInTable="IdMasterColumn" msprop:Generator_UserColumnName="IdMaster" type="xs:long" />
<xs:element name="Associato" msprop:Generator_ColumnVarNameInTable="columnAssociato" msprop:Generator_ColumnPropNameInRow="Associato" msprop:Generator_ColumnPropNameInTable="AssociatoColumn" msprop:Generator_UserColumnName="Associato" type="xs:boolean" />
<xs:element name="PN_OK" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnPN_OK" msprop:Generator_ColumnPropNameInRow="PN_OK" msprop:Generator_ColumnPropNameInTable="PN_OKColumn" msprop:Generator_UserColumnName="PN_OK" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="FD_OK" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnFD_OK" msprop:Generator_ColumnPropNameInRow="FD_OK" msprop:Generator_ColumnPropNameInTable="FD_OKColumn" msprop:Generator_UserColumnName="FD_OK" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="20" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Particolare" msprop:Generator_ColumnVarNameInTable="columnParticolare" msprop:Generator_ColumnPropNameInRow="Particolare" msprop:Generator_ColumnPropNameInTable="ParticolareColumn" msprop:Generator_UserColumnName="Particolare">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="15" />
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
<xs:unique name="Constraint1" msdata:PrimaryKey="true">
+16 -15
View File
@@ -4,22 +4,23 @@
Changes to this file may cause incorrect behavior and will be lost if
the code is regenerated.
</autogenerated>-->
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="-10" ViewPortY="-10" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="-10" ViewPortY="3" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<Shapes>
<Shape ID="DesignTable:TranscodificaParticolari" ZOrder="14" X="946" Y="49" Height="134" Width="281" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
<Shape ID="DesignTable:ElencoDataMatrix" ZOrder="12" X="604" Y="14" Height="400" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:v_trasfDataMatrix" ZOrder="13" X="951" Y="201" Height="324" Width="248" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:stp_decodeDtx" ZOrder="8" X="392" Y="663" Height="115" Width="257" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:stp_verificaDtx" ZOrder="11" X="403" Y="795" Height="115" Width="231" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:stp_conteggioDtx" ZOrder="10" X="90" Y="664" Height="134" Width="235" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:v_DtxAcquisiti" ZOrder="9" X="664" Y="669" Height="191" Width="227" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
<Shape ID="DesignTable:stp_getFirstLastDtx" ZOrder="7" X="96" Y="805" Height="115" Width="256" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:Dtx2UDC" ZOrder="1" X="87" Y="297" Height="343" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="140" />
<Shape ID="DesignTable:stp_DtxGetAvailFreeAnom" ZOrder="6" X="933" Y="706" Height="130" Width="221" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:Attr2Dtx" ZOrder="4" X="71" Y="36" Height="229" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="140" />
<Shape ID="DesignTable:v_Attr2Dtx" ZOrder="5" X="390" Y="69" Height="210" Width="191" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="140" />
<Shape ID="DesignTable:stp_DtxCheckBlocked" ZOrder="3" X="463" Y="469" Height="96" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="45" />
<Shape ID="DesignTable:AnagFormatiDtmx" ZOrder="2" X="688" Y="461" Height="172" Width="234" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
<Shape ID="DesignTable:TranscodificaParticolari" ZOrder="15" X="946" Y="49" Height="134" Width="281" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
<Shape ID="DesignTable:ElencoDataMatrix" ZOrder="13" X="604" Y="14" Height="400" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:v_trasfDataMatrix" ZOrder="14" X="951" Y="201" Height="324" Width="248" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:stp_decodeDtx" ZOrder="9" X="392" Y="663" Height="115" Width="257" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:stp_verificaDtx" ZOrder="12" X="403" Y="795" Height="115" Width="231" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:stp_conteggioDtx" ZOrder="11" X="90" Y="664" Height="134" Width="235" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:v_DtxAcquisiti" ZOrder="10" X="664" Y="669" Height="191" Width="227" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
<Shape ID="DesignTable:stp_getFirstLastDtx" ZOrder="8" X="96" Y="805" Height="115" Width="256" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:Dtx2UDC" ZOrder="3" X="87" Y="297" Height="343" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="140" />
<Shape ID="DesignTable:stp_DtxGetAvailFreeAnom" ZOrder="1" X="692" Y="873" Height="130" Width="221" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:Attr2Dtx" ZOrder="6" X="71" Y="36" Height="229" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="140" />
<Shape ID="DesignTable:v_Attr2Dtx" ZOrder="7" X="390" Y="69" Height="210" Width="191" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="140" />
<Shape ID="DesignTable:stp_DtxCheckBlocked" ZOrder="5" X="463" Y="469" Height="96" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="45" />
<Shape ID="DesignTable:AnagFormatiDtmx" ZOrder="4" X="688" Y="461" Height="172" Width="234" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
<Shape ID="DesignTable:Dmtx_ByAttr" ZOrder="2" X="1034" Y="550" Height="286" Width="242" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="235" />
</Shapes>
<Connectors />
</DiagramLayout>