Re: [PHP-WIN] use VB DLL (COM object) with php

2002-08-27 Thread Luis Ferro
The ScriptingContext may only exist in Visual Studio languages as it is a very special way to program in the IIS with VB (and a way that i can't recommend at all due to speed, readability and portability problems). I personnaly would place all the business logic inside the VB Component and wou

[PHP-WIN] use VB DLL (COM object) with php

2002-08-27 Thread Franky
I try to use a simple COM write in VB ... == Option Explicit Dim sc As ScriptingContext Sub OnStartPage(AspSC As ScriptingContext) Set sc = AspSC End Sub Public Function ecrire() sc.Response.Write "Voici mon super texte" End Functio