【译文】如何在子窗体或者子报表中调用程序-周芳
Access软件网QQ交流学习群(群号码198465573),欢迎您的加入!
首页 >技术文章> 综合其它


【译文】如何在子窗体或者子报表中调用程序

发表时间:2013/12/10 8:26:39 评论(0) 浏览(5442)  评论 | 加入收藏 | 复制
   
摘 要:如何在子窗体或者子报表中调用程序
正 文:

来自:微软  翻译:周芳

【译文】如何在子窗体或者子报表中调用程序

 

      你可以用两种方式中的一种在与子窗体或者子报表有关联的模块中调用一个过程。如果包含子窗体的窗体在窗体视图中是打开的,您可以参考这个过程作为子窗体上的方法。下面的例子显示了如何调用订单子窗体程序中的GetProductID值,即控制Orders窗体的子窗体:

 

在订单子窗体类模块中,输入此代码:

Public Function GetProductID() As Variant
 ' 返回 productID值.
 GetProductID = ProductID
End Function

 

下面的代码说明了如何调用GetProductID过程。

Forms!Orders![Orders Subform].Form.GetProductID

 

原文:How to: Call Procedures in a Subform or Subreport

 

      You can call a procedure in a module associated with a subform or subreport in one of two ways. If the form containing the subform is open in Form view, you can refer to the procedure as a method on the subform. The following example shows how to call the procedure GetProductID in the orders subform, which is bound to a subform control on the orders form:

 

In the orders Subform class module, enter this code:

Public Function GetProductID() As Variant
 ' Return current productID.
 GetProductID = ProductID
End Function

 

The following code illustrates how to call the GetProductID procedure.

Forms!Orders![Orders Subform].Form.GetProductID

 


Access软件网交流QQ群(群号:198465573)
 
 相关文章
【译文】如何判断当前的记录在窗体里是否是一个新记录  【周芳  2013/10/18】
【译文】如何在保存一个记录前提示用户  【周芳  2013/10/29】
【译文】如何:提示用户在窗体中编辑数据前对数据的有效性确认  【周芳  2013/11/5】
【译文】如何使用自定义条件删除记录  【周芳  2013/11/19】
【译文】如何允许用户为未绑定的组合框添加项目  【周芳  2013/11/26】
常见问答
技术分类
相关资源
文章搜索
关于作者

周芳

文章分类

文章存档

友情链接