Foxpro 子句 access 控件屬性 FUNCTION Format 、Input Mask 屬性 PICTURE Format 、Input Mask 屬性 FONT Font color name size weight italic underline 等屬性 STYLE Font italic underline 等屬性 DEFAULT Default Value ENABLED|DISABLE Enabled RANGE Validation Rule、Validation Text SIZE Left 、top、height、width VILID Before Update、After Update WHEN On enter 、On Got focus
Dim rst As Recordset Dim strSearchName As String Set rst = Me.RecordsetClone strSearchName = " 張三" rst.FindFirst " 姓名= " & strSearchName If rst.NoMatch Then MsgBox " 沒找到" Else Me.Bookmark = rst.Bookmark End If rst.Close