I have the same trouble passing reference variables to a COM object which are VARIANT type.
I posted a topic in the forum "Com support for Windows" but I didn't get the expected answer.
If you get the solution, please post it to the forum.
Search found 10 matches
- Fri May 09, 2003 3:36 pm
- Forum: PHP - Code
- Topic: PHP to COM parameter passing
- Replies: 3
- Views: 582
- Fri May 02, 2003 9:06 am
- Forum: PHP - Code
- Topic: Com support for Windows
- Replies: 4
- Views: 811
- Wed Apr 30, 2003 3:37 pm
- Forum: PHP - Code
- Topic: Session with objects
- Replies: 8
- Views: 1151
- Wed Apr 30, 2003 3:34 pm
- Forum: PHP - Code
- Topic: Com support for Windows
- Replies: 4
- Views: 811
- Wed Apr 30, 2003 2:13 pm
- Forum: PHP - Code
- Topic: Session with objects
- Replies: 8
- Views: 1151
- Wed Apr 30, 2003 1:04 pm
- Forum: PHP - Code
- Topic: Session with objects
- Replies: 8
- Views: 1151
- Wed Apr 30, 2003 9:19 am
- Forum: PHP - Code
- Topic: Session with objects
- Replies: 8
- Views: 1151
- Tue Apr 29, 2003 4:04 pm
- Forum: PHP - Code
- Topic: Com support for Windows
- Replies: 4
- Views: 811
Com support for Windows
I'm using PHP 4.3.2 RC2 and Apache 1.3.7 on Windows NT Workstation 4.0. I want to use some COM objects but I have some problems with those objects that implements an interfase in which it returns another com object. For instance: page1.php <?php $arbitrer = new COM("Arbitrer.1") or die(&qu...
- Tue Apr 29, 2003 3:50 pm
- Forum: PHP - Code
- Topic: Session with objects
- Replies: 8
- Views: 1151
- Tue Apr 29, 2003 3:46 pm
- Forum: PHP - Code
- Topic: Session with objects
- Replies: 8
- Views: 1151
Session with objects
I had experienced some troubbles setting an object in a variable session. I tried to do: page1.php <?php session_start(); $arbitrer = new COM("Arbitrer.1") or die("I can't create Arbitrer"); $rc = $arbitrer->Logon( $_REQUEST ["name"], $_REQUEST ["password"], $...