I am attempting to create a “quick filter” popup to display macro buttons to apply filters to a form automatically. I thought of using another form that would be activated by a button press, but would like to use something more simple. I have the dialog made and looking the way I want it to test it out, but am having a problem with actually getting the dialog window to display. I searched for it and understand that the dialog boxes need to be brought up by a macro. I have this copy-paste code set on a button on the main form:
Sub DiagWorkPls
Dim Dlg As Object
DialogLibraries.LoadLibrary("Standard")
Dlg = CreateUnoDialog(DialogLibraries.Standard.Test1)
Dlg.Execute()
Dlg.dispose()
End Sub
This, of course, did not work properly for me, which brings me here. The dialog is held inside the .odb catalog so that may be a cause of the problem, but I don’t know what else could be the problem.
First post on here and very noob Base so I apologize if I didn’t look hard enough and it has already been answered before. Thanks in advance!!