烦再指点指点。。。作者: qjwxsd 时间: 2006-3-24 10:36 标题: 再填入一些属性值 Name,ObjectIndex,Type,VisualText 等等.
就能找到了.作者: iov_cp 时间: 2006-12-19 15:57 标题: Answer N years later 如果你有SQABasicRef.pdf的话,请参考begindlg的内容,它是通过dialog调用与之有关的function返回你需要的值
Begin Dialog dialogName [x, y,] dx, dy [, caption$]
[, .dialogfunction ]
... ' dialog box definition statements
End Dialog
Syntax Element Description
dialogName The record name for the dialog box definition.
x, y The coordinates for the upper left corner of the dialog box.
dx, dy The width and height of the dialog box (relative to x and y).
caption$ The title for the dialog box.
.dialogfunction A function to process user actions in the dialog box.
The optional .dialogfunction function must be defined (using the Function
statement) or declared (using Dim) before being used in the Begin Dialog
statement. Define the dialogfunction with the following three arguments:
Function dialogfunction% (id$, action%, suppvalue&)
... 'function body
End Function