2010-05-31 13:25 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

+ contrib/hbwin/tests/oletst2.vbs
  + contrib/hbwin/tests/oletst2.js
    + Added vbscript and jscript test code.

  * contrib/hbwin/tests/oletst3.bas
    ! Fixed SVN props.
This commit is contained in:
Viktor Szakats
2010-05-31 11:25:39 +00:00
parent 0b5183a99b
commit 85ede0ab14
3 changed files with 36 additions and 0 deletions

View File

@@ -17,6 +17,14 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-05-31 13:25 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
+ contrib/hbwin/tests/oletst2.vbs
+ contrib/hbwin/tests/oletst2.js
+ Added vbscript and jscript test code.
* contrib/hbwin/tests/oletst3.bas
! Fixed SVN props.
2010-05-31 12:58 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbqt/hbqt.h
* contrib/hbqt/hbqt_hbqtableview.h

View File

@@ -0,0 +1,16 @@
/*
* $Id$
*/
/*
* Copyright 2010 Viktor Szakats (harbour.01 syenar.hu)
* www - http://www.harbour-project.org
*
* See COPYING for licensing terms.
*/
{
var tst2 = new ActiveXObject( "MyOleTimeServer" );
WScript.CreateObject("Wscript.Shell").Popup( ">" + tst2.TIME() + "<" );
}

View File

@@ -0,0 +1,12 @@
'
' $Id$
'
' Copyright 2010 Viktor Szakats (harbour.01 syenar.hu)
' www - http://www.harbour-project.org
'
' See COPYING for licensing terms.
Dim tst2 : Set tst2 = WScript.CreateObject("MyOleTimeServer")
WScript.CreateObject("Wscript.Shell").Popup tst2.Time()