Monday, September 14, 2009

TPortTerminal 1.0 Alpha

TPortTerminal is an application to communicate with COM ports on Pocket PC. The software has Port Scan option and Port Connection Setting.

PortTerminal screenshot before and after connecting


Download TPortTerminal 25 KB
+VB.Net 2005 Source Code

System Requirement: WinCE 5.0 or later + .Net Compact Framework 2.0

Friday, September 4, 2009

TScopeComponent

This easy to use component can scope your binary data.

Scoping Function:
Scope.Scoping(DataBit As Byte)

Example:
Scope1.Scoping(0)
'Control scopes Zero-Bit

ClearMonitor Function:
This method clears Scope monitor. The function does not have any parameter.

Example:
Scope1.ClearMonitor()

LineColor Property:
By the propery you can get or set Scope plotter pen color.

Example:
MsgBox(CStr(Scope1.LineColor))
'This line shows property value in message box.
Scope1.LineColor = Pens.Yellow
'The line sets Yellow as plotter pen color.

MonitorColor Property:
By the propery you can get or set Scope monitor backcolor.

Example:
MsgBox(CStr(Scope1.MonitorColor))
'This line shows property value in message box.
Scope1.MonitorColor = Color.White
'The line sets White as monitor backcolor.

MonitorImage ReadOnly Property:
By the propery you can only get Scope monitor image.

Example:
Scope1.MonitorImage.Save("C:\Monitor.bmp")
'The line saves monitor image in selected path.


.ZIP = [.DLL + VB.Net 2005 Source]

Can be used on VB.Net and VC# 2005 (or newer version) projects.
To use the control, extract the ZIP file. On extraction folder, drag TScopeComponent.dll file and drop it on Visual Studio ToolBox.