リンク: WindowsDevCenter.com: Enhancing Skype. Enhancing Skype by Wei-Meng Lee   In my last article, I showed you how to set up Skype to make voice calls over the Internet. While Skype allows voice communication, it is not limited to just that. Several third-party developers have started developing extensions using Skype APIs. In this article, I… Read More


リンク: プロセス・スレッド編. Q VBのアプリケーションの戻り値によってバッチファイルで分岐するには? MS-DOSで作成したアプリケーションでは、終了時に終了コードを指定すれば、バッチファイルの ERRORLEVEL によってプログラムを分岐できましたが、VBのアプリケーションの戻り値によってバッチファイルを分岐させる事はできるのでしょうか? A ファイル経由で分岐できます。 まず、VBから ERRORLEVEL の設定はすることができません。そこで他の方法を考えると、バッチファイルの IF 文で使用できるのは環境変数か、ファイルの存在のチェックだけです。簡単な方法としては、ファイルを VBで作成して、それを IF 文で判別させるのが良いと思います。 例として、3つのボタン配列を作成して、押されたボタンによってバッチファイルを分岐させてみましょう。 まづ、VB側のプログラムです。 Private Sub Command1_Click(Index As Integer) On Error Resume Next Kill “C:\TEMP.TMP” Kill “C:\TEMP\1.TMP” Kill “C:\TEMP\2.TMP” Open “C:\TEMP\” & Format$(Index, “0″) & “.TMP” For Output As #1 Close #1 End End Sub 見ても分かるように、まず Kill で以前に作られたファイルを削除してから、 Index に渡された値によって、”C:\TEMP.TMP”、”C:\TEMP\1.TMP”、”C:\TEMP\2.TMP”… Read More


Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!… Read More