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!

Recent content by OzzieTheOwl

  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

Part and Inventory Search

Back
Top