티스토리 툴바


Yet another, nice way to post your source code into your blog if you are using Visual Studio 2008



1. Download attached zip file and extract it under below folder.

2. C:\Documents and Settings\<user>\My Documents\Visual Studio 2008\Addins

3. it should contains 3 files as "CopySourceAsHtml.AddIn/dll/dll.config"

4. use context menu when you drag the code and right click of mouse.


 1640 private void butPause_Click(object sender, System.EventArgs e)

 1641         {

 1642             if (m_bIsPlaying)

 1643             {

 1644                 if (m_bPause)

 1645                 {

 1646                     axMediaPlayBack1.Resume();

 1647                     m_bPause = false;

 1648                     butPause.Text = "Pause";

 1649                     butNextFrame.Enabled = false;

 1650                 }

 1651                 else

 1652                 {

 1653                     axMediaPlayBack1.Pause();

 1654                     m_bPause = true;

 1655                     butPause.Text = "Resume";

 1656                     butNextFrame.Enabled = true;

 1657                 }

 1658             }

 1659             else

 1660             {

 1661                 m_bPause = false;

 1662                 butPause.Enabled = true;

 1663                 butNextFrame.Enabled = false;

 1664             }       

 1665         }

저작자 표시 비영리 변경 금지
Posted by In search of dream 꿈찾아고고씽