Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. OzzieTheOwl

    ComboBox ListFill Range in Excel 2000

    Hi I have written the following vba in Excel 2000, to fill a ComboBox ListFillRange. ActiveSheet.Shapes("ComboBox1").ControlFormat.ListFillRange = "Control!$B$2:$B$" & ControlEndB I am getting the error message Can some enlighten me as to what I am doing wrong? Cheers Barney
  2. OzzieTheOwl

    BOXI Export to Repository Issue

    Thanks Steve. Got IT Department to sort it out. You help was great to point them in the right direction. Have a star on me. Cheers Barney
  3. OzzieTheOwl

    BOXI Export to Repository Issue

    Hi. Just had BOXI Enterprise Installed by the IT Department. I was previously using v6.5. When I click on the Export to Repository, or Import From Repository Button, nothing happens. The PC seems to think about it for a second, then does nothing. Is this something to do with the install, or...
  4. OzzieTheOwl

    Routine Only opens every other file in Excel

    PHV Thanks mate, helpful as ever. I thought it must be something simple I had missed. Cheers Barney
  5. OzzieTheOwl

    Routine Only opens every other file in Excel

    Hi I have the following code which is supposed to open up every Excel file in a directory, but it only appears to open up every other file. Can anyone see what I have done wrong? Dim myFiles myFiles = Dir("\\bbuukvirfnp0001\scm\logistics\Costing data\Stock Values " & YearNo & "\Week...
  6. OzzieTheOwl

    Access 2003 / 2000 object references

    Hi I had a similar issue, I solved it by copying the Office 9 DLL onto the machine, then setting the reference to Office 9 rather than Office 11, but only for that project. Still works fine. And does not default back to 11. Cheers Barney
  7. OzzieTheOwl

    Problem looping through PowerPoint Slides

    Just a thought, may be being too simplistic. But are the references the same on all machines? Barney
  8. OzzieTheOwl

    Command Bar, Whats Wrong?

    Thanks PHV Much tidier solution. Have a star Cheers Barney
  9. OzzieTheOwl

    Command Bar, Whats Wrong?

    Hi I have the following code that should be putting a command button into a command bar. Private Sub Workbook_Open() Set cbrGraphs = Application.CommandBars.Add cbrGraphs.Name = "Graph Buttons" cbrGraphs.Position = msoBarTop With cbrGraphsControls Set cbcCreateGraphs =...
  10. OzzieTheOwl

    Using Loop To Create Multiple Recipients of Email (Excel)

    PHV Thank you very much, worked perfectly. Have a star on me. Cheers Barney
  11. OzzieTheOwl

    Using Loop To Create Multiple Recipients of Email (Excel)

    Hi I am trying to send an email to multiple recipients, the number of recipients could vary each time the macro is run. I have created a loop to get the names, but Outlook doesn't seem to like the multiple names, can anyone help me out? Current Code Below For EmailLoop = 3 To...
  12. OzzieTheOwl

    Activate Access After sending Email

    Thanks for our help guys. I have solved my own problem. I used AppActivate ("DB Name") And it works perfectly. Cheers Barney
  13. OzzieTheOwl

    Activate Access After sending Email

    bubba100 Thanks for the response. I have tried that but it still keeps the focus on Outlook, I could be wrong, but I think it may be something to do with Outlook Securtity Warning Message which take the focus away from Access to Outlook.
  14. OzzieTheOwl

    Activate Access After sending Email

    Current Code As requested Private Sub cmdEmailDriver_Click() Dim o As Outlook.Application Dim mail As mailitem Dim txtDriverPhoneE As String Dim txtAssetRegE As String Dim txtServiceTypeE As String Dim txtGarageE As String Dim txtServiceDateE As String...
  15. OzzieTheOwl

    Activate Access After sending Email

    I have a routine which sends an email from a form, the problem is that once the email has been sent the focus is still on Outlook, does anyone know how to make the Access DB the focus again? Thanks in Advance Barney
  16. OzzieTheOwl

    Save method in Excel not working

    I had this problem on a project I was working on, it turned out to be that the module was still there even though the VBA Code had gone, I think I got round it by copying the relevant worksheets to a new (blank) workbook, then saving the new workbook. Hope this helps Barney
  17. OzzieTheOwl

    Find Record Code Not Working

    PHV Once again you have come up with the goods. Have another star on me Thanks once again. Barney
  18. OzzieTheOwl

    Find Record Code Not Working

    Hi I have the following code, which is supposed to find and navigate to a record on a form, from an entry made in a textbox in the form. The field searched could either be a number or text entry, so I have made the field a text field. I am using Access 97 if that makes any difference. Private...
  19. OzzieTheOwl

    Query to return Data based on Max Date Entry

    PHV Thank you. I am using Access 97, sorry I should have stated that at the start. What you suggested has worked perfectly. Have a Star on me. Thanks Barney
  20. OzzieTheOwl

    Query to return Data based on Max Date Entry

    Hi PHV - When I put that SQL Code in, I get the following error Syntax error in From Clause And the second SELECT is highlighted. I had to modify the code to account for different field names, so the SQL I tried is below. SELECT A.Reg,A.Txn_Dt,A.Mile FROM tblFuelArchive AS A INNER JOIN (...

Part and Inventory Search

Back
Top