I'm using a progress bar solution posted by Oldsoftboss: http://www.access-programmers.co.uk/forums/showthread.php?t=130802. The progress bar should indicate progress on a button click event that initiates various queries.
The problem I have is that the progress bar only runs once all the...
I finally figured it out! I found the following sources helpful:
This shows how to keep your form on top of all other open windows. I used method 3 in the Form Open Event: on vbforums.com - showthread.php?352702-Classic-VB-How-do-i-keep-a-form-on-top-of-others.
This shows how to completely...
Thanks for the reply. I have tried Set Focus and still get the same result. The form pops up automatically when the database is opened - I have tried the AutoExec method and also by selecting it as start-up form in database options.
I am trying to achieve opening a form while hiding the main database window (by default). I've got it to work but the form (Pop Up) always opens behind any other non-related windows that are currently open, e.g. when opening the DB from a network folder, the pop-up form sits behind the network...
How great is a night in the pub for the brain! I finally got it working, thanks for your help with this. I found though that putting the field on the report didn't work, I had to put a field on the form where my button is located instead.
Paul - we're so close I can almost smell it! But now it's giving me "Compile Error: Method or data member not found" and highlights the first instance of Me.DocSetName in the path. I've checked my query and the DocSetName field is there and it has the data in it that I expect to see. I think...
Hi Paul
Thanks for your response. I have tried your suggestion but I think I'm making an error. This is what I have now after your input. Am I missing something?
Private Sub Command6_Click()
DoCmd.OutputTo acOutputReport, "RepQryCustName", "PDFFormat(*.pdf)"...
I'm pretty sure it applies to users as well - I've used it in a couple of databases I've deployed and never had anyone come back with questions about warning messages. Though I'm sure the above response will provide a failsafe.
Not sure if I understand you correctly. Are you looking to turn off the warning message you get before something is updated/appended? If so you could go to Access Options > Client Settings > Confirm and untick the boxes.
I have searched extensively for a solution but have not come across anything that explicitly refers to my issue and so I've not been able to resolve thus far.
I have a query that is filtered through a selection on a combo box and the result populates a report. This works perfectly.
I have a...