Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Tracyice

    Editing Excel Chart

    All charts are on the same worksheet. They use different data sources. They are all the same time of line graph. Thank you!
  2. Tracyice

    Editing Excel Chart

    I have multiple charts in excel and I would like to make them all of the same size. Is there an easy way of doing this without manually changing all of them?
  3. Tracyice

    Data not stored in Form

    I checked all of this. Once I set the data entry property back to No, the data re-appeared. however, it will not allow me to save any new records.
  4. Tracyice

    Data not stored in Form

    It was set to no, so i reset it to yes, and lost all of my data.
  5. Tracyice

    Data not stored in Form

    I am entering data in a subform that is based on a table, and the data does not appear in the subform after I enter it, but it appears in the associated table. Please help.
  6. Tracyice

    Form field equal to another table field

    I'm sure this has a simple answer. I want to set one value in my form equal to another value in a table. I want to use VBA for this, because the data will not always come from the same table, and I want the user to be able to specify the table it should come from.
  7. Tracyice

    Excel Data and Access Forms

    I have a field on my form called txtEnterFile. I want the user to enter the filename they wish to import to excel here. This works with the code below, however, it will only accept a file name from one area on my computer, namely, My Documents. It will not recognize a file from any other...
  8. Tracyice

    Excel Data and Access Forms

    I have never used the TransferSpreadsheet method in any of my code, I am reviewing the syntax now from the msdn site. I think this may give me what I need. Thank you.
  9. Tracyice

    Excel Data and Access Forms

    I have tried this. The problem is, for each record, the data will be coming from a different excel file. In addition, not all of the data that needs to be entered in the form, is in the excel spreadhseet.
  10. Tracyice

    Excel Data and Access Forms

    I have a portion of the data that I want to enter in my access form already in an excel spreadsheet. Is there a way to have the fields on the access form automatically populates by the data in excel?
  11. Tracyice

    Hyperlink - Excel spreadsheet

    In my database, I have a field which stores a hyperlink. Is there a way, using VBA, that you can specify a specific worksheet in an excel workbook? Or is only possible to create the link to the entire workbook?
  12. Tracyice

    Multi-Select Property

    PHV- Thanks for your help. I used your suggestion, however, it now keeps what I select for each record. For exampe, if I choose option a and option b from my selection box for record 1, it remains selected for record 2. Similarly, if I change the selection in record 2 to c and b, it changes it...
  13. Tracyice

    Multi-Select Property

    I have a list box which I have set the multi-select property to simple for. I am wondering if there is any way to store the multi-selected data in a table using VBA?
  14. Tracyice

    Dependent Combo Boxes

    I am working on this further. I will Post on Monday if I'm still stuck!
  15. Tracyice

    Dependent Combo Boxes

    I did have the requery command in the entire time, but it still keeps the same options in cboxcourse(2nd combo box), no matter what I select in the cboxprogram (1st combo box). Thanks for trying!
  16. Tracyice

    Dependent Combo Boxes

    When I set the rowsource for the course combo box as one of the tables, the choices stay the same no matter what is selected in the program combo box. It seems to be ignorning the after_update procedure and just using the row source for the table I chose to set it to.
  17. Tracyice

    Dependent Combo Boxes

    All of your assumptions were correct. Sorry, if it wasn't clear... Private Sub Program_AfterUpdate() Select Case cboxProgram Case Program1 cboxCourse.RowSource = "tblProg1Courses" Case Program2 cboxCourse.RowSource = "tblProg2Courses"...
  18. Tracyice

    Dependent Combo Boxes

    In response to Randy, yes, each set of courses are in a different table. So, that SQL statement from JJman won't work unless all of the courses are in one table, right? Thanks for all the help!
  19. Tracyice

    Dependent Combo Boxes

    I tried your advice and i'm getting a compile error which says "data member not found" for rowsourcetype and rowsource. This is the code I used... Private Sub Program_Click() Select Case Program Case Program1 Course.RowSourceType = "Table" Course.RowSource = "Prog1Courses" Case Program2...
  20. Tracyice

    can't update form

    It is driven directly through a table.

Part and Inventory Search

Back
Top