Search results

  1. J

    afterupdate check for invalid charters

    I cant change the table propery to number only so is there an afterupdate code I could run on a field and check for alphanumartic charters ?
  2. J

    attempting to clean up a free form text box

    I cant change the table propery to number only so is there an afterupdate code I could run on a field and check for alphanumartic charters ? jon
  3. J

    adding fields in a table and having the output fill fields on a form

    Ok so If I use this code Me.[Field1] = DLookup("[Sumofhoursdelay]", "QryName") If this runs I get the hrs I'm looking for but I can't figure out the WHERE end of this code. So again when the query runs it returns only 2 lines Company1 plus the total hrs and Complany2 plus its hours. So I want...
  4. J

    adding fields in a table and having the output fill fields on a form

    The query runs fine but how do I get the data out of the query and into the fields on the form. The total query is going to add all the hours for 2 companys for a certian record. There will alway only be the same 2 companys but the total hrs pre record may differ. So on my form I have [cust1hrs]...
  5. J

    adding fields in a table and having the output fill fields on a form

    that is exactly what im trying to do but cant get the code right.
  6. J

    adding fields in a table and having the output fill fields on a form

    =DLookUp("[HoursDelay]","queryname","[CausedBy]=" & [apple]) I still cant get the the total hours of the delays out of the query. Again the query on its own runs and does do the totals. I want to get the totals. any help please
  7. J

    adding fields in a table and having the output fill fields on a form

    yes I can do that. Let me mess around with this for a bit
  8. J

    adding fields in a table and having the output fill fields on a form

    so I run the query and then have the Dlookup grad the sum from that query? The dlookup will be the control source for the field?
  9. J

    adding fields in a table and having the output fill fields on a form

    I have a totalquery that runs fine and give me the sum for both fields I'm looking for but I can't get the outputs to fill the fields on the form. I have tried the Dcount query in the control source but that just returns an error and locks up access. SELECT [Tble-wcDelays].Causedby...
  10. J

    Having trouble with a subform Null or Not

    with a Dcount query works like a champ. If DCount(" * ", "Qry-Check for Delays") <> 0 Then
  11. J

    Having trouble with a subform Null or Not

    I do not believe its doing the requery Forms![Frm-mainform]![frm-subform].Requery Right?
  12. J

    Having trouble with a subform Null or Not

    No I have not I will do that right now.
  13. J

    Having trouble with a subform Null or Not

    I was trying that and its funny sometimes it works sometimes it doesn't. But I can't pinpoint why
  14. J

    Having trouble with a subform Null or Not

    So I have a subform that tracks delays there can be many delays for every main record. Users will start a delay and others will close them or complete them by entering the completed date / time. So before the save or unload on the main form I want to check the subform for any delays that are...
  15. J

    dropping the employee number from an entry

    thank you guys got it working great
  16. J

    dropping the employee number from an entry

    But I cant figure out how to drop the numbers following the name??????
  17. J

    dropping the employee number from an entry

    I have the control source of a field set to =GetWinUserName() this returns the user name logged into the pc.
  18. J

    dropping the employee number from an entry

    So how do I call these functions?
  19. J

    dropping the employee number from an entry

    I'm able to pull users that are logged into our network but our company uses a name that has their employee number as well. So deponding on when they were hired it could be a 5 or 6 digit number. so an example would be JSmith123456 or it could be JSmith12345 so is there a way to drop the...
  20. J

    making a field grow in size???

    I have a subform that shows notes entered but if there is more text in the field then you cant see it all. Can I make it so that this field will grow so the whole input is visible or can I make it so when you click on it it opens in a larger window showing all the txt?
Back
Top Bottom