新しいREAD PICTURE FILEコマンド
日付 | 2001/03/16 |
---|---|
ID | 01-543 |
バージョン | v6.7 specific |
プラットフォーム | Windows and Mac |
バージョン6.7から始めて、4Dは、READ PICTURE FILEと命名される新しい統合コマンドを持っています。このコマンドは、あなたがピクチャファイルを読むことを可能にし、ACI PackコマンドAP_Readピクチャファイルを交換します。
バージョン6.0および6.5では、次のコードを書かなければならないでしょう:
C_PICTURE($MyPicture)
`Displays an open file dialog to select the picture
$PictRef:=Open document("")
If (OK=1)
`Document system variable contains the complete path to the picture
CLOSE DOCUMENT($PictRef)
CREATE RECORD([MyTable])
$Err:=AP Read Picture File(Document;$MyPicture)
[MyTable]MyField:=$MyPicture
SAVE RECORD([MyTable])
End if
バージョン6.7では、同じ特徴が次のコードの使用により達成されます:
C_PICTURE($MyPicture)
CREATE RECORD([MyTable])
READ PICTURE FILE("";$MyPicture)
[MyTable]MyField:=$MyPicture
SAVE RECORD([MyTable])
注:既存のデータベース中のコード修正を強要することを回避するために、コマンドAP_Read Picture Fileは、バージョン6.7.1においてプラグインの4Dパックに戻されました。より詳細では4D v6.7.1追加を見ます。