Hi
I'm new to access, so bear with me
I need to move an Excel file on a monthly basis into an Access table
and than create a text file. I created a Macro to TransferSpreadsheet and TransferText commands based on a table.
How is the best way to automate this procedure for user friendly monthly...
Hi
I need to add a variable to the output snapshot file, to be able to print the name with a new 'step#', when the user press the 'snapshot' command button on the form. Never done this before, My code is:
Private Sub PrintPDF_Click()
On Error GoTo Err_PrintPDF_Click
Dim stDocName As...
I need to use the same print button for PDF.
the following is the print button code:
Private Sub Print_Click()
On Error GoTo Err_Print_button_Click
Dim stDocName as String
Dim stLinkCriteria As String
stDocName = "Script"
stLinkCriteria = "[ScriptID]=" &Me![ScriptID1]...
Hello
I need to make 'script#' and "script developer' required fields on script form. I used the following code:
Private Sub Form_Close()
If IsNull(Me.Script#) Or Me!Script# = "" Then
Me!Mes.Caption = "Script# Can Not be Blank"
Me!Script#.SetFocus
valFields = False
If...
Could you, please provide a sample of an OnClick code for a yes/no
field on a form. When I'm trying to sum on my report this 'Verified' field, I get the words 'yes' or 'no', instead of counting, if the Verified Field is checked -it's a Yes, If it's not checked - it's a No. In Table 'Verified'...
Hello
I've got to count a Verified field (yes/no) on a report which have a Funcmodule footer and a Report Footer. I need #Verified and
%Verified ; So my code =Count([Verified]) and =Count[Verified])/([Verified Grand TotalCount])
on both footers. It's not working and I can't...
I need to define a list width for a long text in a combo box, I have 5", but it's still not enough, the text is varying in size,
the column widths is 1",4".
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.