本文整理汇总了C#中Common.Utilities.ProcessID方法的典型用法代码示例。如果您正苦于以下问题:C# Common.Utilities.ProcessID方法的具体用法?C# Common.Utilities.ProcessID怎么用?C# Common.Utilities.ProcessID使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Common.Utilities
的用法示例。
在下文中一共展示了Common.Utilities.ProcessID方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ProID
public string ProID(string tenBang)
{
try
{
string idnew;
cl = new Server_Client.Client();
// gán TCPclient
this.client1 = cl.Connect(Luu.IP, Luu.Ports);
// khởi tạo biến truyền vào với hàm khởi tạo
Entities.LayID lid1 = new Entities.LayID("Select", tenBang);
// khởi tạo mảng đối tượng để hứng giá trị
Entities.LayID lid = new Entities.LayID();
clientstrem = cl.SerializeObj(this.client1, "LayID", lid1);
// đổ mảng đối tượng vào datagripview
lid = (Entities.LayID)cl.DeserializeHepper(clientstrem, hienthi);
if (lid == null)
return "SDCN_0001";
Common.Utilities a = new Common.Utilities();
idnew = a.ProcessID(lid.ID);
return idnew;
}
catch (Exception ex)
{
return "";
}
}
示例2: ProID
/// <summary>
/// Lấy giá trị id cuối cùng
/// </summary>
/// <param name="tenBang"></param>
/// <returns></returns>
public string ProID(string tenBang)
{
try
{
string idnew;
Server_Client.Client cl = new Server_Client.Client();
// gán TCPclient
this.client1 = cl.Connect(Luu.IP, Luu.Ports);
// khởi tạo biến truyền vào với hàm khởi tạo
Entities.LayID lid1 = new Entities.LayID("Select", tenBang);
// khởi tạo mảng đối tượng để hứng giá trị
Entities.LayID lid = new Entities.LayID();
clientstrem = cl.SerializeObj(this.client1, "LayID", lid1);
// đổ mảng đối tượng vào datagripview
lid = (Entities.LayID)cl.DeserializeHepper(clientstrem, lid);
if (lid == null)
{
return "NCC_0001";
}
Common.Utilities a = new Common.Utilities();
idnew = a.ProcessID(lid.ID);
//idnew =(Convert.ToInt32( lid.ID)+1).ToString();
return idnew;
}
finally
{ }
}
示例3: ProIddtkh
public string ProIddtkh(string tenBang)
{
try
{
cl = new Server_Client.Client();
// gán TCPclient
Client1 = cl.Connect(Luu.IP, Luu.Ports);
// khởi tạo biến truyền vào với hàm khởi tạo
LayID lid1 = new LayID("Select", tenBang);
// khởi tạo mảng đối tượng để hứng giá trị
LayID lid = new LayID();
Clientstrem = cl.SerializeObj(Client1, "LayID", lid1);
// đổ mảng đối tượng vào datagripview
lid = (LayID)cl.DeserializeHepper(Clientstrem, lid);
if (lid == null)
return "DTKH_0001";
Common.Utilities a = new Common.Utilities();
string idnew = a.ProcessID(lid.ID);
return idnew;
}
catch { return ""; }
}
示例4: LayID
public string LayID(string tenBang)
{
string idnew = "";
cl = new Server_Client.Client();
// gán TCPclient
this.client1 = cl.Connect(Luu.IP, Luu.Ports);
// khởi tạo biến truyền vào với hàm khởi tạo
Entities.LayID lid1 = new Entities.LayID("Select", tenBang);
// khởi tạo mảng đối tượng để hứng giá trị
Entities.LayID lid = new Entities.LayID();
clientstrem = cl.SerializeObj(this.client1, "LayID", lid1);
// đổ mảng đối tượng vào datagripview
lid = (Entities.LayID)cl.DeserializeHepper(clientstrem, lid1);
if (lid != null)
{
Common.Utilities a = new Common.Utilities();
idnew = a.ProcessID(lid.ID);
}
else
{
if (lid == null)
{
idnew = "PDCK_0001";
}
}
return idnew;
}
示例5: getID
/// <summary>
/// tu tang ID
/// </summary>
private void getID(string table)
{
try
{
Entities.LayID top = new Entities.LayID();
cl = new Server_Client.Client();
this.client = cl.Connect(Luu.IP, Luu.Ports);
top = new Entities.LayID("Select", table);
clientstrem = cl.SerializeObj(this.client, "LayID", top);
Entities.LayID ddh = new Entities.LayID();
ddh = (Entities.LayID)cl.DeserializeHepper(clientstrem, ddh);
string chuoi = ddh.ID.ToString();
Common.Utilities com = new Common.Utilities();
txtSodonhang.Text = com.ProcessID(chuoi);
}
catch (Exception ex)
{
string s = ex.Message;
}
client.Close();
clientstrem.Close();
}
示例6: getID
private void getID(string table)
{
try
{
Entities.LayID top = new Entities.LayID();
cl = new Server_Client.Client();
this.client = cl.Connect(Luu.IP, Luu.Ports);
top = new Entities.LayID("Select", table);
clientstrem = cl.SerializeObj(this.client, "LayID", top);
Entities.LayID ddh = new Entities.LayID();
ddh = (Entities.LayID)cl.DeserializeHepper(clientstrem, ddh);
client.Close();
clientstrem.Close();
if (ddh.ID.Length > 0)
{
Common.Utilities com = new Common.Utilities();
makiemke = com.ProcessID(ddh.ID.ToString());
}
else
{ makiemke = "KK_0001"; }
}
catch (Exception ex)
{
string s = ex.Message;
makiemke = "KK_0001";
}
}
示例7: ProID
/// <summary>
/// Lấy giá trị id cuối cùng
/// </summary>
/// <param name="tenBang"></param>
/// <returns></returns>
public string ProID(string tenBang)
{
try
{
string idnew;
Server_Client.Client cl = new Server_Client.Client();
// gán TCPclient
this.tcpClient = cl.Connect(Luu.IP, Luu.Ports);
// khởi tạo biến truyền vào với hàm khởi tạo
Entities.LayID lid1 = new Entities.LayID("Select", tenBang);
// khởi tạo mảng đối tượng để hứng giá trị
Entities.LayID lid = new Entities.LayID();
networkStream = cl.SerializeObj(this.tcpClient, "LayID", lid1);
// đổ mảng đối tượng vào datagripview
lid = (Entities.LayID)cl.DeserializeHepper(networkStream, lhh);
if (lid == null)
{
return "QDDVT_0001";
}
Common.Utilities a = new Common.Utilities();
idnew = a.ProcessID(lid.ID);
return idnew;
}
finally
{ }
}
示例8: LayID
public string LayID(string tenBang)
{
string idnew = "";
Entities.LayID lid = new Entities.LayID();
lid = (Entities.LayID)new BizLogic.Lay_ID().Select(lid);
if (lid != null)
{
Common.Utilities a = new Common.Utilities();
idnew = a.ProcessID(lid.ID);
}
else
{
if (lid == null)
{
idnew = "SDK_0001";
}
}
return idnew;
}
示例9: getID
private void getID(string table)
{
try
{
Entities.LayID top = new Entities.LayID();
cl = new Server_Client.Client();
this.client = cl.Connect(Luu.IP, Luu.Ports);
top = new Entities.LayID("Select", table);
clientstrem = cl.SerializeObj(this.client, "LayID", top);
Entities.LayID ddh = new Entities.LayID();
ddh = (Entities.LayID)cl.DeserializeHepper(clientstrem, ddh);
client.Close();
clientstrem.Close();
if (ddh != null)
{
string chuoi = ddh.ID.ToString();
Common.Utilities com = new Common.Utilities();
makiemtra = com.ProcessID(chuoi);
}
else
{
if (hanhDong == "Them_KhachHangTraLai")
{
makiemtra = "KHTL_0001";
}
if (hanhDong == "Them_TraLaiNhaCungCap")
{
makiemtra = "TLNCC_0001";
}
}
}
catch (Exception ex)
{
string s = ex.Message;
txtSodonhang.Text = "";
if (hanhDong == "Them_KhachHangTraLai")
{
makiemtra = "KHTL_0001";
}
if (hanhDong == "Them_TraLaiNhaCungCap")
{
makiemtra = "TLNCC_0001";
}
}
}
示例10: getID
private void getID(string table)
{
try
{
Entities.LayID top = new Entities.LayID();
cl = new Server_Client.Client();
this.tcpClient = cl.Connect(Luu.IP, Luu.Ports);
top = new Entities.LayID("Select", table);
networkStream = cl.SerializeObj(this.tcpClient, "LayID", top);
Entities.LayID ddh = new Entities.LayID();
ddh = (Entities.LayID)cl.DeserializeHepper(networkStream, ddh);
tcpClient.Close();
networkStream.Close();
if (ddh.ID != null)
{
string chuoi = ddh.ID.ToString();
Common.Utilities com = new Common.Utilities();
makiemtra = com.ProcessID(chuoi);
}
else
{
makiemtra = "MK_0001";
txtMaKho.Text = "";
}
}
catch (Exception ex)
{
string s = ex.Message.ToString();
if (txtMaKho.Text == "")
{
makiemtra = "MK_0001";
txtMaKho.Text = "";
}
}
}
示例11: ProID
public string ProID(string tenBang)
{
try
{
string idnew;
Server_Client.Client cl = new Server_Client.Client();
// gán TCPclient
TcpClient client1 = cl.Connect(Luu.IP, Luu.Ports);
// khởi tạo biến truyền vào với hàm khởi tạo
Entities.LayID lid1 = new Entities.LayID("Select", tenBang);
// khởi tạo mảng đối tượng để hứng giá trị
Entities.LayID lid = new Entities.LayID();
NetworkStream clientstrem = cl.SerializeObj(client1, "LayID", lid1);
// đổ mảng đối tượng vào datagripview
lid = (Entities.LayID)cl.DeserializeHepper(clientstrem, lid);
if (lid == null)
{
if (tenBang.Equals("TyLeTinh"))
{
return "TLT_0001";
}
else if (tenBang.Equals("DiemThuongKhachHang"))
{
return "DTKH_0001";
}
}
Common.Utilities a = new Common.Utilities();
idnew = a.ProcessID(lid.ID);
return idnew;
}
catch
{ return ""; }
}
示例12: LayID
public string LayID(string tenBang)
{
string idnew = "";
Server_Client.Client client = new Server_Client.Client();
this.tcpClient = client.Connect(Luu.IP, Luu.Ports);
Entities.LayID lid1 = new Entities.LayID("Select", tenBang);
Entities.LayID lid = new Entities.LayID();
networkStream = client.SerializeObj(this.tcpClient, "LayID", lid1);
lid = (Entities.LayID)client.DeserializeHepper(networkStream, lid);
if (lid == null)
{
idnew = "CNG_0001";
}
else
{
Common.Utilities a = new Common.Utilities();
idnew = a.ProcessID(lid.ID);
}
return idnew;
}