Line 6... |
Line 6... |
using namespace System::ComponentModel;
|
using namespace System::ComponentModel;
|
using namespace System::Collections;
|
using namespace System::Collections;
|
using namespace System::Windows::Forms;
|
using namespace System::Windows::Forms;
|
using namespace System::Data;
|
using namespace System::Data;
|
using namespace System::Drawing;
|
using namespace System::Drawing;
|
|
using namespace System::Threading;
|
|
|
/// <summary>
|
/// <summary>
|
/// Summary for frmRegisters
|
/// Summary for frmRegisters
|
/// </summary>
|
/// </summary>
|
public ref class frmRegisters : public System::Windows::Forms::Form
|
public ref class frmRegisters : public System::Windows::Forms::Form
|
{
|
{
|
public:
|
public:
|
frmRegisters(void)
|
Mutex^ mut;
|
|
frmRegisters(Mutex^ m)
|
{
|
{
|
|
mut = m;
|
InitializeComponent();
|
InitializeComponent();
|
//
|
//
|
//TODO: Add the constructor code here
|
//TODO: Add the constructor code here
|
//
|
//
|
char buf[100];
|
char buf[100];
|
sprintf(buf, "%016I64X", cpu1.gp[1]);
|
mut->WaitOne();
|
|
sprintf(buf, "%016I64X", system1.cpu2.gp[1]);
|
txtR1->Text = gcnew String(buf);
|
txtR1->Text = gcnew String(buf);
|
sprintf(buf, "%016I64X", cpu1.gp[2]);
|
sprintf(buf, "%016I64X", system1.cpu2.gp[2]);
|
txtR2->Text = gcnew String(buf);
|
txtR2->Text = gcnew String(buf);
|
sprintf(buf, "%016I64X", cpu1.gp[3]);
|
sprintf(buf, "%016I64X", system1.cpu2.gp[3]);
|
txtR3->Text = gcnew String(buf);
|
txtR3->Text = gcnew String(buf);
|
sprintf(buf, "%016I64X", cpu1.gp[4]);
|
sprintf(buf, "%016I64X", system1.cpu2.gp[4]);
|
txtR4->Text = gcnew String(buf);
|
txtR4->Text = gcnew String(buf);
|
sprintf(buf, "%016I64X", cpu1.gp[5]);
|
sprintf(buf, "%016I64X", system1.cpu2.gp[5]);
|
txtR5->Text = gcnew String(buf);
|
txtR5->Text = gcnew String(buf);
|
sprintf(buf, "%016I64X", cpu1.gp[6]);
|
sprintf(buf, "%016I64X", system1.cpu2.gp[6]);
|
txtR6->Text = gcnew String(buf);
|
txtR6->Text = gcnew String(buf);
|
sprintf(buf, "%016I64X", cpu1.gp[7]);
|
sprintf(buf, "%016I64X", system1.cpu2.gp[7]);
|
txtR7->Text = gcnew String(buf);
|
txtR7->Text = gcnew String(buf);
|
sprintf(buf, "%016I64X", cpu1.gp[8]);
|
sprintf(buf, "%016I64X", system1.cpu2.gp[8]);
|
txtR8->Text = gcnew String(buf);
|
txtR8->Text = gcnew String(buf);
|
sprintf(buf, "%016I64X", cpu1.ca[1]);
|
sprintf(buf, "%016I64X", system1.cpu2.gp[9]);
|
|
txtR9->Text = gcnew String(buf);
|
|
sprintf(buf, "%016I64X", system1.cpu2.gp[10]);
|
|
txtR10->Text = gcnew String(buf);
|
|
sprintf(buf, "%016I64X", system1.cpu2.gp[11]);
|
|
txtR11->Text = gcnew String(buf);
|
|
sprintf(buf, "%016I64X", system1.cpu2.gp[12]);
|
|
txtR12->Text = gcnew String(buf);
|
|
sprintf(buf, "%016I64X", system1.cpu2.gp[13]);
|
|
txtR13->Text = gcnew String(buf);
|
|
sprintf(buf, "%016I64X", system1.cpu2.gp[14]);
|
|
txtR14->Text = gcnew String(buf);
|
|
sprintf(buf, "%016I64X", system1.cpu2.gp[15]);
|
|
txtR15->Text = gcnew String(buf);
|
|
sprintf(buf, "%016I64X", system1.cpu2.gp[16]);
|
|
txtR16->Text = gcnew String(buf);
|
|
sprintf(buf, "%016I64X", system1.cpu2.gp[17]);
|
|
txtR17->Text = gcnew String(buf);
|
|
sprintf(buf, "%016I64X", system1.cpu2.gp[18]);
|
|
txtR18->Text = gcnew String(buf);
|
|
sprintf(buf, "%016I64X", system1.cpu2.gp[19]);
|
|
txtR19->Text = gcnew String(buf);
|
|
sprintf(buf, "%016I64X", system1.cpu2.gp[26]);
|
|
txtR26->Text = gcnew String(buf);
|
|
sprintf(buf, "%016I64X", system1.cpu2.gp[27]);
|
|
txtR27->Text = gcnew String(buf);
|
|
sprintf(buf, "%016I64X", system1.cpu2.gp[28]);
|
|
txtR28->Text = gcnew String(buf);
|
|
sprintf(buf, "%016I64X", system1.cpu2.gp[29]);
|
|
txtR29->Text = gcnew String(buf);
|
|
sprintf(buf, "%016I64X", system1.cpu2.gp[30]);
|
|
txtR30->Text = gcnew String(buf);
|
|
sprintf(buf, "%016I64X", system1.cpu2.gp[31]);
|
|
txtR31->Text = gcnew String(buf);
|
|
|
|
// Predicate Registers
|
|
sprintf(buf, "%04X %c%c%c", system1.cpu2.pr[0],
|
|
system1.cpu2.pr[0] & 4 ? '<' : ' ',
|
|
system1.cpu2.pr[0] & 2 ? '<' : ' ',
|
|
system1.cpu2.pr[0] & 1 ? '=' : ' '
|
|
);
|
|
txtP0->Text = gcnew String(buf);
|
|
sprintf(buf, "%04X %c%c%c", system1.cpu2.pr[1],
|
|
system1.cpu2.pr[1] & 4 ? '<' : ' ',
|
|
system1.cpu2.pr[1] & 2 ? '<' : ' ',
|
|
system1.cpu2.pr[1] & 1 ? '=' : ' '
|
|
);
|
|
txtP1->Text = gcnew String(buf);
|
|
sprintf(buf, "%04X %c%c%c", system1.cpu2.pr[2],
|
|
system1.cpu2.pr[2] & 4 ? '<' : ' ',
|
|
system1.cpu2.pr[2] & 2 ? '<' : ' ',
|
|
system1.cpu2.pr[2] & 1 ? '=' : ' '
|
|
);
|
|
txtP2->Text = gcnew String(buf);
|
|
sprintf(buf, "%04X %c%c%c", system1.cpu2.pr[3],
|
|
system1.cpu2.pr[3] & 4 ? '<' : ' ',
|
|
system1.cpu2.pr[3] & 2 ? '<' : ' ',
|
|
system1.cpu2.pr[3] & 1 ? '=' : ' '
|
|
);
|
|
txtP3->Text = gcnew String(buf);
|
|
sprintf(buf, "%04X %c%c%c", system1.cpu2.pr[4],
|
|
system1.cpu2.pr[4] & 4 ? '<' : ' ',
|
|
system1.cpu2.pr[4] & 2 ? '<' : ' ',
|
|
system1.cpu2.pr[4] & 1 ? '=' : ' '
|
|
);
|
|
txtP4->Text = gcnew String(buf);
|
|
sprintf(buf, "%04X %c%c%c", system1.cpu2.pr[5],
|
|
system1.cpu2.pr[5] & 4 ? '<' : ' ',
|
|
system1.cpu2.pr[5] & 2 ? '<' : ' ',
|
|
system1.cpu2.pr[5] & 1 ? '=' : ' '
|
|
);
|
|
txtP5->Text = gcnew String(buf);
|
|
sprintf(buf, "%04X %c%c%c", system1.cpu2.pr[6],
|
|
system1.cpu2.pr[6] & 4 ? '<' : ' ',
|
|
system1.cpu2.pr[6] & 2 ? '<' : ' ',
|
|
system1.cpu2.pr[6] & 1 ? '=' : ' '
|
|
);
|
|
txtP6->Text = gcnew String(buf);
|
|
sprintf(buf, "%04X %c%c%c", system1.cpu2.pr[7],
|
|
system1.cpu2.pr[7] & 4 ? '<' : ' ',
|
|
system1.cpu2.pr[7] & 2 ? '<' : ' ',
|
|
system1.cpu2.pr[7] & 1 ? '=' : ' '
|
|
);
|
|
txtP7->Text = gcnew String(buf);
|
|
|
|
// Code address registers
|
|
sprintf(buf, "%016I64X", system1.cpu2.ca[1]);
|
txtCa1->Text = gcnew String(buf);
|
txtCa1->Text = gcnew String(buf);
|
sprintf(buf, "%016I64X", cpu1.ca[12]);
|
sprintf(buf, "%016I64X", system1.cpu2.ca[12]);
|
txtCa12->Text = gcnew String(buf);
|
txtCa12->Text = gcnew String(buf);
|
sprintf(buf, "%016I64X", cpu1.pc);
|
sprintf(buf, "%016I64X", system1.cpu2.ca[14]);
|
|
txtCa14->Text = gcnew String(buf);
|
|
sprintf(buf, "%016I64X", system1.cpu2.pc);
|
txtCa15->Text = gcnew String(buf);
|
txtCa15->Text = gcnew String(buf);
|
sprintf(buf, "%016I64X", cpu1.tick);
|
|
|
sprintf(buf, "%016I64X", system1.cpu2.tick);
|
txtTick->Text = gcnew String(buf);
|
txtTick->Text = gcnew String(buf);
|
sprintf(buf, "%016I64X", cpu1.lc);
|
sprintf(buf, "%016I64X", system1.cpu2.lc);
|
txtLC->Text = gcnew String(buf);
|
txtLC->Text = gcnew String(buf);
|
|
mut->ReleaseMutex();
|
}
|
}
|
|
|
protected:
|
protected:
|
/// <summary>
|
/// <summary>
|
/// Clean up any resources being used.
|
/// Clean up any resources being used.
|
Line 125... |
Line 219... |
private: System::Windows::Forms::Label^ label42;
|
private: System::Windows::Forms::Label^ label42;
|
private: System::Windows::Forms::TextBox^ textBox43;
|
private: System::Windows::Forms::TextBox^ textBox43;
|
private: System::Windows::Forms::Label^ label43;
|
private: System::Windows::Forms::Label^ label43;
|
private: System::Windows::Forms::TextBox^ textBox44;
|
private: System::Windows::Forms::TextBox^ textBox44;
|
private: System::Windows::Forms::Label^ label44;
|
private: System::Windows::Forms::Label^ label44;
|
private: System::Windows::Forms::TextBox^ textBox45;
|
private: System::Windows::Forms::TextBox^ txtR35;
|
|
|
private: System::Windows::Forms::Label^ label45;
|
private: System::Windows::Forms::Label^ label45;
|
private: System::Windows::Forms::TextBox^ textBox46;
|
private: System::Windows::Forms::TextBox^ txtR34;
|
|
|
private: System::Windows::Forms::Label^ label46;
|
private: System::Windows::Forms::Label^ label46;
|
private: System::Windows::Forms::TextBox^ textBox47;
|
private: System::Windows::Forms::TextBox^ txtR33;
|
|
|
private: System::Windows::Forms::Label^ label47;
|
private: System::Windows::Forms::Label^ label47;
|
private: System::Windows::Forms::TextBox^ textBox48;
|
private: System::Windows::Forms::TextBox^ txtR32;
|
|
|
private: System::Windows::Forms::Label^ label48;
|
private: System::Windows::Forms::Label^ label48;
|
private: System::Windows::Forms::TextBox^ textBox17;
|
private: System::Windows::Forms::TextBox^ txtR31;
|
|
|
private: System::Windows::Forms::Label^ label17;
|
private: System::Windows::Forms::Label^ label17;
|
private: System::Windows::Forms::TextBox^ textBox18;
|
private: System::Windows::Forms::TextBox^ txtR30;
|
|
|
private: System::Windows::Forms::Label^ label18;
|
private: System::Windows::Forms::Label^ label18;
|
private: System::Windows::Forms::TextBox^ textBox19;
|
private: System::Windows::Forms::TextBox^ txtR29;
|
|
|
private: System::Windows::Forms::Label^ label19;
|
private: System::Windows::Forms::Label^ label19;
|
private: System::Windows::Forms::TextBox^ textBox20;
|
private: System::Windows::Forms::TextBox^ txtR28;
|
|
|
private: System::Windows::Forms::Label^ label20;
|
private: System::Windows::Forms::Label^ label20;
|
private: System::Windows::Forms::TextBox^ txtR27;
|
private: System::Windows::Forms::TextBox^ txtR27;
|
|
|
private: System::Windows::Forms::Label^ label21;
|
private: System::Windows::Forms::Label^ label21;
|
private: System::Windows::Forms::TextBox^ txtR26;
|
private: System::Windows::Forms::TextBox^ txtR26;
|
Line 228... |
Line 330... |
private: System::Windows::Forms::Label^ label105;
|
private: System::Windows::Forms::Label^ label105;
|
private: System::Windows::Forms::TextBox^ textBox94;
|
private: System::Windows::Forms::TextBox^ textBox94;
|
private: System::Windows::Forms::TextBox^ txtCs;
|
private: System::Windows::Forms::TextBox^ txtCs;
|
|
|
private: System::Windows::Forms::Label^ label104;
|
private: System::Windows::Forms::Label^ label104;
|
private: System::Windows::Forms::TextBox^ textBox92;
|
private: System::Windows::Forms::TextBox^ txtSSLmt;
|
|
|
private: System::Windows::Forms::TextBox^ txtSs;
|
private: System::Windows::Forms::TextBox^ txtSs;
|
|
|
private: System::Windows::Forms::Label^ label103;
|
private: System::Windows::Forms::Label^ label103;
|
private: System::Windows::Forms::TextBox^ textBox90;
|
private: System::Windows::Forms::TextBox^ textBox90;
|
private: System::Windows::Forms::TextBox^ txtHs;
|
private: System::Windows::Forms::TextBox^ txtHs;
|
Line 252... |
Line 355... |
private: System::Windows::Forms::Label^ label99;
|
private: System::Windows::Forms::Label^ label99;
|
private: System::Windows::Forms::TextBox^ textBox82;
|
private: System::Windows::Forms::TextBox^ textBox82;
|
private: System::Windows::Forms::TextBox^ txtDs;
|
private: System::Windows::Forms::TextBox^ txtDs;
|
|
|
private: System::Windows::Forms::Label^ label98;
|
private: System::Windows::Forms::Label^ label98;
|
private: System::Windows::Forms::TextBox^ textBox81;
|
private: System::Windows::Forms::TextBox^ txtZSLmt;
|
|
|
private: System::Windows::Forms::TextBox^ txtZs;
|
private: System::Windows::Forms::TextBox^ txtZs;
|
|
|
private: System::Windows::Forms::Label^ label97;
|
private: System::Windows::Forms::Label^ label97;
|
private: System::Windows::Forms::TextBox^ txtCa15;
|
private: System::Windows::Forms::TextBox^ txtCa15;
|
|
|
Line 303... |
Line 407... |
private: System::Windows::Forms::TextBox^ txtCa1;
|
private: System::Windows::Forms::TextBox^ txtCa1;
|
|
|
private: System::Windows::Forms::Label^ label82;
|
private: System::Windows::Forms::Label^ label82;
|
private: System::Windows::Forms::TextBox^ textBox16;
|
private: System::Windows::Forms::TextBox^ textBox16;
|
private: System::Windows::Forms::Label^ label81;
|
private: System::Windows::Forms::Label^ label81;
|
private: System::Windows::Forms::TextBox^ textBox15;
|
private: System::Windows::Forms::TextBox^ txtP14;
|
|
|
private: System::Windows::Forms::Label^ label80;
|
private: System::Windows::Forms::Label^ label80;
|
private: System::Windows::Forms::TextBox^ textBox14;
|
private: System::Windows::Forms::TextBox^ txtP13;
|
|
|
private: System::Windows::Forms::Label^ label79;
|
private: System::Windows::Forms::Label^ label79;
|
private: System::Windows::Forms::TextBox^ textBox13;
|
private: System::Windows::Forms::TextBox^ txtP12;
|
|
|
private: System::Windows::Forms::Label^ label78;
|
private: System::Windows::Forms::Label^ label78;
|
private: System::Windows::Forms::TextBox^ textBox12;
|
private: System::Windows::Forms::TextBox^ txtP11;
|
|
|
private: System::Windows::Forms::Label^ label77;
|
private: System::Windows::Forms::Label^ label77;
|
private: System::Windows::Forms::TextBox^ textBox11;
|
private: System::Windows::Forms::TextBox^ txtP15;
|
|
|
private: System::Windows::Forms::Label^ label76;
|
private: System::Windows::Forms::Label^ label76;
|
private: System::Windows::Forms::TextBox^ textBox10;
|
private: System::Windows::Forms::TextBox^ txtP10;
|
|
|
private: System::Windows::Forms::Label^ label75;
|
private: System::Windows::Forms::Label^ label75;
|
private: System::Windows::Forms::TextBox^ textBox9;
|
private: System::Windows::Forms::TextBox^ txtP9;
|
|
|
private: System::Windows::Forms::Label^ label74;
|
private: System::Windows::Forms::Label^ label74;
|
private: System::Windows::Forms::TextBox^ textBox8;
|
private: System::Windows::Forms::TextBox^ txtP8;
|
|
|
private: System::Windows::Forms::Label^ label73;
|
private: System::Windows::Forms::Label^ label73;
|
private: System::Windows::Forms::TextBox^ txtP7;
|
private: System::Windows::Forms::TextBox^ txtP7;
|
|
|
private: System::Windows::Forms::Label^ label72;
|
private: System::Windows::Forms::Label^ label72;
|
private: System::Windows::Forms::TextBox^ txtP6;
|
private: System::Windows::Forms::TextBox^ txtP6;
|
Line 353... |
Line 465... |
private: System::Windows::Forms::Label^ label113;
|
private: System::Windows::Forms::Label^ label113;
|
private: System::Windows::Forms::TextBox^ textBox98;
|
private: System::Windows::Forms::TextBox^ textBox98;
|
private: System::Windows::Forms::Label^ label112;
|
private: System::Windows::Forms::Label^ label112;
|
private: System::Windows::Forms::TextBox^ textBox97;
|
private: System::Windows::Forms::TextBox^ textBox97;
|
private: System::Windows::Forms::Label^ label111;
|
private: System::Windows::Forms::Label^ label111;
|
private: System::Windows::Forms::TextBox^ textBox96;
|
private: System::Windows::Forms::TextBox^ txtDBAD0;
|
|
|
private: System::Windows::Forms::Label^ label110;
|
private: System::Windows::Forms::Label^ label110;
|
private: System::Windows::Forms::TextBox^ txtTick;
|
private: System::Windows::Forms::TextBox^ txtTick;
|
private: System::Windows::Forms::Label^ label118;
|
private: System::Windows::Forms::Label^ label118;
|
private: System::Windows::Forms::TextBox^ txtLC;
|
private: System::Windows::Forms::TextBox^ txtLC;
|
private: System::Windows::Forms::Label^ label117;
|
private: System::Windows::Forms::Label^ label117;
|
Line 561... |
Line 674... |
this->label42 = (gcnew System::Windows::Forms::Label());
|
this->label42 = (gcnew System::Windows::Forms::Label());
|
this->textBox43 = (gcnew System::Windows::Forms::TextBox());
|
this->textBox43 = (gcnew System::Windows::Forms::TextBox());
|
this->label43 = (gcnew System::Windows::Forms::Label());
|
this->label43 = (gcnew System::Windows::Forms::Label());
|
this->textBox44 = (gcnew System::Windows::Forms::TextBox());
|
this->textBox44 = (gcnew System::Windows::Forms::TextBox());
|
this->label44 = (gcnew System::Windows::Forms::Label());
|
this->label44 = (gcnew System::Windows::Forms::Label());
|
this->textBox45 = (gcnew System::Windows::Forms::TextBox());
|
this->txtR35 = (gcnew System::Windows::Forms::TextBox());
|
this->label45 = (gcnew System::Windows::Forms::Label());
|
this->label45 = (gcnew System::Windows::Forms::Label());
|
this->textBox46 = (gcnew System::Windows::Forms::TextBox());
|
this->txtR34 = (gcnew System::Windows::Forms::TextBox());
|
this->label46 = (gcnew System::Windows::Forms::Label());
|
this->label46 = (gcnew System::Windows::Forms::Label());
|
this->textBox47 = (gcnew System::Windows::Forms::TextBox());
|
this->txtR33 = (gcnew System::Windows::Forms::TextBox());
|
this->label47 = (gcnew System::Windows::Forms::Label());
|
this->label47 = (gcnew System::Windows::Forms::Label());
|
this->textBox48 = (gcnew System::Windows::Forms::TextBox());
|
this->txtR32 = (gcnew System::Windows::Forms::TextBox());
|
this->label48 = (gcnew System::Windows::Forms::Label());
|
this->label48 = (gcnew System::Windows::Forms::Label());
|
this->textBox17 = (gcnew System::Windows::Forms::TextBox());
|
this->txtR31 = (gcnew System::Windows::Forms::TextBox());
|
this->label17 = (gcnew System::Windows::Forms::Label());
|
this->label17 = (gcnew System::Windows::Forms::Label());
|
this->textBox18 = (gcnew System::Windows::Forms::TextBox());
|
this->txtR30 = (gcnew System::Windows::Forms::TextBox());
|
this->label18 = (gcnew System::Windows::Forms::Label());
|
this->label18 = (gcnew System::Windows::Forms::Label());
|
this->textBox19 = (gcnew System::Windows::Forms::TextBox());
|
this->txtR29 = (gcnew System::Windows::Forms::TextBox());
|
this->label19 = (gcnew System::Windows::Forms::Label());
|
this->label19 = (gcnew System::Windows::Forms::Label());
|
this->textBox20 = (gcnew System::Windows::Forms::TextBox());
|
this->txtR28 = (gcnew System::Windows::Forms::TextBox());
|
this->label20 = (gcnew System::Windows::Forms::Label());
|
this->label20 = (gcnew System::Windows::Forms::Label());
|
this->txtR27 = (gcnew System::Windows::Forms::TextBox());
|
this->txtR27 = (gcnew System::Windows::Forms::TextBox());
|
this->label21 = (gcnew System::Windows::Forms::Label());
|
this->label21 = (gcnew System::Windows::Forms::Label());
|
this->txtR26 = (gcnew System::Windows::Forms::TextBox());
|
this->txtR26 = (gcnew System::Windows::Forms::TextBox());
|
this->label22 = (gcnew System::Windows::Forms::Label());
|
this->label22 = (gcnew System::Windows::Forms::Label());
|
Line 649... |
Line 762... |
this->label113 = (gcnew System::Windows::Forms::Label());
|
this->label113 = (gcnew System::Windows::Forms::Label());
|
this->textBox98 = (gcnew System::Windows::Forms::TextBox());
|
this->textBox98 = (gcnew System::Windows::Forms::TextBox());
|
this->label112 = (gcnew System::Windows::Forms::Label());
|
this->label112 = (gcnew System::Windows::Forms::Label());
|
this->textBox97 = (gcnew System::Windows::Forms::TextBox());
|
this->textBox97 = (gcnew System::Windows::Forms::TextBox());
|
this->label111 = (gcnew System::Windows::Forms::Label());
|
this->label111 = (gcnew System::Windows::Forms::Label());
|
this->textBox96 = (gcnew System::Windows::Forms::TextBox());
|
this->txtDBAD0 = (gcnew System::Windows::Forms::TextBox());
|
this->label110 = (gcnew System::Windows::Forms::Label());
|
this->label110 = (gcnew System::Windows::Forms::Label());
|
this->label109 = (gcnew System::Windows::Forms::Label());
|
this->label109 = (gcnew System::Windows::Forms::Label());
|
this->label108 = (gcnew System::Windows::Forms::Label());
|
this->label108 = (gcnew System::Windows::Forms::Label());
|
this->label107 = (gcnew System::Windows::Forms::Label());
|
this->label107 = (gcnew System::Windows::Forms::Label());
|
this->label106 = (gcnew System::Windows::Forms::Label());
|
this->label106 = (gcnew System::Windows::Forms::Label());
|
this->label105 = (gcnew System::Windows::Forms::Label());
|
this->label105 = (gcnew System::Windows::Forms::Label());
|
this->textBox94 = (gcnew System::Windows::Forms::TextBox());
|
this->textBox94 = (gcnew System::Windows::Forms::TextBox());
|
this->txtCs = (gcnew System::Windows::Forms::TextBox());
|
this->txtCs = (gcnew System::Windows::Forms::TextBox());
|
this->label104 = (gcnew System::Windows::Forms::Label());
|
this->label104 = (gcnew System::Windows::Forms::Label());
|
this->textBox92 = (gcnew System::Windows::Forms::TextBox());
|
this->txtSSLmt = (gcnew System::Windows::Forms::TextBox());
|
this->txtSs = (gcnew System::Windows::Forms::TextBox());
|
this->txtSs = (gcnew System::Windows::Forms::TextBox());
|
this->label103 = (gcnew System::Windows::Forms::Label());
|
this->label103 = (gcnew System::Windows::Forms::Label());
|
this->textBox90 = (gcnew System::Windows::Forms::TextBox());
|
this->textBox90 = (gcnew System::Windows::Forms::TextBox());
|
this->txtHs = (gcnew System::Windows::Forms::TextBox());
|
this->txtHs = (gcnew System::Windows::Forms::TextBox());
|
this->label102 = (gcnew System::Windows::Forms::Label());
|
this->label102 = (gcnew System::Windows::Forms::Label());
|
Line 677... |
Line 790... |
this->txtEs = (gcnew System::Windows::Forms::TextBox());
|
this->txtEs = (gcnew System::Windows::Forms::TextBox());
|
this->label99 = (gcnew System::Windows::Forms::Label());
|
this->label99 = (gcnew System::Windows::Forms::Label());
|
this->textBox82 = (gcnew System::Windows::Forms::TextBox());
|
this->textBox82 = (gcnew System::Windows::Forms::TextBox());
|
this->txtDs = (gcnew System::Windows::Forms::TextBox());
|
this->txtDs = (gcnew System::Windows::Forms::TextBox());
|
this->label98 = (gcnew System::Windows::Forms::Label());
|
this->label98 = (gcnew System::Windows::Forms::Label());
|
this->textBox81 = (gcnew System::Windows::Forms::TextBox());
|
this->txtZSLmt = (gcnew System::Windows::Forms::TextBox());
|
this->txtZs = (gcnew System::Windows::Forms::TextBox());
|
this->txtZs = (gcnew System::Windows::Forms::TextBox());
|
this->label97 = (gcnew System::Windows::Forms::Label());
|
this->label97 = (gcnew System::Windows::Forms::Label());
|
this->txtCa15 = (gcnew System::Windows::Forms::TextBox());
|
this->txtCa15 = (gcnew System::Windows::Forms::TextBox());
|
this->label96 = (gcnew System::Windows::Forms::Label());
|
this->label96 = (gcnew System::Windows::Forms::Label());
|
this->txtCa14 = (gcnew System::Windows::Forms::TextBox());
|
this->txtCa14 = (gcnew System::Windows::Forms::TextBox());
|
Line 712... |
Line 825... |
this->label83 = (gcnew System::Windows::Forms::Label());
|
this->label83 = (gcnew System::Windows::Forms::Label());
|
this->txtCa1 = (gcnew System::Windows::Forms::TextBox());
|
this->txtCa1 = (gcnew System::Windows::Forms::TextBox());
|
this->label82 = (gcnew System::Windows::Forms::Label());
|
this->label82 = (gcnew System::Windows::Forms::Label());
|
this->textBox16 = (gcnew System::Windows::Forms::TextBox());
|
this->textBox16 = (gcnew System::Windows::Forms::TextBox());
|
this->label81 = (gcnew System::Windows::Forms::Label());
|
this->label81 = (gcnew System::Windows::Forms::Label());
|
this->textBox15 = (gcnew System::Windows::Forms::TextBox());
|
this->txtP14 = (gcnew System::Windows::Forms::TextBox());
|
this->label80 = (gcnew System::Windows::Forms::Label());
|
this->label80 = (gcnew System::Windows::Forms::Label());
|
this->textBox14 = (gcnew System::Windows::Forms::TextBox());
|
this->txtP13 = (gcnew System::Windows::Forms::TextBox());
|
this->label79 = (gcnew System::Windows::Forms::Label());
|
this->label79 = (gcnew System::Windows::Forms::Label());
|
this->textBox13 = (gcnew System::Windows::Forms::TextBox());
|
this->txtP12 = (gcnew System::Windows::Forms::TextBox());
|
this->label78 = (gcnew System::Windows::Forms::Label());
|
this->label78 = (gcnew System::Windows::Forms::Label());
|
this->textBox12 = (gcnew System::Windows::Forms::TextBox());
|
this->txtP11 = (gcnew System::Windows::Forms::TextBox());
|
this->label77 = (gcnew System::Windows::Forms::Label());
|
this->label77 = (gcnew System::Windows::Forms::Label());
|
this->textBox11 = (gcnew System::Windows::Forms::TextBox());
|
this->txtP15 = (gcnew System::Windows::Forms::TextBox());
|
this->label76 = (gcnew System::Windows::Forms::Label());
|
this->label76 = (gcnew System::Windows::Forms::Label());
|
this->textBox10 = (gcnew System::Windows::Forms::TextBox());
|
this->txtP10 = (gcnew System::Windows::Forms::TextBox());
|
this->label75 = (gcnew System::Windows::Forms::Label());
|
this->label75 = (gcnew System::Windows::Forms::Label());
|
this->textBox9 = (gcnew System::Windows::Forms::TextBox());
|
this->txtP9 = (gcnew System::Windows::Forms::TextBox());
|
this->label74 = (gcnew System::Windows::Forms::Label());
|
this->label74 = (gcnew System::Windows::Forms::Label());
|
this->textBox8 = (gcnew System::Windows::Forms::TextBox());
|
this->txtP8 = (gcnew System::Windows::Forms::TextBox());
|
this->label73 = (gcnew System::Windows::Forms::Label());
|
this->label73 = (gcnew System::Windows::Forms::Label());
|
this->txtP7 = (gcnew System::Windows::Forms::TextBox());
|
this->txtP7 = (gcnew System::Windows::Forms::TextBox());
|
this->label72 = (gcnew System::Windows::Forms::Label());
|
this->label72 = (gcnew System::Windows::Forms::Label());
|
this->txtP6 = (gcnew System::Windows::Forms::TextBox());
|
this->txtP6 = (gcnew System::Windows::Forms::TextBox());
|
this->label71 = (gcnew System::Windows::Forms::Label());
|
this->label71 = (gcnew System::Windows::Forms::Label());
|
Line 817... |
Line 930... |
this->tabPage1->Controls->Add(this->label42);
|
this->tabPage1->Controls->Add(this->label42);
|
this->tabPage1->Controls->Add(this->textBox43);
|
this->tabPage1->Controls->Add(this->textBox43);
|
this->tabPage1->Controls->Add(this->label43);
|
this->tabPage1->Controls->Add(this->label43);
|
this->tabPage1->Controls->Add(this->textBox44);
|
this->tabPage1->Controls->Add(this->textBox44);
|
this->tabPage1->Controls->Add(this->label44);
|
this->tabPage1->Controls->Add(this->label44);
|
this->tabPage1->Controls->Add(this->textBox45);
|
this->tabPage1->Controls->Add(this->txtR35);
|
this->tabPage1->Controls->Add(this->label45);
|
this->tabPage1->Controls->Add(this->label45);
|
this->tabPage1->Controls->Add(this->textBox46);
|
this->tabPage1->Controls->Add(this->txtR34);
|
this->tabPage1->Controls->Add(this->label46);
|
this->tabPage1->Controls->Add(this->label46);
|
this->tabPage1->Controls->Add(this->textBox47);
|
this->tabPage1->Controls->Add(this->txtR33);
|
this->tabPage1->Controls->Add(this->label47);
|
this->tabPage1->Controls->Add(this->label47);
|
this->tabPage1->Controls->Add(this->textBox48);
|
this->tabPage1->Controls->Add(this->txtR32);
|
this->tabPage1->Controls->Add(this->label48);
|
this->tabPage1->Controls->Add(this->label48);
|
this->tabPage1->Controls->Add(this->textBox17);
|
this->tabPage1->Controls->Add(this->txtR31);
|
this->tabPage1->Controls->Add(this->label17);
|
this->tabPage1->Controls->Add(this->label17);
|
this->tabPage1->Controls->Add(this->textBox18);
|
this->tabPage1->Controls->Add(this->txtR30);
|
this->tabPage1->Controls->Add(this->label18);
|
this->tabPage1->Controls->Add(this->label18);
|
this->tabPage1->Controls->Add(this->textBox19);
|
this->tabPage1->Controls->Add(this->txtR29);
|
this->tabPage1->Controls->Add(this->label19);
|
this->tabPage1->Controls->Add(this->label19);
|
this->tabPage1->Controls->Add(this->textBox20);
|
this->tabPage1->Controls->Add(this->txtR28);
|
this->tabPage1->Controls->Add(this->label20);
|
this->tabPage1->Controls->Add(this->label20);
|
this->tabPage1->Controls->Add(this->txtR27);
|
this->tabPage1->Controls->Add(this->txtR27);
|
this->tabPage1->Controls->Add(this->label21);
|
this->tabPage1->Controls->Add(this->label21);
|
this->tabPage1->Controls->Add(this->txtR26);
|
this->tabPage1->Controls->Add(this->txtR26);
|
this->tabPage1->Controls->Add(this->label22);
|
this->tabPage1->Controls->Add(this->label22);
|
Line 1373... |
Line 1486... |
this->label44->Name = L"label44";
|
this->label44->Name = L"label44";
|
this->label44->Size = System::Drawing::Size(27, 13);
|
this->label44->Size = System::Drawing::Size(27, 13);
|
this->label44->TabIndex = 72;
|
this->label44->TabIndex = 72;
|
this->label44->Text = L"R36";
|
this->label44->Text = L"R36";
|
//
|
//
|
// textBox45
|
// txtR35
|
//
|
//
|
this->textBox45->Location = System::Drawing::Point(354, 91);
|
this->txtR35->Location = System::Drawing::Point(354, 91);
|
this->textBox45->Name = L"textBox45";
|
this->txtR35->Name = L"txtR35";
|
this->textBox45->Size = System::Drawing::Size(121, 20);
|
this->txtR35->Size = System::Drawing::Size(121, 20);
|
this->textBox45->TabIndex = 71;
|
this->txtR35->TabIndex = 71;
|
this->textBox45->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
this->txtR35->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
//
|
//
|
// label45
|
// label45
|
//
|
//
|
this->label45->AutoSize = true;
|
this->label45->AutoSize = true;
|
this->label45->Location = System::Drawing::Point(327, 94);
|
this->label45->Location = System::Drawing::Point(327, 94);
|
this->label45->Name = L"label45";
|
this->label45->Name = L"label45";
|
this->label45->Size = System::Drawing::Size(27, 13);
|
this->label45->Size = System::Drawing::Size(27, 13);
|
this->label45->TabIndex = 70;
|
this->label45->TabIndex = 70;
|
this->label45->Text = L"R35";
|
this->label45->Text = L"R35";
|
//
|
//
|
// textBox46
|
// txtR34
|
//
|
//
|
this->textBox46->Location = System::Drawing::Point(354, 65);
|
this->txtR34->Location = System::Drawing::Point(354, 65);
|
this->textBox46->Name = L"textBox46";
|
this->txtR34->Name = L"txtR34";
|
this->textBox46->Size = System::Drawing::Size(121, 20);
|
this->txtR34->Size = System::Drawing::Size(121, 20);
|
this->textBox46->TabIndex = 69;
|
this->txtR34->TabIndex = 69;
|
this->textBox46->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
this->txtR34->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
//
|
//
|
// label46
|
// label46
|
//
|
//
|
this->label46->AutoSize = true;
|
this->label46->AutoSize = true;
|
this->label46->Location = System::Drawing::Point(327, 68);
|
this->label46->Location = System::Drawing::Point(327, 68);
|
this->label46->Name = L"label46";
|
this->label46->Name = L"label46";
|
this->label46->Size = System::Drawing::Size(27, 13);
|
this->label46->Size = System::Drawing::Size(27, 13);
|
this->label46->TabIndex = 68;
|
this->label46->TabIndex = 68;
|
this->label46->Text = L"R34";
|
this->label46->Text = L"R34";
|
//
|
//
|
// textBox47
|
// txtR33
|
//
|
//
|
this->textBox47->Location = System::Drawing::Point(354, 39);
|
this->txtR33->Location = System::Drawing::Point(354, 39);
|
this->textBox47->Name = L"textBox47";
|
this->txtR33->Name = L"txtR33";
|
this->textBox47->Size = System::Drawing::Size(121, 20);
|
this->txtR33->Size = System::Drawing::Size(121, 20);
|
this->textBox47->TabIndex = 67;
|
this->txtR33->TabIndex = 67;
|
this->textBox47->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
this->txtR33->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
//
|
//
|
// label47
|
// label47
|
//
|
//
|
this->label47->AutoSize = true;
|
this->label47->AutoSize = true;
|
this->label47->Location = System::Drawing::Point(327, 42);
|
this->label47->Location = System::Drawing::Point(327, 42);
|
this->label47->Name = L"label47";
|
this->label47->Name = L"label47";
|
this->label47->Size = System::Drawing::Size(27, 13);
|
this->label47->Size = System::Drawing::Size(27, 13);
|
this->label47->TabIndex = 66;
|
this->label47->TabIndex = 66;
|
this->label47->Text = L"R33";
|
this->label47->Text = L"R33";
|
//
|
//
|
// textBox48
|
// txtR32
|
//
|
//
|
this->textBox48->Location = System::Drawing::Point(354, 13);
|
this->txtR32->Location = System::Drawing::Point(354, 13);
|
this->textBox48->Name = L"textBox48";
|
this->txtR32->Name = L"txtR32";
|
this->textBox48->Size = System::Drawing::Size(121, 20);
|
this->txtR32->Size = System::Drawing::Size(121, 20);
|
this->textBox48->TabIndex = 65;
|
this->txtR32->TabIndex = 65;
|
this->textBox48->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
this->txtR32->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
//
|
//
|
// label48
|
// label48
|
//
|
//
|
this->label48->AutoSize = true;
|
this->label48->AutoSize = true;
|
this->label48->Location = System::Drawing::Point(327, 16);
|
this->label48->Location = System::Drawing::Point(327, 16);
|
this->label48->Name = L"label48";
|
this->label48->Name = L"label48";
|
this->label48->Size = System::Drawing::Size(27, 13);
|
this->label48->Size = System::Drawing::Size(27, 13);
|
this->label48->TabIndex = 64;
|
this->label48->TabIndex = 64;
|
this->label48->Text = L"R32";
|
this->label48->Text = L"R32";
|
//
|
//
|
// textBox17
|
// txtR31
|
//
|
//
|
this->textBox17->Location = System::Drawing::Point(192, 403);
|
this->txtR31->Location = System::Drawing::Point(192, 403);
|
this->textBox17->Name = L"textBox17";
|
this->txtR31->Name = L"txtR31";
|
this->textBox17->Size = System::Drawing::Size(121, 20);
|
this->txtR31->Size = System::Drawing::Size(121, 20);
|
this->textBox17->TabIndex = 63;
|
this->txtR31->TabIndex = 63;
|
this->textBox17->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
this->txtR31->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
//
|
//
|
// label17
|
// label17
|
//
|
//
|
this->label17->AutoSize = true;
|
this->label17->AutoSize = true;
|
this->label17->Location = System::Drawing::Point(165, 406);
|
this->label17->Location = System::Drawing::Point(165, 406);
|
this->label17->Name = L"label17";
|
this->label17->Name = L"label17";
|
this->label17->Size = System::Drawing::Size(27, 13);
|
this->label17->Size = System::Drawing::Size(27, 13);
|
this->label17->TabIndex = 62;
|
this->label17->TabIndex = 62;
|
this->label17->Text = L"R31";
|
this->label17->Text = L"R31";
|
//
|
//
|
// textBox18
|
// txtR30
|
//
|
//
|
this->textBox18->Location = System::Drawing::Point(192, 377);
|
this->txtR30->Location = System::Drawing::Point(192, 377);
|
this->textBox18->Name = L"textBox18";
|
this->txtR30->Name = L"txtR30";
|
this->textBox18->Size = System::Drawing::Size(121, 20);
|
this->txtR30->Size = System::Drawing::Size(121, 20);
|
this->textBox18->TabIndex = 61;
|
this->txtR30->TabIndex = 61;
|
this->textBox18->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
this->txtR30->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
//
|
//
|
// label18
|
// label18
|
//
|
//
|
this->label18->AutoSize = true;
|
this->label18->AutoSize = true;
|
this->label18->Location = System::Drawing::Point(165, 380);
|
this->label18->Location = System::Drawing::Point(165, 380);
|
this->label18->Name = L"label18";
|
this->label18->Name = L"label18";
|
this->label18->Size = System::Drawing::Size(27, 13);
|
this->label18->Size = System::Drawing::Size(27, 13);
|
this->label18->TabIndex = 60;
|
this->label18->TabIndex = 60;
|
this->label18->Text = L"R30";
|
this->label18->Text = L"R30";
|
//
|
//
|
// textBox19
|
// txtR29
|
//
|
//
|
this->textBox19->Location = System::Drawing::Point(192, 351);
|
this->txtR29->Location = System::Drawing::Point(192, 351);
|
this->textBox19->Name = L"textBox19";
|
this->txtR29->Name = L"txtR29";
|
this->textBox19->Size = System::Drawing::Size(121, 20);
|
this->txtR29->Size = System::Drawing::Size(121, 20);
|
this->textBox19->TabIndex = 59;
|
this->txtR29->TabIndex = 59;
|
this->textBox19->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
this->txtR29->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
//
|
//
|
// label19
|
// label19
|
//
|
//
|
this->label19->AutoSize = true;
|
this->label19->AutoSize = true;
|
this->label19->Location = System::Drawing::Point(165, 354);
|
this->label19->Location = System::Drawing::Point(165, 354);
|
this->label19->Name = L"label19";
|
this->label19->Name = L"label19";
|
this->label19->Size = System::Drawing::Size(27, 13);
|
this->label19->Size = System::Drawing::Size(27, 13);
|
this->label19->TabIndex = 58;
|
this->label19->TabIndex = 58;
|
this->label19->Text = L"R29";
|
this->label19->Text = L"R29";
|
//
|
//
|
// textBox20
|
// txtR28
|
//
|
//
|
this->textBox20->Location = System::Drawing::Point(192, 325);
|
this->txtR28->Location = System::Drawing::Point(192, 325);
|
this->textBox20->Name = L"textBox20";
|
this->txtR28->Name = L"txtR28";
|
this->textBox20->Size = System::Drawing::Size(121, 20);
|
this->txtR28->Size = System::Drawing::Size(121, 20);
|
this->textBox20->TabIndex = 57;
|
this->txtR28->TabIndex = 57;
|
this->textBox20->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
this->txtR28->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
//
|
//
|
// label20
|
// label20
|
//
|
//
|
this->label20->AutoSize = true;
|
this->label20->AutoSize = true;
|
this->label20->Location = System::Drawing::Point(165, 328);
|
this->label20->Location = System::Drawing::Point(165, 328);
|
Line 2006... |
Line 2119... |
this->tabPage2->Controls->Add(this->label113);
|
this->tabPage2->Controls->Add(this->label113);
|
this->tabPage2->Controls->Add(this->textBox98);
|
this->tabPage2->Controls->Add(this->textBox98);
|
this->tabPage2->Controls->Add(this->label112);
|
this->tabPage2->Controls->Add(this->label112);
|
this->tabPage2->Controls->Add(this->textBox97);
|
this->tabPage2->Controls->Add(this->textBox97);
|
this->tabPage2->Controls->Add(this->label111);
|
this->tabPage2->Controls->Add(this->label111);
|
this->tabPage2->Controls->Add(this->textBox96);
|
this->tabPage2->Controls->Add(this->txtDBAD0);
|
this->tabPage2->Controls->Add(this->label110);
|
this->tabPage2->Controls->Add(this->label110);
|
this->tabPage2->Controls->Add(this->label109);
|
this->tabPage2->Controls->Add(this->label109);
|
this->tabPage2->Controls->Add(this->label108);
|
this->tabPage2->Controls->Add(this->label108);
|
this->tabPage2->Controls->Add(this->label107);
|
this->tabPage2->Controls->Add(this->label107);
|
this->tabPage2->Controls->Add(this->label106);
|
this->tabPage2->Controls->Add(this->label106);
|
this->tabPage2->Controls->Add(this->label105);
|
this->tabPage2->Controls->Add(this->label105);
|
this->tabPage2->Controls->Add(this->textBox94);
|
this->tabPage2->Controls->Add(this->textBox94);
|
this->tabPage2->Controls->Add(this->txtCs);
|
this->tabPage2->Controls->Add(this->txtCs);
|
this->tabPage2->Controls->Add(this->label104);
|
this->tabPage2->Controls->Add(this->label104);
|
this->tabPage2->Controls->Add(this->textBox92);
|
this->tabPage2->Controls->Add(this->txtSSLmt);
|
this->tabPage2->Controls->Add(this->txtSs);
|
this->tabPage2->Controls->Add(this->txtSs);
|
this->tabPage2->Controls->Add(this->label103);
|
this->tabPage2->Controls->Add(this->label103);
|
this->tabPage2->Controls->Add(this->textBox90);
|
this->tabPage2->Controls->Add(this->textBox90);
|
this->tabPage2->Controls->Add(this->txtHs);
|
this->tabPage2->Controls->Add(this->txtHs);
|
this->tabPage2->Controls->Add(this->label102);
|
this->tabPage2->Controls->Add(this->label102);
|
Line 2034... |
Line 2147... |
this->tabPage2->Controls->Add(this->txtEs);
|
this->tabPage2->Controls->Add(this->txtEs);
|
this->tabPage2->Controls->Add(this->label99);
|
this->tabPage2->Controls->Add(this->label99);
|
this->tabPage2->Controls->Add(this->textBox82);
|
this->tabPage2->Controls->Add(this->textBox82);
|
this->tabPage2->Controls->Add(this->txtDs);
|
this->tabPage2->Controls->Add(this->txtDs);
|
this->tabPage2->Controls->Add(this->label98);
|
this->tabPage2->Controls->Add(this->label98);
|
this->tabPage2->Controls->Add(this->textBox81);
|
this->tabPage2->Controls->Add(this->txtZSLmt);
|
this->tabPage2->Controls->Add(this->txtZs);
|
this->tabPage2->Controls->Add(this->txtZs);
|
this->tabPage2->Controls->Add(this->label97);
|
this->tabPage2->Controls->Add(this->label97);
|
this->tabPage2->Controls->Add(this->txtCa15);
|
this->tabPage2->Controls->Add(this->txtCa15);
|
this->tabPage2->Controls->Add(this->label96);
|
this->tabPage2->Controls->Add(this->label96);
|
this->tabPage2->Controls->Add(this->txtCa14);
|
this->tabPage2->Controls->Add(this->txtCa14);
|
Line 2069... |
Line 2182... |
this->tabPage2->Controls->Add(this->label83);
|
this->tabPage2->Controls->Add(this->label83);
|
this->tabPage2->Controls->Add(this->txtCa1);
|
this->tabPage2->Controls->Add(this->txtCa1);
|
this->tabPage2->Controls->Add(this->label82);
|
this->tabPage2->Controls->Add(this->label82);
|
this->tabPage2->Controls->Add(this->textBox16);
|
this->tabPage2->Controls->Add(this->textBox16);
|
this->tabPage2->Controls->Add(this->label81);
|
this->tabPage2->Controls->Add(this->label81);
|
this->tabPage2->Controls->Add(this->textBox15);
|
this->tabPage2->Controls->Add(this->txtP14);
|
this->tabPage2->Controls->Add(this->label80);
|
this->tabPage2->Controls->Add(this->label80);
|
this->tabPage2->Controls->Add(this->textBox14);
|
this->tabPage2->Controls->Add(this->txtP13);
|
this->tabPage2->Controls->Add(this->label79);
|
this->tabPage2->Controls->Add(this->label79);
|
this->tabPage2->Controls->Add(this->textBox13);
|
this->tabPage2->Controls->Add(this->txtP12);
|
this->tabPage2->Controls->Add(this->label78);
|
this->tabPage2->Controls->Add(this->label78);
|
this->tabPage2->Controls->Add(this->textBox12);
|
this->tabPage2->Controls->Add(this->txtP11);
|
this->tabPage2->Controls->Add(this->label77);
|
this->tabPage2->Controls->Add(this->label77);
|
this->tabPage2->Controls->Add(this->textBox11);
|
this->tabPage2->Controls->Add(this->txtP15);
|
this->tabPage2->Controls->Add(this->label76);
|
this->tabPage2->Controls->Add(this->label76);
|
this->tabPage2->Controls->Add(this->textBox10);
|
this->tabPage2->Controls->Add(this->txtP10);
|
this->tabPage2->Controls->Add(this->label75);
|
this->tabPage2->Controls->Add(this->label75);
|
this->tabPage2->Controls->Add(this->textBox9);
|
this->tabPage2->Controls->Add(this->txtP9);
|
this->tabPage2->Controls->Add(this->label74);
|
this->tabPage2->Controls->Add(this->label74);
|
this->tabPage2->Controls->Add(this->textBox8);
|
this->tabPage2->Controls->Add(this->txtP8);
|
this->tabPage2->Controls->Add(this->label73);
|
this->tabPage2->Controls->Add(this->label73);
|
this->tabPage2->Controls->Add(this->txtP7);
|
this->tabPage2->Controls->Add(this->txtP7);
|
this->tabPage2->Controls->Add(this->label72);
|
this->tabPage2->Controls->Add(this->label72);
|
this->tabPage2->Controls->Add(this->txtP6);
|
this->tabPage2->Controls->Add(this->txtP6);
|
this->tabPage2->Controls->Add(this->label71);
|
this->tabPage2->Controls->Add(this->label71);
|
Line 2238... |
Line 2351... |
this->label111->Name = L"label111";
|
this->label111->Name = L"label111";
|
this->label111->Size = System::Drawing::Size(43, 13);
|
this->label111->Size = System::Drawing::Size(43, 13);
|
this->label111->TabIndex = 93;
|
this->label111->TabIndex = 93;
|
this->label111->Text = L"DBAD1";
|
this->label111->Text = L"DBAD1";
|
//
|
//
|
// textBox96
|
// txtDBAD0
|
//
|
//
|
this->textBox96->Location = System::Drawing::Point(353, 296);
|
this->txtDBAD0->Location = System::Drawing::Point(353, 296);
|
this->textBox96->Name = L"textBox96";
|
this->txtDBAD0->Name = L"txtDBAD0";
|
this->textBox96->Size = System::Drawing::Size(118, 20);
|
this->txtDBAD0->Size = System::Drawing::Size(118, 20);
|
this->textBox96->TabIndex = 92;
|
this->txtDBAD0->TabIndex = 92;
|
this->textBox96->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
this->txtDBAD0->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
//
|
//
|
// label110
|
// label110
|
//
|
//
|
this->label110->AutoSize = true;
|
this->label110->AutoSize = true;
|
this->label110->Location = System::Drawing::Point(304, 299);
|
this->label110->Location = System::Drawing::Point(304, 299);
|
Line 2325... |
Line 2438... |
this->label104->Name = L"label104";
|
this->label104->Name = L"label104";
|
this->label104->Size = System::Drawing::Size(21, 13);
|
this->label104->Size = System::Drawing::Size(21, 13);
|
this->label104->TabIndex = 83;
|
this->label104->TabIndex = 83;
|
this->label104->Text = L"CS";
|
this->label104->Text = L"CS";
|
//
|
//
|
// textBox92
|
// txtSSLmt
|
//
|
//
|
this->textBox92->Location = System::Drawing::Point(471, 218);
|
this->txtSSLmt->Location = System::Drawing::Point(471, 218);
|
this->textBox92->Name = L"textBox92";
|
this->txtSSLmt->Name = L"txtSSLmt";
|
this->textBox92->Size = System::Drawing::Size(118, 20);
|
this->txtSSLmt->Size = System::Drawing::Size(118, 20);
|
this->textBox92->TabIndex = 82;
|
this->txtSSLmt->TabIndex = 82;
|
this->textBox92->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
this->txtSSLmt->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
//
|
//
|
// txtSs
|
// txtSs
|
//
|
//
|
this->txtSs->Location = System::Drawing::Point(331, 218);
|
this->txtSs->Location = System::Drawing::Point(331, 218);
|
this->txtSs->Name = L"txtSs";
|
this->txtSs->Name = L"txtSs";
|
Line 2475... |
Line 2588... |
this->label98->Name = L"label98";
|
this->label98->Name = L"label98";
|
this->label98->Size = System::Drawing::Size(22, 13);
|
this->label98->Size = System::Drawing::Size(22, 13);
|
this->label98->TabIndex = 65;
|
this->label98->TabIndex = 65;
|
this->label98->Text = L"DS";
|
this->label98->Text = L"DS";
|
//
|
//
|
// textBox81
|
// txtZSLmt
|
//
|
//
|
this->textBox81->Location = System::Drawing::Point(471, 62);
|
this->txtZSLmt->Location = System::Drawing::Point(471, 62);
|
this->textBox81->Name = L"textBox81";
|
this->txtZSLmt->Name = L"txtZSLmt";
|
this->textBox81->Size = System::Drawing::Size(118, 20);
|
this->txtZSLmt->Size = System::Drawing::Size(118, 20);
|
this->textBox81->TabIndex = 64;
|
this->txtZSLmt->TabIndex = 64;
|
this->textBox81->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
this->txtZSLmt->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
//
|
//
|
// txtZs
|
// txtZs
|
//
|
//
|
this->txtZs->Location = System::Drawing::Point(331, 62);
|
this->txtZs->Location = System::Drawing::Point(331, 62);
|
this->txtZs->Name = L"txtZs";
|
this->txtZs->Name = L"txtZs";
|
Line 2775... |
Line 2888... |
this->label81->Name = L"label81";
|
this->label81->Name = L"label81";
|
this->label81->Size = System::Drawing::Size(20, 13);
|
this->label81->Size = System::Drawing::Size(20, 13);
|
this->label81->TabIndex = 30;
|
this->label81->TabIndex = 30;
|
this->label81->Text = L"C0";
|
this->label81->Text = L"C0";
|
//
|
//
|
// textBox15
|
// txtP14
|
//
|
//
|
this->textBox15->Location = System::Drawing::Point(36, 400);
|
this->txtP14->Location = System::Drawing::Point(36, 400);
|
this->textBox15->Name = L"textBox15";
|
this->txtP14->Name = L"txtP14";
|
this->textBox15->Size = System::Drawing::Size(54, 20);
|
this->txtP14->Size = System::Drawing::Size(54, 20);
|
this->textBox15->TabIndex = 29;
|
this->txtP14->TabIndex = 29;
|
this->textBox15->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
this->txtP14->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
//
|
//
|
// label80
|
// label80
|
//
|
//
|
this->label80->AutoSize = true;
|
this->label80->AutoSize = true;
|
this->label80->Location = System::Drawing::Point(10, 403);
|
this->label80->Location = System::Drawing::Point(10, 403);
|
this->label80->Name = L"label80";
|
this->label80->Name = L"label80";
|
this->label80->Size = System::Drawing::Size(26, 13);
|
this->label80->Size = System::Drawing::Size(26, 13);
|
this->label80->TabIndex = 28;
|
this->label80->TabIndex = 28;
|
this->label80->Text = L"P14";
|
this->label80->Text = L"P14";
|
//
|
//
|
// textBox14
|
// txtP13
|
//
|
//
|
this->textBox14->Location = System::Drawing::Point(36, 374);
|
this->txtP13->Location = System::Drawing::Point(36, 374);
|
this->textBox14->Name = L"textBox14";
|
this->txtP13->Name = L"txtP13";
|
this->textBox14->Size = System::Drawing::Size(54, 20);
|
this->txtP13->Size = System::Drawing::Size(54, 20);
|
this->textBox14->TabIndex = 27;
|
this->txtP13->TabIndex = 27;
|
this->textBox14->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
this->txtP13->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
//
|
//
|
// label79
|
// label79
|
//
|
//
|
this->label79->AutoSize = true;
|
this->label79->AutoSize = true;
|
this->label79->Location = System::Drawing::Point(10, 377);
|
this->label79->Location = System::Drawing::Point(10, 377);
|
this->label79->Name = L"label79";
|
this->label79->Name = L"label79";
|
this->label79->Size = System::Drawing::Size(26, 13);
|
this->label79->Size = System::Drawing::Size(26, 13);
|
this->label79->TabIndex = 26;
|
this->label79->TabIndex = 26;
|
this->label79->Text = L"P13";
|
this->label79->Text = L"P13";
|
//
|
//
|
// textBox13
|
// txtP12
|
//
|
//
|
this->textBox13->Location = System::Drawing::Point(36, 348);
|
this->txtP12->Location = System::Drawing::Point(36, 348);
|
this->textBox13->Name = L"textBox13";
|
this->txtP12->Name = L"txtP12";
|
this->textBox13->Size = System::Drawing::Size(54, 20);
|
this->txtP12->Size = System::Drawing::Size(54, 20);
|
this->textBox13->TabIndex = 25;
|
this->txtP12->TabIndex = 25;
|
this->textBox13->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
this->txtP12->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
//
|
//
|
// label78
|
// label78
|
//
|
//
|
this->label78->AutoSize = true;
|
this->label78->AutoSize = true;
|
this->label78->Location = System::Drawing::Point(10, 351);
|
this->label78->Location = System::Drawing::Point(10, 351);
|
this->label78->Name = L"label78";
|
this->label78->Name = L"label78";
|
this->label78->Size = System::Drawing::Size(26, 13);
|
this->label78->Size = System::Drawing::Size(26, 13);
|
this->label78->TabIndex = 24;
|
this->label78->TabIndex = 24;
|
this->label78->Text = L"P12";
|
this->label78->Text = L"P12";
|
//
|
//
|
// textBox12
|
// txtP11
|
//
|
//
|
this->textBox12->Location = System::Drawing::Point(36, 322);
|
this->txtP11->Location = System::Drawing::Point(36, 322);
|
this->textBox12->Name = L"textBox12";
|
this->txtP11->Name = L"txtP11";
|
this->textBox12->Size = System::Drawing::Size(54, 20);
|
this->txtP11->Size = System::Drawing::Size(54, 20);
|
this->textBox12->TabIndex = 23;
|
this->txtP11->TabIndex = 23;
|
this->textBox12->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
this->txtP11->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
//
|
//
|
// label77
|
// label77
|
//
|
//
|
this->label77->AutoSize = true;
|
this->label77->AutoSize = true;
|
this->label77->Location = System::Drawing::Point(10, 325);
|
this->label77->Location = System::Drawing::Point(10, 325);
|
this->label77->Name = L"label77";
|
this->label77->Name = L"label77";
|
this->label77->Size = System::Drawing::Size(26, 13);
|
this->label77->Size = System::Drawing::Size(26, 13);
|
this->label77->TabIndex = 22;
|
this->label77->TabIndex = 22;
|
this->label77->Text = L"P11";
|
this->label77->Text = L"P11";
|
//
|
//
|
// textBox11
|
// txtP15
|
//
|
//
|
this->textBox11->Location = System::Drawing::Point(36, 426);
|
this->txtP15->Location = System::Drawing::Point(36, 426);
|
this->textBox11->Name = L"textBox11";
|
this->txtP15->Name = L"txtP15";
|
this->textBox11->Size = System::Drawing::Size(54, 20);
|
this->txtP15->Size = System::Drawing::Size(54, 20);
|
this->textBox11->TabIndex = 23;
|
this->txtP15->TabIndex = 23;
|
this->textBox11->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
this->txtP15->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
//
|
//
|
// label76
|
// label76
|
//
|
//
|
this->label76->AutoSize = true;
|
this->label76->AutoSize = true;
|
this->label76->Location = System::Drawing::Point(10, 429);
|
this->label76->Location = System::Drawing::Point(10, 429);
|
this->label76->Name = L"label76";
|
this->label76->Name = L"label76";
|
this->label76->Size = System::Drawing::Size(26, 13);
|
this->label76->Size = System::Drawing::Size(26, 13);
|
this->label76->TabIndex = 22;
|
this->label76->TabIndex = 22;
|
this->label76->Text = L"P15";
|
this->label76->Text = L"P15";
|
//
|
//
|
// textBox10
|
// txtP10
|
//
|
//
|
this->textBox10->Location = System::Drawing::Point(36, 296);
|
this->txtP10->Location = System::Drawing::Point(36, 296);
|
this->textBox10->Name = L"textBox10";
|
this->txtP10->Name = L"txtP10";
|
this->textBox10->Size = System::Drawing::Size(54, 20);
|
this->txtP10->Size = System::Drawing::Size(54, 20);
|
this->textBox10->TabIndex = 21;
|
this->txtP10->TabIndex = 21;
|
this->textBox10->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
this->txtP10->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
//
|
//
|
// label75
|
// label75
|
//
|
//
|
this->label75->AutoSize = true;
|
this->label75->AutoSize = true;
|
this->label75->Location = System::Drawing::Point(10, 299);
|
this->label75->Location = System::Drawing::Point(10, 299);
|
this->label75->Name = L"label75";
|
this->label75->Name = L"label75";
|
this->label75->Size = System::Drawing::Size(26, 13);
|
this->label75->Size = System::Drawing::Size(26, 13);
|
this->label75->TabIndex = 20;
|
this->label75->TabIndex = 20;
|
this->label75->Text = L"P10";
|
this->label75->Text = L"P10";
|
//
|
//
|
// textBox9
|
// txtP9
|
//
|
//
|
this->textBox9->Location = System::Drawing::Point(36, 270);
|
this->txtP9->Location = System::Drawing::Point(36, 270);
|
this->textBox9->Name = L"textBox9";
|
this->txtP9->Name = L"txtP9";
|
this->textBox9->Size = System::Drawing::Size(54, 20);
|
this->txtP9->Size = System::Drawing::Size(54, 20);
|
this->textBox9->TabIndex = 19;
|
this->txtP9->TabIndex = 19;
|
this->textBox9->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
this->txtP9->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
//
|
//
|
// label74
|
// label74
|
//
|
//
|
this->label74->AutoSize = true;
|
this->label74->AutoSize = true;
|
this->label74->Location = System::Drawing::Point(10, 273);
|
this->label74->Location = System::Drawing::Point(10, 273);
|
this->label74->Name = L"label74";
|
this->label74->Name = L"label74";
|
this->label74->Size = System::Drawing::Size(20, 13);
|
this->label74->Size = System::Drawing::Size(20, 13);
|
this->label74->TabIndex = 18;
|
this->label74->TabIndex = 18;
|
this->label74->Text = L"P9";
|
this->label74->Text = L"P9";
|
//
|
//
|
// textBox8
|
// txtP8
|
//
|
//
|
this->textBox8->Location = System::Drawing::Point(36, 244);
|
this->txtP8->Location = System::Drawing::Point(36, 244);
|
this->textBox8->Name = L"textBox8";
|
this->txtP8->Name = L"txtP8";
|
this->textBox8->Size = System::Drawing::Size(54, 20);
|
this->txtP8->Size = System::Drawing::Size(54, 20);
|
this->textBox8->TabIndex = 17;
|
this->txtP8->TabIndex = 17;
|
this->textBox8->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
this->txtP8->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
|
//
|
//
|
// label73
|
// label73
|
//
|
//
|
this->label73->AutoSize = true;
|
this->label73->AutoSize = true;
|
this->label73->Location = System::Drawing::Point(10, 247);
|
this->label73->Location = System::Drawing::Point(10, 247);
|