ProcessExplorer

Posted on January 28th, 2014

2.Process Explorer is an advanced process management utility that picks up where Task Manager leaves off. [Cut from Help]
3.I use it to check the IO read/write, you can add from "Menu | View | Select columns | Process I/O tab | Read/Write"


VB6

Posted on January 25th, 2014

[Code]
' Contents of class BaseClass
Public Sub BaseMethod()
End Sub
' Contents of class DerivedClass
Implements BaseClass
Private Sub BaseClass_BaseMethod()
End Sub
[Tools]
C:\Program Files\Microsoft Visual Studio\Common\Tools\Winapi
2.RC compile
C:\Program Files\Microsoft Visual Studio\Common\MSDev98\Bin
rc /i "C:\Program Files\Microsoft Visual Studio\VC98\MFC\Include" /i "C:\Program Files\Microsoft Visual Studio\VC98\Include" PowerCycle.rc





Firefox

Posted on January 17th, 2014

1.Flash crash : Download the uninstall app, and uninstall the flash plugin.

[Plugin]



Tera term script

Posted on January 17th, 2014

1.New line to logfile logwrite #13#10
Example: Get system and write to log file
while i > 0
i = i - 1
gettime STR_TIME "[System time] : %Y%m%d-%H%M%S"
logwrite STR_TIME
logwrite #13#10
pause 10
endwhile

[Reference]


Sample code

Posted on January 16th, 2014

[API]
1.http://archive.msdn.microsoft.com/shellintegration


Tools

Posted on January 16th, 2014

[MFC]
1.SendMessage/PostMessage http://code.google.com/p/sendmessage/