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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by LevelThought

  1. LevelThought

    Multi-tabbed form_synchronize listbox

    Any thought on the need to setup frmTabbed (the main form), the subform (that contain the various controls) and the listbox on the query that will actually restrict the end-users. I will place the listbox directly on the page within the multi-tabbed form. Thoughts? Comments?
  2. LevelThought

    Sort Listbox using Option Group

    The code now "blanks" all of the rows!
  3. LevelThought

    Multi-tabbed form_synchronize listbox

    Basically, I am trying to allow the end user to only see his/her accounts upon logging into the database. Maybe, I have not set this up properly. My setup is as follows; * Inserted subform on a page of the multi-tabbed form that is based on a query to allow the end-user to only see his/her...
  4. LevelThought

    Multi-tabbed form_synchronize listbox

    I am having major issues with the synchronizing of a listbox with a subform on one of the pages on a multi-tabbed form. Is anyone able to offer insight as to the steps in linking listboxes to subforms on a multi-tabbed form? The error message that I receive when I try to enter something into...
  5. LevelThought

    Sort Listbox using Option Group

    Currently using the following code to sort a listbox on a Access form; Dim strSQL as String strSQL = "SELECT Company, [First Name], [Last Name] FROM YourTable" Select Case Me.[YourOptionGroup].Value Case 1 strSQL = strSQL & " ORDER BY Company" Case 2 strSQL = strSQL & "...
  6. LevelThought

    User only see assigned accounts on page of multi-tabbed form

    Having major issues with trying to setup a subform on a page within a multi-tabbed form on a Microsoft Access 2000 database that will only display the accounts assigned to the particular employee. Currently using a global variable. Considering switching to using the Windows login name...
  7. LevelThought

    Sort/Subsort using check boxes on list box within multi-tabbed form

    I have a list box with check boxes on a page within a multi-tabbed form. What I would like to do is offer the ability to sort and subsort on the fields that are displayed in the list box. How do I accomplish this?
  8. LevelThought

    Synch Listbox to Main Form and enable sore using option buttons

    Oops! The title should read - Synch Listbox to Main Form and enable sort using Checkboxes
  9. LevelThought

    Synch Listbox to Main Form and enable sore using option buttons

    Currently have a form with multiple tabs that are visible depending on the specific user. When the user logs in, he/she is directed to the "Account Review" tab that only shows the accounts that have been assigned to them. Now, I have placed a listbox on the "Account Review" tab within the form...
  10. LevelThought

    Store Number of Records Updated-Appended Daily in tbl

    Remou, Good point about the field names. I will modify accordingly. The Access database is linked to the Oracle database. How would the original code that you posted change if I want to automatically capture the date/time that the query ran, and the number of records updated and/or appended?
  11. LevelThought

    Store Number of Records Updated-Appended Daily in tbl

    Currently, the Update and Append Query are performed using Jet Sql. Additional Context follows, I am interested in initially setting the 3 queries to command buttons on a form that will be accessed by the manager. Command Button 1 is for the Update Query Command Button 2 is for the first...
  12. LevelThought

    Store Number of Records Updated-Appended Daily in tbl

    Assistance needed to solve problem. Every day I perform an update query and then two append queries from an Oracle 8.1.7 database to a local Access table. Is it possible to store the number of records updated and appended to a local Access table (Titled "Update_Append Log") on a daily basis...
  13. LevelThought

    Access Form - Employee Only See Accounts Assigned

    Step 2 was done to put all of the controls that are on the main form onto the subform that is on the tab titled "Review Accounts." The main form appears when the administrator clicks on the command button titled "Assign Accounts." Therefore, I wanted all of the controls that are on the main...
  14. LevelThought

    "Batch" Search within Excel Files on Network

    firefytr, Any additional insight regarding the automation of hyperlinks? Thanks in advance.
  15. LevelThought

    Can Employee Copyright Access Database?

    Thanks for the insight. Approximately 85% of the development work on the Access database was performed at home during the weekends or after work using my laptop computer. As stated, the main point is documenting this which would be rather difficult at this point. Overall, it appears that...

Part and Inventory Search

Back
Top