Search results

  1. T

    Application Title Bar

    Can you use VB to set the Application Title Bar? I have looked at the SetOption code, but do not see anything for Application Title Bar.
  2. T

    Ode 97

    This is typical, the Dlookup and other commands i.e. format, etc.. use an old MDAC. Your users probably have newer versions. You can try giving them the latest MDAC from Microsoft or, I highly recommend packaging with Windows XP Developers toolkit and distributing a run-time version (MDE).
  3. T

    Menu Bar

    What you need to do is to add a custom menu bar to the front end that will have a command that launches the form you want. You associate the custom menu bar to the application by using the Startup option.
  4. T

    how can i calculate fields???

    You need to create a summation query on the overtime table. You can sum by employee
  5. T

    Order of Completion - Workgroups then Splitting?

    Why do you need to split the database?
  6. T

    Multiple Criteria Report

    What's the exact error message?
  7. T

    Multiple Criteria Report

    when you use the open report command, use the filter for the dates and building. DoCmd.OpenReport "Report Name", , ,"ReportDate >= #" & me.begindate & "# AND ReportDate <= #" & me.enddate & "# AND BuildingField = " & me.building & "
  8. T

    Updating a Table

    It sounds to me that the 2nd and 3rd forms should really be sub forms of form1 and linked. Once they are sub forms, you can refer back to the name on the main form (form 1) as the default.
  9. T

    Read Only when Checked?

    The same code you used for the main form should be used for the sub form If Me.Arived = True Then Me.[Purchase Sub subform1].Form.AllowEdits = False Me.[Purchase Sub subform1].Form.AllowDeletions = False Me.[Purchase Sub subform1].Form.AllowAdditions = False Else Me.[Purchase Sub...
  10. T

    dynamic column headings

    IMO, thank you. This is just what I needed. I have already start digging into the code
  11. T

    Thank You IMO

    IMO, thank you. This is just what I needed. I have already start digging into the code.
  12. T

    dynamic column headings

    I have seen posts referencing sample code that documents creating dynamic column headings with a cross-tab query. I can not however find the Sample9.MDB database that is referenced in the Microsoft site. Does anyone know where I can find this? It is a sample database specifically for developers.
  13. T

    Newbie question on captions

    This can not be done in a list box. You will probably have to use a subform where the list is one field and their will be another unbound field that you will have to populate as the user clicks each option. You will probably also need to give the user a CLEAR button to clear the numbers.
  14. T

    splash

    If you use the DOCMD to open the form, there is an option to open the form HIDDEN. And if it takes a long time to load, I would not let the user close the form. I would have a close button, but when the button is clicked, I would hide the form and not close it.
  15. T

    Right Click

    This allow default shortcut menu is already checked. Also I need to add, we are running the MDE of the database using MS Access runtime.
  16. T

    Right Click

    On a deployed application, right clicking is not functioning. We did allow shortcut menus, but the options that usually come up for right clicking (sort, filter, etc..) does not come up. In fact, nothing happens except the column you right click on gets highlighted. We also need the...
  17. T

    Had To Repost This - Need Help Urgently

    You may also be able to use the command rs.findfirst ([Field Name] = '" & rs![PersonID] & "'")
  18. T

    exit without updating

    You can use this code for the command button If me.form.dirty then me.form.undo end if I beleive this will work.
  19. T

    looping though an sql record set

    I had a similar situation. Here is what I did. I added a Yes/No field (TAG) to the table itself. Instead of having the user "tag" the record, add a check box that they will actually mark as tagged. This way you will not have to go back and "tag" the records. Any processing you need to do...
  20. T

    Limiting # of Open Databases

    Can't put my hand on the article now, but we found something on the MS knowledge base. Do a search on limiting users. It entailed opening the back-end database as ADO. I believe the code reads the .LDB file. I am currently testing the code now. One thing I noticed, a user is not considered...
Back
Top Bottom