Search results

  1. IMO

    TransferSpreadsheet Question

    Thanks for the reply. Problem is, these are not my spreadsheets and the company refuses to change sheet names etc. When you say "using automation from access", what do you mean? IMO
  2. IMO

    TransferSpreadsheet Question

    I'm using the following code to transfer a table to an existing excel spreadsheet DoCmd.TransferSpreadsheet acExport, 8, "Shipping Details", "H:\BIDataLoad\Supplier Orders.xls", True, "Shipping Details" The problem I'm having is, it creates a sheet called Shippiing_Details not Shipping...
  3. IMO

    Problem with password on Report

    Here's a great example from Candace L. Tripp IMO
  4. IMO

    Problem with password on Report

    Private Sub Report_Open(Cancel As Integer) If InputBox("Enter Password", "Password Required") <> "4062" Then MsgBox "Access denied" DoCmd.CancelEvent End If End Sub IMO
  5. IMO

    Switchboard

    What sort of effects are you looking for? IMO
  6. IMO

    Linked Excel Spreadsheet problem

    Thanks Pat, I thought as much. :) IMO
  7. IMO

    See who's logged in to any Db from my computer

    Oh well, it was worth a try :) IMO
  8. IMO

    Can I disappear my DB to the system tray...? Please?

    Fuga, This code hides the Access Window and removes the DB from the TaskBar. You must have your forms set as PopUp = Yes and Modal = Yes. Option Compare Database Option Explicit Global Const SW_HIDE = 0 Global Const SW_SHOWNORMAL = 1 Global Const SW_SHOWMINIMIZED = 2 Global Const...
  9. IMO

    See who's logged in to any Db from my computer

    I knew I'd seen what you are looking for, and I've found it again. IMO
  10. IMO

    See who's logged in to any Db from my computer

    3rd Zip IMO
  11. IMO

    See who's logged in to any Db from my computer

    2nd Zip IMO
  12. IMO

    See who's logged in to any Db from my computer

    :o Helps if I post them!! IMO
  13. IMO

    See who's logged in to any Db from my computer

    Col, I don't know if this is what you're looking for. Written by Mark Davis. IMO
  14. IMO

    Linked Excel Spreadsheet problem

    I have an Excel Spreadsheet linked to my DB and need to delete certain rows from within my DB, but I'm getting a 'Deleting data in linked tables is not supported by this ISAM' error. Is there a way to delete from the linked spreadsheet or am I going to have to restructure the DB to Import the...
  15. IMO

    How to calculate days?

    You can put the code in the LostFocus event of the StartDate and EndDate controls aswell as the OnCurrent. IMO
  16. IMO

    Reference library needed...

    Try this... Private Sub CmdEmail_Click() Dim EmailApp, NameSpace, EmailSend As Object Set EmailApp = CreateObject("Outlook.Application") Set NameSpace = EmailApp.getNameSpace("MAPI") Set EmailSend = EmailApp.CreateItem(0) EmailSend.To = "Email...
  17. IMO

    open whith Access a protect file

    You're welcome IMO
  18. IMO

    Change Colour if meets a condition

    You can place the same code in the Forms OnCurrent event and in the Subforms OnCurrent event, but, the Subforms Default View cannot be set to Datasheet or it will not work. IMO
  19. IMO

    Change Colour if meets a condition

    You're welcome IMO
  20. IMO

    Change Colour if meets a condition

    My second post should do the trick IMO
Back
Top Bottom