如何能用VBA创建一个Report对象呢? 

Sub testreport()
  
Dim rp As Access.Report
  
  
Set rp = CreateReport
  
With rp
  .Caption 
= "test report"
  
End With
End Sub

 

其中的CreateReport函数就是Access集成的建Report的函数。

Enjoy! 

 

相关文章:

  • 2021-06-28
  • 2022-12-23
  • 2021-05-30
  • 2022-12-23
猜你喜欢
  • 2021-11-07
  • 2022-12-23
  • 2022-12-23
  • 2021-10-20
  • 2022-12-23
  • 2021-07-02
相关资源
相似解决方案