Header image San Francisco, California
USA

Developer Components

Downloads

validated email address and acceptance of download agreement required

Windows Script Host Repository and Demo A library of functions rolled into a single demo file, organized into the following categories:
  • argument definition and parsing
  • ascii file i/o
  • code importing
  • data conversion & formatting
  • dos command interface
  • email i/o
  • environment variables support
  • file manipulation
  • network support
  • printer support
  • process control
  • results logging
  • shortcut support
  • sql database support
  • string helpers
  • system information.
  • test functions
  • user i/o
  • windows registry i/o
  • xml file support
Written mostly in javascript, and a little vbscript.
Compatible with Windows Script Host 5.6 and better.
Comm Port Streams

Written in C++, provides framework so applications use standard C/C++ io streams for communication, regardless of the type of connection.

Ever seen code like this (all over the place):

if (commType == TCPIP) {
    // ...
} else if (commType == SSL) {
    // ...
}

Well, with the comm port streams, it looks like this:

commStream << message; // transmit message
commStream >> reply;   // receive reply.

Application code does not need to change when new communication types are defined, except in one place where the decision is made what kind of comm stream to create. And, since its the same interface for console IO, and file IO, ... it makes it easy to use the keyboard to provide messages, and/or view messages on the console, or create files of test messages, or log communications to files, etc., all without changing anything in the application.

Download provides base class, test app, and implementations for:

  • RS232 serial
  • TCP/IP
Coming Next:
  • SSL

 

Static content updated 2007-05-31 Copyright 2007 - robcole.com - all rights reserved. Dynamic content updated 05:40:25 PM