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

  1. TheTeaMan

    How to Count the Number of Specific Character in a Field

    Final Code when “your field” has Null value is: IIf(IsNull(InStr(1,[your field],",")=True),0,1+Len([your field])-Len(Replace([your field],',',''))) Thanks Everyone!
  2. TheTeaMan

    How to Count the Number of Specific Character in a Field

    Thank you HarleyQuinn for your response. I did add IIF statement for 0 comma's in the field.
  3. TheTeaMan

    How to Count the Number of Specific Character in a Field

    Thanks to all. PHV's solution was the best for me. It was straight forward. Thank you again.
  4. TheTeaMan

    How to Count the Number of Specific Character in a Field

    I have string data in one of my fields, separated by “,”. I would like to count how many times the “,” occurred in the field. If none, then I need to put 1. Would you help please! Thanks..
  5. TheTeaMan

    How to Make "Open" Visible in File Download in IE Selection Window

    It is the same type for all workstations. I also configure the file type the same way for all of these workstations. The only difference is some machines have group policies enabled on them and others do not. I do not know the selection in the group policy to remove that. Also I did disable the...
  6. TheTeaMan

    How to Make "Open" Visible in File Download in IE Selection Window

    I have workstations that do not give me the option to open a downloaded file. They only give me “Save” and “Cancel” buttons. However other machine do show all three features. How do I enable this feature “Open” to show up, in addition to “Save” and “Cancel” buttons, so I can open the downloaded...
  7. TheTeaMan

    Mouse code for pointing and dragging to assign values

    CautionMP, Thank you very much. It worked very well. That exactly what I wanted to do. You are great. Thank you again....
  8. TheTeaMan

    Mouse code for pointing and dragging to assign values

    Remou, Thanks for the reply, however, withought going into much detail my Form works perfect and my data has been normalized. I have checkboxes made for the user to check to indicate whether they each task is completed or not during his/her shift. We have no issues whatsoever with a form that...
  9. TheTeaMan

    Mouse code for pointing and dragging to assign values

    I posted this question in the Form thread. since I did not any response from others, I am wondering if I had placed the question in the right thread. Here is the question: I have a form that has many check boxes (approx 76.) I would like to see if there is a way to point the mouse to one corner...
  10. TheTeaMan

    Mouse Point and Drag to Change Check Boxes Values All at Once

    This one is a very challenging one. I have a form that has many check boxes (approx 76.) I would like to see if there is a way to point the mouse to one corner and drag it to go over many boxes (as desirable) in which the value of theses boxes to be changed (checked or unchecked). I know on...
  11. TheTeaMan

    Copy Check Boxes Values of a form to a table!

    Thank you guys (TheAceMan1 and Crowley16). Both of your solutions work great.
  12. TheTeaMan

    Copy Check Boxes Values of a form to a table!

    I m still having a problem. Here is the code I used but it does not work: Private Sub Command697_Click() Dim dbNewRec As DAO.Database Dim rstNewRec As DAO.Recordset Set dbNewRec = CurrentDb Set rstNewRec = dbNewRec.OpenRecordset("table1") With rstNewRec .AddNew Dim chk As Variant For Each chk...
  13. TheTeaMan

    Copy Check Boxes Values of a form to a table!

    Thank you Crowley16. I am a little slow. I can see how you are looping from check box to another but how to I copy the value of the check box to the table? Thanks again.
  14. TheTeaMan

    Copy Check Boxes Values of a form to a table!

    I have a form that has many check boxes (over 61). After the user finishes checking the necessary boxes, I would like to step through each check box and copy them all to a table. The fields in the table have the same names as the check boxes names but not necessary in the same order of entry...

Part and Inventory Search

Back
Top