Recent content by Debased

  1. D

    number of days between dates

    Search for UsefulDateFunctions...it is in the Sample Databases at the bottom of page 4 and was created by Pat Hartman and I have found it quite useful though I am not sure in your application it is what you are looking for. But it might give you some ideas.
  2. D

    Optimizing 'List control'

    I know there is a property called "Column Widths" that you can set manually but then this may not be what you are asking for. Column headings I believe take their width from this setting in "Column Widths" As to have them "automatically" adjust according to the size of the text in the list I...
  3. D

    Need help with a Switchboard Error

    I am certainly no expert but I know that if you go into one of your modules (visual basic) and goto Tools/References and make sure that "ActiveX DataObjects 2.1 Library" box is checked. I don't know how it would get "unchecked" but when I have had this message it did have something to do with...
  4. D

    Basic "Add Record" Form?

    Though it may sound "simple" what you are basically asking is how to use Access. Try to get a hold of a copy of a basic book of Access and review the Forms section. Also, look at the Sample Database section of this forum. The form you want to create has to have tables, queries, relationships...
  5. D

    Update listbox after new data entered

    Put this in the GotFocus event of your list box: Me.ListBoxName.Requery After adding a new student, I assume you will return focus to the list box. If not, try searching this forum "Refresh List Box" there are tons of threads. Hope this helps!
  6. D

    Help with simple If code

    ghudson: Are you sure you are posting your last reply to the correct thread? man, I am really confused if you are because I don't see the connex! but thanx anyway...I wrote a sub using your code to check for the number of characters that works great!
  7. D

    Help with simple If code

    gHudson: thanks so much your last code did it! I am curious as to why: I declared strMsg = [my Textboxnamehere] so it seems to me your first posted code should have also worked. Oh well, I am grateful to move on from this little adventure with your help! Thanks again:D
  8. D

    Help with simple If code

    Keith: I cannot post as it is a confidential patient grievance log. Is there something specific I could post or detail ? basically, it is a form that has a number of fields. Two fields are comment fields and when the character count of either field goes beyond 1000 the form will not all fit...
  9. D

    Help with simple If code

    ghudson: thanks but still getting "Invalid use of null" error :(
  10. D

    Help with simple If code

    thanks to both of u for such quick reply KeithG: "still getting Invalid use of null" error rboRob: It should be ok if they leave the field blank. I tried the "vbNullString" however same error. thanks again
  11. D

    Help with simple If code

    I am checking to see if a memo field and/or a text field has more than 1000 characters and if so then it calls a function that prints legal size paper vs. 8 X 11. It works fine except when the either field is empty. I have searched and searched the Forum and found many that are close but no...
  12. D

    How to link 4 databases to shared tables?

    thanks again for your responses..the last one made it clear for me!
  13. D

    How to link 4 databases to shared tables?

    Pat - Your quote: (don’t know how to do this the “forum way” and can’t take the time to find out right now!) “If what you are saying is that among the three applications there are three shared tables and other non-shared tables then they do belong in the same back end database” YES: and I...
  14. D

    Count Only Report Labels

    I don't think you can "count labels". If you can make the Regions a field and part of your table/query behind the report then you can simply total the [Regions] field. Hopefully I am understanding your question!
  15. D

    How to link 4 databases to shared tables?

    I have 4 databases that share 3 tables. Each database is used for different purposes and other tables which do not relate to the other databases. My question is: how do I set up the back ends so each database can retrieve and enter data into the 3 shared tables without conflicts?? I know...
Back
Top Bottom