Search results

  1. S

    Creating a table similar to word in access form

    Yes I it does, appear in the intellisense, that is how I know it is correct. It is still giving me that error message for some reason.
  2. S

    Creating a table similar to word in access form

    Yes they are called InventorySub.
  3. S

    Creating a table similar to word in access form

    I am receiving run-time error '2467' The expression you enter refers to an object that is closed or doesn't exist. The error is the text in red Public Sub BuildTable() Dim frm As Form_InventorySub [Set frm = Me.InventorySub.Form If IsNumeric(Me.cboInv) Then frm.FormatTable...
  4. S

    Creating a table similar to word in access form

    Yea I have written like that, still nothing. - Resolved this issue...thanks
  5. S

    Creating a table similar to word in access form

    I edited the code in your file and the cbo box isnt doing anything after the edit.
  6. S

    Creating a table similar to word in access form

    Thank you so much for your help, I will work on that right now :)
  7. S

    Creating a table similar to word in access form

    Ok issue resolved, I thought I had 1 in rownumber. Apparently there was no record. Now I am getting Data Type Conversion Error 3421. It highlights fld = "". I am guessing I have to replace that with a matching name of my field. I was trying to look to see what matches on your form with that...
  8. S

    Creating a table similar to word in access form

    Thank you so much, is it possible to do a set number of columns such as 10, and one combo box that creates the rows?
  9. S

    Creating a table similar to word in access form

    I am receiving no current record, If fld.Name <> "RowNumber" Then rs.Edit fld = "" rs.Update
  10. S

    Creating a table similar to word in access form

    Is it possible instead of having a cmd btn is to use a cbo base on selected value?
  11. S

    Creating a table similar to word in access form

    Thank you so much MajP :)
  12. S

    Creating a table similar to word in access form

    I created a table with 7 fields, and put the table in as a subform. I am receiving error too few parameters 1, run time 3061. What part of the codes do I need to rename?
  13. S

    Compile Error Expected Case

    Thank you all, fixed forgot the case
  14. S

    Compile Error Expected Case

    I am working on creating hidden text boxes. Based on the selection from a combo box, it will display the hidden text boxes. I didnt get a chance to finish writing my code. It is displaying Complie Error Expected Case. Private Sub Form_Current() Dim Visible As Boolean Select...
  15. S

    Creating a table similar to word in access form

    Thank you, we are on the same page. I setup the form the phone the way you described. I just need help with explaining on how to code it. I have a combo box and 8 text boxes going across.
  16. S

    Creating a table similar to word in access form

    MajP, do you know how to do what pbaldy mention. I would like to learn how, if you could teach me?
  17. S

    Creating a table similar to word in access form

    I already explained my goal. As explained earlier, I am looking to create a simple table on my form.
  18. S

    Creating a table similar to word in access form

    If it's not going to work, can I take an excel form and make it a form access?
  19. S

    Creating a table similar to word in access form

    Thank you pbaldy, I will pay for your support. Is it possible, if you could teach me how to write the code for such thing? I am one of those person if you give an example, I will try it out and follow your instructions.
  20. S

    Creating a table similar to word in access form

    Say I have a drop down menu to select number of rows needed with 8 textboxes. It is one of those options, it is not need on the form unless its part of the customers plan. It is hidden in the background, unless you select the number of rows needed. Is there a vba coding for such thing?
Back
Top Bottom