Search results

  1. X

    (vba) edit module n macro in different access db

    its working now :) thank
  2. X

    (vba) edit module n macro in different access db

    Thank Simon, will try it!
  3. X

    Mass Fax from Queries

    you need to define the SendFax function. copy it somewhere :D Public Function SendFax(ByVal strFaxNumber As String, _ ByVal strReport As String, _ Optional ByVal strName As String, _ Optional ByVal fLocal As Boolean = False, _...
  4. X

    Making a back up of a database

    you need "the copy" function there in order to make the backup. but you can delete the file afterward.
  5. X

    AfterUpdate - popup a text box

    basically it is the same so you put the after_update code in your payment section and associate the name.
  6. X

    Making a back up of a database

    just remove the popup code: Dim dbPath As String Dim OldDbName As String Dim NewDbName As String Dim DbBackup As String Dim Response As Integer Dim fs As Object dbPath = Application.CurrentProject.path OldDbName = "OldDatabaseName.mdb" NewDbName = "BackUp" & "_" & Format(Date, "yyddmm") &...
  7. X

    (vba) edit module n macro in different access db

    Thank Simon, but how about if the file is really big? i mean if its exceeding the string max value?
  8. X

    (vba) edit module n macro in different access db

    Hi there again! hows ur weekend? :D i got error in it " type mismatch " in Set XL = GetObject("C:\WorkbookName.xls")
  9. X

    (vba) edit module n macro in different access db

    thank! i will try it and for sure will get back to you! :D
  10. X

    Multi Select Listbox

    Hi just wrote the code for you, hope its working: assuming the name of listbox is list0 the name of table is tablename the name of fieldname is fieldname Dim ValueToBeAdded As String Dim varItem As Variant ValueToBeAdded = "" For Each varItem In Me![List0].ItemsSelected...
  11. X

    (vba) edit module n macro in different access db

    ok i will use msword for now. thank!! hmm another question, can i do this also for excel file instead of access?
  12. X

    (vba) edit module n macro in different access db

    ouch thank! thats hit me on the head :D another question, right now i use MSWORD to find and replace in txt file. do you know the better way to do it?
  13. X

    (vba) edit module n macro in different access db

    how can i delete the macro in other db?
  14. X

    AfterUpdate - popup a text box

    just make label/ textbox next to combo box. after update of combo box copy this code Private Sub Combo0_AfterUpdate() Label2.Visible = True End Sub and in open form: Private Sub Form_Open(Cancel As Integer) Label2.Visible = False End Sub
  15. X

    (vba) edit module n macro in different access db

    Thank for the tips. Do you know if i can use Application.SaveAsText and Application.LoadFromText from other database? like Set msACC = GetObject(dbname) mcACC.LoadFromText ? or mcACC.SaveAsText ?
  16. X

    Textbox help

    Glad i can help :D
  17. X

    Open / edit excel macro in vba

    because i have lots of excel documents, and need to go manually to each file to change some "string". right now im be able to manipulate table, module and query in access, thats why i want to integrate this functionality (editing macro) from excel file.
  18. X

    Open / edit excel macro in vba

    im trying to Open excel macro in vba to perform find and replace function in access. any idea if this is possible? Thank!
  19. X

    Textbox help

    you can try [Forms]![MyForm]![TextBox1].Value = "MyText”
  20. X

    (vba) edit module n macro in different access db

    Thank you! indeed it lead me to right direction, the find and replacing module is working now. do you know if i can apply the same method to macro?
Back
Top Bottom