Can you "customize" the new access ribbon using a .adp file? I have an existing 2000 .apd file we are using and want to update it with the 2007 version. It contains custom commandbars and shortcut menus. Is this possible?
Thanks much
I have created a custom menubar for an application that I will be using in the near future. I need to pass the Tag Property of the commandbar button to a form I created to print various reports. How can I accomplish this?????
If have created the following code the populate a treeview control:
Private Sub Form_Load()
Dim db As Database
Dim rst As Recordset
Dim rstchild As Recordset
Dim objnode As Object
Dim strKey As String
Dim strparent As String
Set db = CurrentDb
Set rst = db.OpenRecordset("tblDept")...
I have the following funtion:
Function Color()
On Error Resume Next
Dim ctl As Control
Set ctl = Me.ActiveControl
If ctl.BackColor = 16777215 Then
ctl.BackColor = 14211021
Else
ctl.BackColor = 16777215
End If
End Function
The event is fired on the GotFocus and...
I am using an .adp...
I have a two forms
#1 RFQ with a subform to add RFQ details
#2 Purchase Order with a subform to add PO Details
I have a command button on the RFQ form to create a PO from the RFQ. I got the RFQ information to the PO, but I am have trouble with adding the RFQ details to...
If have a procedure that searches for duplicate records...
Private Sub_BeforeUpdate(Cancel as Integer)
Dim rst As Recordset
Set rst = CurrentDb.OpenRecordset("PurchaseOrders", dbOpenTable)
rst.index = "PrimaryKey"
rst.Seek "=", Me!PurchaseOrderNumber
If Not...
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.