I have a form with several required textboxes/comboboxes. I have the following validation code:
Private Sub Form_BeforeUpdate(Cancel As Integer)
Dim ctl As Control
For Each ctl In Me
If ctl.Tag = "*" Then
If IsNull(ctl) Or ctl = "" Then
MsgBox "You must...
thread703-1551246
My table:
Application, Month, Type, Hours
I have a report that displays a sum of Hours by Month and Type - grouped by applications. Works fine. I need to display the same data in an area chart.
I created a graph using the wizard (placed under the "Application Footer". I used...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.