Search results

  1. J

    referencing and action

    alright, ive spent all morning surfing the web for solutions to my problem, and maybe ive found one, i dont really know. ive tried many methods that i have come across and maybe i am just not referencing things correctly, but in any event, i could use some help here. i still need to do the...
  2. J

    referencing and action

    also, this code is not providing any errors, it runs smoothly other than the fact it doesnt do what i want it to do. ha!
  3. J

    referencing and action

    thanks for the links, ive played with the idea further and heres where i am at: Private Sub Command140_Click() Dim rs As adodb.Recordset Do While Not Recordset.EOF If Me![master subform].Form![verify] = True Then Me![master subform].Form![Page1] = True End If Recordset.MoveNext...
  4. J

    referencing and action

    hi all, i could use some help here. ive got a form with a subform subform has 2 check boxes i have a button on the main form im trying to click the button on the main form to reference one of the checkboxes on the subform and click another check box on the subform based on the value of...
  5. J

    combining code

    hi all, i could use some help trying to combine this code together to occur as one on_load sub routine. heres what we got: Private Sub Form_Load() Dim rs As adodb.Recordset Do While Not Recordset.EOF Dim sPath As String sPath = "N:\DRAWINGS\" & [Drawing#] & "-01_" & [DwgRev] &...
  6. J

    uncheck on close - help

    thanks guys, that was the solution to my problem, much obliged.
  7. J

    uncheck on close - help

    hi all, i have yet another unique issue that i could use some help with. i have a form that contains a sub-form that has a check box in it for each of the numerous records. the sub-form is a continuous form. i want to do a "on close" unchecking of any checked boxes so how can i tell...
  8. J

    automated click

    aha! i got this working....check it out.... Option Compare Database Option Explicit Function FileOrDirExists(PathName As String) As Boolean Dim iTemp As Integer On Error Resume Next iTemp = GetAttr(PathName) Select Case Err.Number Case Is = 0...
  9. J

    automated click

    im willing to do whatever method will work, and i appreciate you helping me through this. ok, the looping thing makese sense, the verify check box is currently bound to make it record specific, however no data is stored in it ( all records have this false) for the sake of the verification...
  10. J

    automated click

    ive been putting the code on open on the main form, does it need to be on the subform?
  11. J

    automated click

    the [verify] item is a check box on the subform (1 for each record) cant quite get it working, any more ideas?
  12. J

    automated click

    Are you using a main form and then your continuous form records are in your subform? yes. so i tried this on open/load: Private Sub Form_Load() Dim yourfilePath As String yourfilePath = "N:\DRAWINGS\" & [Drawing#] & "-01_" & [DwgRev] & ".dwg" If Len(Dir("N:\DRAWINGS\" & [Drawing#] & "-01_"...
  13. J

    automated click

    can you rephrase that stamemnt using this? "N:\DRAWINGS\" & [Drawing#] & "-01_" & [DwgRev] & ".dwg"
  14. J

    automated click

    access 2010. when the form opens, all records need to be validated before the form loads. the structure is that there is one main record in this example that has multiple sub-records
  15. J

    automated click

    so not sure how to write it, but my thought is to write something like: when the form opens validate file path for each record in the continuous form, if file paths are good, check the box for each record that is good, if file paths are bad(no file found), then dont check the box for each...
  16. J

    automated click

    it is now bound to a field, similar to the working one. maybe the easier solution is to write a on open verification of that file path? please advise
  17. J

    automated click

    i tried this The button click event would just need to call each event of your other checkboxes Call checkbox2_Onclick() call checkbox3_onclick() and the result is an error maybe it would be helpful for you to know that this is a continuous form and the same check box exists for multiple...
  18. J

    automated click

    yes you are correct, i want to know if the file or files exist when the form opens.
  19. J

    automated click

    hi all, i was hoping someone can help me with an issue. i have a form, that now has 2 checkboxes. one checkbox, when clicked, opens a file on my server based on some criteria --------------------------------------------------------------------------- Private Sub Page1_Click() On Error GoTo...
  20. J

    code is not woking properly

    well there is no error lol the first portion of the code writes to a table the second portion of the code does not.
Back
Top Bottom