Search results

  1. JPaulo

    Open another database .accdr

    Can anyone help?
  2. JPaulo

    Open another database .accdr

    This cod does not work to open .accdr Sub OpenDB() Dim MinhaPassword As Variant MinhaPassword = "xpto" strDbName = "c:\SeuBanco.accdr" Set objaccess = New Access.Application Set db = objaccess.DBEngine.OpenDatabase(strDbName, False, False, ";PWD=" & MinhaPassword) objaccess.OpenCurrentDatabase...
  3. JPaulo

    Open another database .accdr

    Hi all; vba code, accdb how to open another database .accdr with password ?
  4. JPaulo

    Lists of ActiveX for Access 2007

    Thanks to all the opinions. For Access 2000, Microsoft released a list, I just want to know if there was also for 2007. http://support.microsoft.com/kb/208283
  5. JPaulo

    Lists of ActiveX for Access 2007

    Hi Boyd; I need a list of all ActiveX controls related with Access 2007.
  6. JPaulo

    Word Reserved

    Thanks for the help Bob, I do not know that was word reserved Local.
  7. JPaulo

    Word Reserved

    Because I was using in code Dim local As String and gave error. But I found ... local object A table, query, form, report, macro or module that remains in the replica when it is created. Neither the object nor the changes to the object are distributed to other members in the replica set...
  8. JPaulo

    Lists of ActiveX for Access 2007

    Hi all; Where can I find a lists of ActiveX controls for Access 2007
  9. JPaulo

    Word Reserved

    Hi all; Why is the word "Local" is reserved for Ms Access ?
  10. JPaulo

    Insert data another book if

    Thanks you all; Resolved: In module; Public Const columnConselho = 7 'By JPaulo Janeiro 2010 Public Function getColNumber(ByVal strCell As String) As String Dim charC As Integer charC = InStrRev(strCell, "C") getColNumber = Mid$(strCell, charC + 1) End Function Public Function...
  11. JPaulo

    Help with a Form

    Thanks for replay. There is nothing special, see the structure. Please, delete the report and module that do not belong to this example, sorry.
  12. JPaulo

    Insert data another book if

    Hi all; I have BookGeral and 4 more books, BookA, BookB, BookC and BookD If I digit in BookGeral cell A1 = "A" automatic insert data in livroA If I digit in BookGeral cell A1 = "B", automatic insert data in livroBAll books are in the same folder C: \ Test Help me please
  13. JPaulo

    Help with a Form

    See in attc;
  14. JPaulo

    Help with a Form

    See in attc;
  15. JPaulo

    Text to Date

    Sorry Brian and calm; I thought that the data came from individual fields, was I wrong to read.
  16. JPaulo

    Text to Date

    Or; MyDate: CDate(Mid([YouField];2;2) & "/" & Mid([YouField];4;2) & "/" & Right([YouField];2))
  17. JPaulo

    Help with a Form

    Hi friend; See sample in attc;
  18. JPaulo

    the control or subform control is too large for this location

    Two equal posts http://www.access-programmers.co.uk/forums/showthread.php?t=185977 I think that is resolved
  19. JPaulo

    A menu in a form ?

    Hi Mr.Access See this example in the form menu;
  20. JPaulo

    Update FrontEnd

    Hi all; New BackEnd is on the network folder. How to update 8 frontend`s ?
Back
Top Bottom