使用EventLogUtil工具作業系統日誌

 使用EventLogUtil工具作業系統日誌作者:鄭佐日期:2007-7-23 概述EventLogUtil是一款操作Windows系統日誌的命令列工具,基於.NET Framework

編寫BizTalk 自訂管道組件的一個意外錯誤

編寫BizTalk 自訂管道組件的一個意外錯誤 作者:鄭佐 2006-11-28假設有一個名為Zhengzuo.BizTalk.Pipelines的組件項目,用來實現一個BizTalk

使用BindingManagerBase.PositionChanged 事件注意點

CurrencyManager 類是從抽象類別BindingManagerBase派生,當開發基於資料庫的應用程式時,經常會在介面層進行資料繫結來顯示資料庫的資料,由此,通過註冊BindingManagerBase.PositionChanged 事件來實現在顯示的記錄上下移動時進行操作,一般都通過PositionChanged 事件來更新菜單或工具列的狀態。但是有些的時候,如果不注意可能引起邏輯上思維上錯誤,下面就是這種情況。假設DataGrid綁定了某個DataTable的DataView。

Design Pattern 1-builder

using System;namespace Pattern{ /// <summary> /// Summary description for Class1. /// </summary> public interface builder {  void buildPartA();  void buildPartB();  product getProduct(); } public class product {  public string

Design Pattern 11-Adapter

using System;namespace Pattern{ /// <summary> /// Summary description for Class1. /// </summary> public class adapter:Circle,draw {  public adapter()  {   //   // TODO: Add constructor logic here   //  }  public void

Design Pattern 12-Command

using System;using System.Collections ;namespace Pattern{ public interface Command {  void execute();   void undo(); } //其中execute用來執行命令,undo用來恢複(undo). //接下來實現這個介面,先來實現Cut命令: public class CutCommand : Command {  public void execute()  {   /* 備份舊資料 *

Design Pattern 10-template

using System;namespace Pattern{ /// <summary> /// Summary description for Class1. /// </summary> public abstract class template {  public template()  {   //   // TODO: Add constructor logic here   //  }  public abstract string getstring()

BizTalk中MQSeries適配器開啟隊列錯誤處理

BizTalk中MQSeries適配器開啟隊列錯誤處理作者:鄭佐 日期:2007-7-11 今天在配置單位新的IBM WebSphere MQ Server伺服器時,在BizTalk Server 伺服器上安裝好MQSeries 適配器以及在MQ伺服器上安裝MQSAgent後,使用BizTalk Server 2006訪問訊息佇列出現以下相關錯誤情況。 事件類型:    警告事件來源:    BizTalk Server 2006事件種類:    BizTalk Server 2006 事件

CodeProject.com上BizTalk技術文章集錦

CodeProject.com上微軟BizTalk平台技術文章集錦 作者:鄭佐日期:2006-07-12 BizTalk Server 2006已經發布有一段時間,筆者使用BizTalk Server 2006系統也有一段時間。鑒於國內關於BizTalk平台的學習資源不多,比較好的參考資源也只有安裝程式內建的BizTalk

部署.net平台的應用程式

部署.net平台的程式鄭 佐2005-5-31         部署用.net寫的程式時客戶系統需要安裝對應版本的.net Framework,而VS.NET內建的安裝程式項目沒有提供一起打包架構的功能,這一點讓許多開發人員覺得不爽,在csdn論壇上也有人提及如何方便的把.net程式部署到沒有安裝架構的windows系統上。幾個月前下載了MicrosoftVisual Studio .NET 2003

Design Pattern 8-singleton

using System;namespace Pattern{ /// <summary> /// Summary description for Class1. /// </summary> public class singleton {  private static singleton son;  private singleton()  {   //   // TODO: Add constructor logic here   //  }  public

NTLDR is missing Press CTRL+ALT+DEL to restart.問題處理

時間:2005-7-24今天開機發現系統進不了,給出提示:“NTLDR is missing Press CTRL+ALT+DEL to restart.” 在網上搜了一下,原來是在C盤少了幾個檔案,使用引導盤進入故障修復主控台,執行了一下fixboot命令重新啟動不行。於是放入系統安裝盤,在光碟片考了幾個檔案到C:/, copy g:/i386/ntldr c:/ copy g:/i386/ntdetect.com

BizTalk Server簡單xml架構使用舉例

BizTalk Server簡單xml架構使用舉例作者:鄭佐日期:2006-08-02 在BizTalk項目中如果使用業務編排,一般會有一個接收報文和發送報文之間進行架構Mapping的過程。在BizTalk項目中添加xml架構的時候,如果xml報文帶有namespace,可能會碰到架構無法驗證問題,需要設定屬性解決。本文針對初次開發BizTalk項目的開發人員。假設有一個輸入訂單報文,檔案名稱為POin.xml,報文內容如下。<Root

Design Pattern 13-Decorator

/* * 動態給一個對象添加一些額外的職責,就象在牆上刷油漆.使用Decorator模式相比用產生子類方式達到功能的擴充顯得更為靈活.為什麼使用Decorator?我們通常可以使用繼承來實現功能的拓展,如果這些需要拓展的功能的種類很繁多,那麼勢必產生很多子類,增加系統的複雜性,同時,使用繼承實現功能拓展,我們必須可預見這些拓展功能,這些功能是編譯時間就確定了,是靜態. */using System;using System.Collections ;namespace Pattern{ ///

Design Pattern 7-proxy

using System;namespace Pattern{ public abstract class subject {  public abstract void request(); } /// <summary> /// Summary description for Class1. /// </summary> public class proxy:subject {  public proxy()  {   //   // TODO: Add

《敏捷註冊表》使用說明書1.0版

 敏捷註冊表使用說明書  版本:1.0作者:鄭佐時間:2005-12-04 概述       

用dataset來填充tree

1,<iewc:TreeView id=TreeView1 style="Z-INDEX: 101; LEFT: 152px; POSITION: absolute; TOP: 168px" TreeNodeSrc="categories.aspx" runat="server"> 2,categories.aspx.csprivate void Page_Load(object sender, System.EventArgs e)  {   string

精美的Loading進度條

<html> <head> <SCRIPT type=text/javascript> <!-- var ie5 = (document.all&&document.getElementsByTagName); var step = 0; function setSB(v, el, inforEl, message) { if (ie5 || document.readyState == "complete") { filterEl =

Design Pattern 15-visitor

/*Visitor訪問者模式定義作用於某個對象群中各個對象的操作. 它可以使你在不改變這些對象本身的情況下,定義作用於這些對象的新操作.在Java中,Visitor模式實際上是分離了collection結構中的元素和對這些元素進行操作的行為.為何使用Visitor?Java的Collection(包括Vector和Hashtable)是我們最經常使用的技術,可是Collection好象是個黑色大染缸,本來有各種鮮明類型特徵的對象一旦放入後,再取出時,這些類型就消失了.那麼我們勢必要用If來判斷,

Design Pattern 6-observer

using System;namespace Pattern{ /// <summary> /// Summary description for Class1. /// </summary> public class observer {  public observer()  {   //   // TODO: Add constructor logic here   //  }  internal void update(string

總頁數: 61357 1 .... 21651 21652 21653 21654 21655 .... 61357 Go to: 前往

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.