Recent content by PWORTHY

  1. P

    CheckAll Checkbox

    OK.. now I feel like an idiot!!! LOL Ckbx2 = CheckBox2, I was trying to use the checkbox instead of the actual name of the field. one of the "Duh!" moments!! Thanks!!!!!!!
  2. P

    CheckAll Checkbox

    I have tried the following, but I can't get it to work: Private Sub cmdMark_Click() Dim rst As Recordset, i As Integer Set rst = Me.RecordsetClone i = 0 rst.MoveFirst Do While Not rst.EOF i = i + 1 rst.Edit If rst![Ckbx2] Then rst![Ckbx2] = False Else rst![Ckbx2] = True End If rst.Update...
  3. P

    CheckAll Checkbox

    :banghead: I have a filtered subform that has a check box on each record. I want to be able to use an unbound checkbox to select all and have that selection updated in the table for each associated record. Any suggestions? :banghead:
  4. P

    To split or not?

    Steve, what I have is a quantity comparison reporting tool that is based on a widget's ID number and compares 3 separate requirements (estimate qty, design qty, and issued for construction qtys); takes the greatest requirement from all three and then compares to what has been requisitioned for...
  5. P

    To split or not?

    AccessBlaster - We can still login from remote locations to our network drives, so having remote access is not an issue. I understand the security of the BE, but it only puts the tables on the BE. The queries I have in place are just as much in need of security as the tables. Someone messing...
  6. P

    To split or not?

    To split or not? / how to make improvements during use I have finished my database and am wanting a way to make improvements to the database while not interferring with another user using the database. Due to the content of the database, there will only be one user at a time, so there is no...
  7. P

    Calculating Due Dates of Performance

    I have been out of the database world for some time and was never an expert before, so I am stumped and need some help, please. :confused: I have been asked to complete a database for Project Maintenance (that someone else started and hasn’t finished). :banghead: So, this may be the start of...
Back
Top Bottom