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 TouchToneTommy 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: *

  • Users: deweb
  • Content: Threads
  • Order by date
  1. deweb

    Can edit data in subforms

    I have a form for with two subforms that I use for data entry into my trainings database. The forms and subforms are bound and the tables are related. The main form has the following properties: Allow Edits = yes Allow Deletions = yes Allow Additions = yes Allow Data entry = yes The subforms...
  2. deweb

    Missing: Microsoft Office 11.0 Object Library!

    I have written function: Public Function IsOpen(ByVal strFormName As String) As Boolean ' Returns True if the specified form is open in Form view. Const conDesignView = 0 Const conObjStateClosed = 0 IsOpen = False If SysCmd(acSysCmdGetObjectState, acForm, strFormName) <>...
  3. deweb

    Dynamic Report Titles

    I have a report based on a parameter query that filters records by year. My question is this, is there a way to incorporate the year information into the report's title? For instance, if a user types the parameter &quot;2003&quot; into the message box, I would like the report title to read...
  4. deweb

    Trouble with Group Counts

    I have designed a report for my trainings database which is based on a query. The report is grouped by Organizations, then trainings, then the attendees (from that Organization) are listed, something like this: Organization 1 First Training Last, First Last, First...
  5. deweb

    Filter Listbox by Current Year

    I've developed a Trainings Database. I have a listbox on a dialog form that lists training titles and training dates. I'd like to filter the listbox to show trainings for only the current year (whatever the current year happens to be). Do I use the DateSerial function in the QBE? If so, what...
  6. deweb

    Filtering Records in a Listbox

    Is it possible to filter records in a listbox using an option group of toggle buttons (A,B,C,D,etc.)? I want the user to be able to filter the list and then double-click on an entry to open the record in another form. Can this be done? If so, how? If not, is there an alternative? Thanks.

Part and Inventory Search

Back
Top