Recent content by Capitala

  1. C

    activeX component can't create object

    Dear Great arnelgp, It's working perfect. How about editing the database. How to edit the current record in the MDB file. Thaaaaaaaaaaaaaaaanks in advance
  2. C

    activeX component can't create object

    Thanks a mile my dear. I'll work on.
  3. C

    activeX component can't create object

    thanks for your fruitful reply; How about the index and search Previously I was using the code: rst.index = "index name" rst.seek "=", "anything" if not rst.nomatch then How such code will be. Sorry for any inconvenience
  4. C

    activeX component can't create object

    Kindly note that I'm using Word 2016 not 2013. I've already tried this solution, but still the same issue. Thanks
  5. C

    activeX component can't create object

    Good day! I'm writing the following code in Word 2013 VB to connect to MDB database dim db as database dim rst as recordset set db="db path" set rst= db.openrecordset("Table Name") In this stage I'm getting the error message :run-time error '4029' activex component can't create object" I...
  6. C

    Removing (File) tab from Ribbon & removing database title

    Thanks for your kind support
  7. C

    Removing (File) tab from Ribbon & removing database title

    Thanks. I'll try it and update your goodselves.
  8. C

    Removing (File) tab from Ribbon & removing database title

    Good evening all! I use the following Ribbon XML code in a UsysRibbon table. I got it from these forums. I need to remove the (File) menu and also to remove the title that appears at the top of the database (which displays the file name and path). Thanks in advance <customUI...
  9. C

    Custom filter (acCmdFilterMenu)

    I'll try your kind suggestions. Many thanks
  10. C

    Custom filter (acCmdFilterMenu)

    this: DoCmd.RunCommand acCmdFilterMenu is a part of the function (Filterform) this recalls the standard filter that's found just on the right top corner of a field. I think the idea will be clear only when you have a look on the database
  11. C

    Custom filter (acCmdFilterMenu)

    Thanks for your prompt reply. An image attached.
  12. C

    Custom filter (acCmdFilterMenu)

    Attached a sample database. In form (expense), the combo box (expense_item) collates data from (expenses) table and (revenues) table. There's a filter button on form header. it shows only the contents of (expenses) table to which the combo box is bound. I hope it's clear now
  13. C

    Custom filter (acCmdFilterMenu)

    Good day! I use the follwoing code to filer a filed on a form Public Function FilterForm() On Error GoTo errlbl Set SelectedButton = ActiveControl Me.Controls(ActiveControl.Tag).SetFocus Me.Recordset.MoveFirst DoCmd.RunCommand acCmdFilterMenu Exit Function errlbl: If Err.Number =...
  14. C

    Removing the gap between form detail and footer

    I works fine. Thanks for everyone
  15. C

    Removing the gap between form detail and footer

    Attached a sample form (form1) with the text in footer section. you will notice the huge gap between the detail section and footer seciton.
Top Bottom