コード例 #1
0
ファイル: history.cs プロジェクト: wolewd/Windows-Server-2003
        private static void _test_string(HistoryDialog hd)
        {
            String s = "This is a long message.";

            for (int i = 0; i < 100; i++)
            {
                hd.AddMessage(s);
            }
        }
コード例 #2
0
 // Update the text located in the history buffer with ``message''.
 private void _history(String message)
 {
     Trace.WriteLine(message);
     m_history.AddMessage(message);
 }