############################################################
#                                                          #
#    VDSEVENT.DLL    / bornSoft 2010                      #
#    --------------------------------                      #
#                                                          #
#    This extension gives you the ability to fire your     #
#    own custom events from within your application.       #
#                                                          #
############################################################

Version 1.0.1

Author:  bornSoft


This is an extension DLL for Visual DialogScript.

It adds the functionality to fire custom events from
within a VDS program.

This DLL is Freeware - It is permitted to use it and/or
redistribute it.

This SoftWare is provided "as is" with no warranty at all.
USE IT AT YOUR OWN RISK !

Change-Log:
-----------

1.0.1	- Added a function to return the file version
1.0.0	- Initial version

Usage
------

#DEFINE COMMAND,FireEvent
#DEFINE FUNCTION,FireEvent

  EXTERNEL vdsevent.dll,Freeware

  DIALOG CREATE, ...
  .
  .
  DIALOG SHOW

:EvLoop
  wait Event
  goto @EVENT()

:Label
  if someting TRUE
      FireEvent <EVENT_NAME>
  end
  goto EvLoop

:<EVENT_NAME>
  Do something when <EVENT_NAME> event occurs





