Search results

  1. J

    Code Issue

    I have a calendar that I have tried to modify for my vacation property database. I'm trying to add reservation information in a form to update a calendar so I can see availability but I'm getting run time errors and my calendar is not displaying the information. I found a lot of the code...
  2. J

    Option Groups

    Ken, Thanks for your help
  3. J

    Option Groups

    Option Button Works missinglinq, Thanks!! Your code worked. Jerry
  4. J

    Option Groups

    Yes, that's it. Once selected you can not uncheck. I've looked in properties for a toggle on/off but can't find anything.
  5. J

    Option Groups

    I'll try to explain it better. In an option group you can only select one option and that part works and is what I want. However, once you have selected an option check box you can not uncheck them. You can check another option but you can not go back to all option not checked and that is what...
  6. J

    Option Groups

    No. I have an option group of about 15 choices and you can only select one. But I would like to be able to turn them on and off. If you accidentally select one you can't uncheck them right now. There are times when you won't check one.
  7. J

    Option Groups

    I have created an option group on a form. Is there a way to change the check boxes so they toggle on and off?
  8. J

    Calendar Option

    Thanks Maurice. I did see this one I was just hoping I wouldn't have to click on each day and there was a way to do a date range.
  9. J

    Calendar Option

    I have searched the forum and have not found what I'm looking for. I have created a vacation property rental database and I need a calendar to show available dates (see attachment). I would like to pick the date range on a calendar and just have a monthly view that the date would change color...
  10. J

    Form/Memo Field Question

    Ken, Thank you very much. I had no idea it was this simple
  11. J

    Form/Memo Field Question

    I have a data input field (memo style) on a form. I would like to be able to use a return (enter) to go to another line for numbering. Example: 1. Test results 2. Report Results 3. So on I can not figure out how to do this. The text wraps but I can't seem to add my own spaces.
  12. J

    Spell Check on Data Entry

    Here what I used for my field. Private Sub permanentaction_Exit(Cancel As Integer) Dim strSpell strSpell = permanentaction If IsNull(Len(strSpell)) Or Len(strSpell) = 0 Then Exit Sub End If With permanentaction .SetFocus .SelStart = 0...
  13. J

    Spell Check on Data Entry

    Thanks Gary, I finally found some code here that I was able to get working
  14. J

    Spell Check on Data Entry

    I have a data entry memo field on a form and I want to add a spell check feature, how is this accomplished?
  15. J

    Form/Subform Total Issue

    2003. Try it now.
  16. J

    Form/Subform Total Issue

    Form/Sub Form totals Okay I've run into another problem with this. What I have done is linked my sub form to a key field in the main form and the sub form is a continuous form. So the main form contains a field "parts on hold" which is a total. The sub form contains the field "parts sorted"...
  17. J

    Form/Subform Total Issue

    Is it possible to take a number in a main form (stored in a table) and subtract a number in sub form (stored in a separate table) and if so how would you do it? I've tried a couple of ways and have had no success. Jerry
  18. J

    Chart Report Question

    Report Toolbar/Print Button Bob, Thanks for the reply and yes I finally did get it. But maybe you can answer my next quandary. I have created a custom tool bar for my reports but it does not pop up when the report are opened.
  19. J

    Charts/Reports

    Does anyone know how to add goal lines to Access charts? I know you can add trend lines but i have not found where to add a goal line.
  20. J

    Seacr Form Not Working

    Search Fixed Wayne, It works perfect! The brackets were all I needed, thank you so much for your help. Jerry.
Back
Top Bottom