The platform that enables you to build rich, interactive communities
in
All Tags » VB6 (RSS)

Browse by Tags

  • Scripts IIS Virtual Directory

    Here is a handy scripts that I wrote to set up virutal directory. It accepts one parameter to run the script. The script basically stops “Default Web Site”, creates “Receiver” as its virtual directory under “Default Web Site”, and finally starts the “Default Web Site”. @echo off rem USAGE: PLWSC.BAT...
    Posted to snowcounty (Weblog) by rliang on 06-19-2006
  • Remote SMTP

    A very nice little program that you can use to send emails. The only thing you need is that remote SMTP server name, your username and password on the server. Don’t mess up the email, you can always be traced if you abuse your recipient. < %@LANGUAGE="VBSCRIPT" CODEPAGE="1252"...
    Posted to snowcounty (Weblog) by rliang on 05-30-2006
  • Cross Boundary Debug

    Debugging is an important skill in software development. Developers used to debug in one run time environment, such as within Visual Studio for C++/C# or Visual Cafe/Forte for Java. How about cross boundary debugging? There can be many interpretations on cross boundary debugging, cross language, cross...
    Posted to snowcounty (Weblog) by rliang on 01-27-2006
  • Working with FileStream

    Open to read a document, readers see the words, characters. It essentially bits or byts on the machine level. How to write a document into bytes and read bytes into documents is actually easy with the helps of .NET library. Here is an example with SA Office Writer. There is a word template, open the...
    Posted to snowcounty (Weblog) by rliang on 01-24-2006
  • Singleton Pattern

    Singleton Pattern ensures a class has only one instance, and provides a global point of access to it. It is different from global variable. Objects might be created once the application starts. It may ends up the application does not use the object. It is a waste of system resources. With Singleton Pattern...
    Posted to snowcounty (Weblog) by rliang on 01-18-2006
Page 1 of 1 (5 items)