cvs: phpdoc-nl /reference/com/functions class.com.xml class.variant.xml
[email protected] ("Patric Stout")
| Newsgroups | php.doc.nl |
|---|---|
| Message-ID | <cvstruelight1065696578@cvsserver> |
truelight Thu Oct 9 06:49:38 2003 EDT
Modified files:
/phpdoc-nl/reference/com/functions class.variant.xml class.com.xml
Log:
Sync with EN
Index: phpdoc-nl/reference/com/functions/class.variant.xml
diff -u phpdoc-nl/reference/com/functions/class.variant.xml:1.1 phpdoc-nl/reference/com/functions/class.variant.xml:1.2
--- phpdoc-nl/reference/com/functions/class.variant.xml:1.1 Wed Aug 14 05:37:40 2002
+++ phpdoc-nl/reference/com/functions/class.variant.xml Thu Oct 9 06:49:38 2003
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- EN-Revision: 1.2 Maintainer: truelight Status: ready -->
-<!-- splitted from ./en/functions/com.xml, last change in rev 1.7 -->
+<!-- EN-Revision: 1.3 Maintainer: truelight Status: ready -->
<refentry id="class.variant">
<refnamediv>
<refname>VARIANT</refname>
@@ -46,7 +45,7 @@
Deze waardes mag je niet combineren, maar ze kunnen wel gecombineerd worden met
<constant>VT_BYREF</constant> om aan te geven dat ze een waarde zijn.
Als <parameter>type</parameter> weg gelaten wordt, dan wordt het type van <parameter>value</parameter>
- gebruikt. Raadpleeg de msdn bibliotheek voor meer informatie.
+ gebruikt. Raadpleeg de <acronym>MSDN</acronym> bibliotheek voor meer informatie.
</simpara>
</listitem>
</varlistentry>
Index: phpdoc-nl/reference/com/functions/class.com.xml
diff -u phpdoc-nl/reference/com/functions/class.com.xml:1.1 phpdoc-nl/reference/com/functions/class.com.xml:1.2
--- phpdoc-nl/reference/com/functions/class.com.xml:1.1 Wed Aug 14 05:37:40 2002
+++ phpdoc-nl/reference/com/functions/class.com.xml Thu Oct 9 06:49:38 2003
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- EN-Revision: 1.2 Maintainer: truelight Status: ready -->
-<!-- splitted from ./en/functions/com.xml, last change in rev 1.12 -->
+<!-- EN-Revision: 1.3 Maintainer: truelight Status: ready -->
<refentry id="class.com">
<refnamediv>
<refname>COM</refname>
@@ -64,6 +63,7 @@
<title>COM voorbeeld (1)</title>
<programlisting role="php">
<![CDATA[
+<?php
// start Word op
$word = new COM("word.application") or die("Kon Word niet starten");
print "Word versie {$word->Version} geladen\n";
@@ -84,6 +84,7 @@
// Geeft het object vrij
$word->Release();
$word = null;
+?>
]]>
</programlisting>
</example>
@@ -93,6 +94,7 @@
<title>COM voorbeeld (2)</title>
<programlisting role="php">
<![CDATA[
+<?php
$conn = new COM("ADODB.Connection") or die("Kan ADO niet starten");
$conn->Open("Provider=SQLOLEDB; Data Source=localhost;
Initial Catalog=database; User ID=user; Password=password");
@@ -127,6 +129,7 @@
$rs = null;
$conn = null;
+?>
]]>
</programlisting>
</example>