|
Creates a Purchase Invoice object. |
|
|
IPInvce* CreatePInvce ( VARIANT_BOOL bCanChange ) |
|
|
Parameters | bCanChange | [in] True if you want to make changes (perform inserts, updates or deletes) to the object you are creating, otherwise false. | | Return value |
A pointer to a Purchase Invoice object interface. | | Remarks |
| How to explicitly destroy this object? |
|
| C++ |
| pPInvce = NULL |
| The object is destroyed immediately. |
| C# |
| System.Runtime.InteropServices.Marshal.ReleaseComObject(oPInvce) |
| oPInvce = null |
| By assigning the object to null the object is released (the reference count is decremented) but not destroyed. The garbage collector decides when the object is actually destroyed. Adding the ReleaseComObject-statement speeds up the actual destruction of the object. |
| VBS |
| Set oPInvce = Nothing |
| The object is destroyed immediately. |
| VBN |
| System.Runtime.InteropServices.Marshal.ReleaseComObject(oPInvce) |
| oPInvce = Nothing |
| By assigning the object to Nothing the object is released (the reference count is decremented) but not destroyed. The garbage collector decides when the object is actually destroyed. Adding the ReleaseComObject-statement speeds up the actual destruction of the object. |
|
|
|
See Also |
|
|
|
Samples |
|
|
C++ |
|
IPInvcePtr pPInvce = pYear->CreatePInvce (VARIANT_TRUE);
|
|
|
C# |
|
PInvce oPInvce = oYear.CreatePInvce (true);
|
|
|
VBS |
|
Dim oPInvce
Set oPInvce = oYear.CreatePInvce(True)
|
|
|
VB.NET |
|
Dim oPInvce As ClSdk.PInvce
oPInvce = oYear.CreatePInvce(True)
|
|