C#之消息队列的简要说明----自学笔记[3]

[入库:2005年8月18日] [更新:2007年3月24日]

本文简介:选择自 dhz123 的 blog

   //
   // button6
   //
   this.button6.location = new system.drawing.point(16, 72);
   this.button6.name = "button6";
   this.button6.size = new system.drawing.size(104, 23);
   this.button6.tabindex = 2;
   this.button6.text = "readmsgtran";
   this.button6.click += new system.eventhandler(this.button6_click);
   //
   // button5
   //
   this.button5.location = new system.drawing.point(16, 32);
   this.button5.name = "button5";
   this.button5.size = new system.drawing.size(104, 24);
   this.button5.tabindex = 1;
   this.button5.text = "sendmsgtran";
   this.button5.click += new system.eventhandler(this.button5_click);
   //
   // groupbox3
   //
   this.groupbox3.anchor = ((system.windows.forms.anchorstyles)(((system.windows.forms.anchorstyles.top | system.windows.forms.anchorstyles.left)
    | system.windows.forms.anchorstyles.right)));
   this.groupbox3.controls.add(this.srpub);
   this.groupbox3.controls.add(this.delpubmsg);
   this.groupbox3.controls.add(this.readfrompub);
   this.groupbox3.controls.add(this.sendtopub);
   this.groupbox3.location = new system.drawing.point(432, 0);
   this.groupbox3.name = "groupbox3";
   this.groupbox3.size = new system.drawing.size(208, 136);
   this.groupbox3.tabindex = 6;
   this.groupbox3.tabstop = false;
   this.groupbox3.text = "公共队列";
   //
   // srpub
   //
   this.srpub.location = new system.drawing.point(144, 72);
   this.srpub.name = "srpub";
   this.srpub.size = new system.drawing.size(56, 48);
   this.srpub.tabindex = 4;
   this.srpub.text = "检索公共队列";
   this.srpub.click += new system.eventhandler(this.srpub_click);
   //
   // delpubmsg
   //
   this.delpubmsg.location = new system.drawing.point(8, 96);
   this.delpubmsg.name = "delpubmsg";
   this.delpubmsg.size = new system.drawing.size(112, 24);
   this.delpubmsg.tabindex = 3;
   this.delpubmsg.text = "deletepubmsmg";
   this.delpubmsg.click += new system.eventhandler(this.delpubmsg_click);
   //
   // readfrompub
   //
   this.readfrompub.location = new system.drawing.point(8, 64);
   this.readfrompub.name = "readfrompub";
   this.readfrompub.size = new system.drawing.size(128, 24);
   this.readfrompub.tabindex = 2;
   this.readfrompub.text = "readmsgfrompubmsmg";
   this.readfrompub.click += new system.eventhandler(this.readfrompub_click);
   //
   // sendtopub
   //
   this.sendtopub.location = new system.drawing.point(8, 32);
   this.sendtopub.name = "sendtopub";
   this.sendtopub.size = new system.drawing.size(144, 24);
   this.sendtopub.tabindex = 1;
   this.sendtopub.text = "sendmsgtopubmsmq";
   this.sendtopub.click += new system.eventhandler(this.sendtopub_click);
   //
   // sqlconnection1
   //
   this.sqlconnection1.connectionstring = "workstation id=dhz;packet size=4096;integrated security=sspi;data source=\"dhz\\dhz" +
    "\";persist security info=false;initial catalog=northwind";
   //
   // form1
   //
   this.autoscalebasesize = new system.drawing.size(6, 14);
   this.clientsize = new system.drawing.size(648, 349);
   this.controls.add(this.groupbox3);
   this.controls.add(this.groupbox2);
   this.controls.add(this.groupbox1);
   this.controls.add(this.richtextbox1);
   this.name = "form1";
   this.text = "form1";
   this.load += new system.eventhandler(this.form1_load);
   this.groupbox1.resumelayout(false);
   this.groupbox2.resumelayout(false);

本文关键:C#之消息队列的简要说明----自学笔记
  相关方案
Google
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top