【译文】如何判断当前的记录在窗体里是否是一个新记录-周芳
Access软件网QQ交流学习群(群号码198465573),欢迎您的加入!
首页 >技术文章> 综合其它


【译文】如何判断当前的记录在窗体里是否是一个新记录

发表时间:2013/10/18 13:17:05 评论(0) 浏览(7282)  评论 | 加入收藏 | 复制
   
摘 要:如何判断当前的记录在窗体里是否是一个新记录
正 文:

来自:微软  翻译:周芳

【译文】如何判断当前的记录在窗体里是否是一个新记录

 

      下面的例子展示了如何使用NewRecord属性来确定当前的记录是一个新的记录。把NewRecordMark程序集的当前记录赋值到变量intnewrec。 如果记录是新的,就发一个消息通知用户。你可以把这个过程当写在窗体的当前事件中。


VBA代码:

Sub NewRecordMark(frm As Form)
    Dim intnewrec As Integer
 
    intnewrec = frm.NewRecord
    If intnewrec = True Then
    MsgBox "一条新纪录" _
        & "@你想增加一条新纪录吗?" _
        & "@如果不要,移到现有记录"
    End If
End Sub


原文:How to: Determine Whether The Current Record is a New Record In a Form

 

      The following example shows how to use the NewRecord property to determine if the current record is a new record. The NewRecordMark procedure sets the current record to the variable intnewrec. If the record is new, a message notifies the user. You could call this procedure when the Current event for a form occurs.


VBA
Sub NewRecordMark(frm As Form)
    Dim intnewrec As Integer
 
    intnewrec = frm.NewRecord
    If intnewrec = True Then
    MsgBox "You're in a new record." _
        & "@Do you want to add new data?" _
        & "@If not, move to an existing record."
    End If

End Su

 


Access软件网交流QQ群(群号:198465573)
 
 相关文章
【译文】如何防止在窗体上移动时意外清除数据  【周芳  2013/7/30】
【译文】当用户删除一条记录时,显示一个自定义的对话框  【周芳  2013/8/13】
【译文】如何为一个组合框或列表框添加全选按钮  【周芳  2013/8/27】
【译文】如何从一个表中指定一个控件的值  【周芳  2013/9/3】
【译文】如果主窗体不包含记录,如何隐藏它的子窗体  【周芳  2013/9/10】
常见问答
技术分类
相关资源
文章搜索
关于作者

周芳

文章分类

文章存档

友情链接