Search results

  1. C

    Solved Transferring data from one field to other fileds

    Thanks again. I'll adopt a better path.
  2. C

    Solved Transferring data from one field to other fileds

    I appreciate your advises and your time you have spared. Indeed, the information provided is indicative only. I have many users filling in two fields only. That filed became too lengthy. That's why I need to transpose them into other multiple fields. Thanks again
  3. C

    Solved Transferring data from one field to other fileds

    Dear arnelgp, I appreciate your excellent endeavors, Pls, Pls, Pls, What if I need to transpose the records of two fields on 8 fields as in the attached image Thanks for your excellent cooperation.
  4. C

    Solved Transferring data from one field to other fileds

    Thanks alot, arnelgp solution is wonderful
  5. C

    Solved Transferring data from one field to other fileds

    Here's a sample of desired output with thanks
  6. C

    Solved Transferring data from one field to other fileds

    Good day! I have a field "Description" and other four fields "field1", "field2", "field3" and "field4" The field "Description" has numerous data. Now, I want a code to go to first entry in "Description" and insert it into "field1" then goes to the send entry in "Description" and insert it into...
  7. 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
  8. C

    activeX component can't create object

    Thanks a mile my dear. I'll work on.
  9. 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
  10. 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
  11. 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...
  12. C

    Removing (File) tab from Ribbon & removing database title

    Thanks for your kind support
  13. C

    Removing (File) tab from Ribbon & removing database title

    Thanks. I'll try it and update your goodselves.
  14. 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...
  15. C

    Custom filter (acCmdFilterMenu)

    I'll try your kind suggestions. Many thanks
  16. 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
  17. C

    Custom filter (acCmdFilterMenu)

    Thanks for your prompt reply. An image attached.
  18. 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
  19. 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 =...
Top Bottom