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

  • Users: tekyge
  • Order by date
  1. tekyge

    Time Clock Issue

    Got it Thanks guys and the code below is the results: If Me.SSN = DLookup("[SSN]", "Employees", "[SSN]='" & Me.[SSN] & "'") Then '-- Set rst = CurrentDb.OpenRecordset("SELECT * FROM [Employees] Where [Employees].[SSN]='" & Me.[SSN] & "'") If rst![ClockInOut].Value = True Then rst.Edit...
  2. tekyge

    Time Clock Help

    Got it Thanks guys and the code below is the results: If Me.SSN = DLookup("[SSN]", "Employees", "[SSN]='" & Me.[SSN] & "'") Then '-- Set rst = CurrentDb.OpenRecordset("SELECT * FROM [Employees] Where [Employees].[SSN]='" & Me.[SSN] & "'") If rst![ClockInOut].Value = True Then rst.Edit...
  3. tekyge

    Time Clock Help

    Here is what I have so far but it is not working? It gives no error but there is no data in the TotalTime field rst![TotalTime].Value = DateDiff("n", rst![TotalTime].Value + rst![Time].Value, Now())
  4. tekyge

    Time Clock Issue

    The code is work all but the code below. I need to use data manipulation but I can figure out how to turn the below code into that? rst![TotalTime].Value = rst![TotalTime].Value + rst![Time].Value - Now()
  5. tekyge

    Time Clock Help

    I know I should use data manupulation but how do I turn that code into what I need?
  6. tekyge

    Time Clock Help

    This would be the code used when the table is opened and edited: rst![TotalTime].Value = rst![TotalTime].Value + rst![Time].Value - Now()
  7. tekyge

    Time Clock Issue

    I ment nevermind I got it Sorry. But I do have another problem I started another form for this issue but maybe you can help: Ok everything is working except that I want to have the code below give me a updated total in hours and minutes of the total time an employee has worked but nothing is...
  8. tekyge

    Time Clock Help

    I am building a time clock system where the employee can type there ssn and clock in or out using only one button. Ok everything is working except that I want to have the code below give me a updated total in hours and minutes of the total time an employee has worked but nothing is showing in...
  9. tekyge

    Time Clock Issue

    Never got it!!!! Private Sub clock_Click() If Me.SSN = DLookup("[SSN]", "Employees") Then '-- Set rst = CurrentDb.OpenRecordset("SELECT * FROM [Time] Where [Time].[SSN]='" & Me.[SSN] & "'") rst.Edit rst![SSN].Value = Me.SSN 'use the name of the field for your date in your table...
  10. tekyge

    Time Clock Issue

    Below is the code I have that adds a new record each time an employee logs out or in. What I am tring to do is rather than it adding a new record I want it to edit the time record of the employee clocking in or out. I am having a problem figureing out how to find and edit the record I need...
  11. tekyge

    Image Prints Bad Quality

    Thanks for all your help. I did try that MajP but didn't get the same results the poster did. The linked image looks the same in the report as the embedded one, but does not look the same when you print it. I am at a lose
  12. tekyge

    Image Prints Bad Quality

    In any other circumstance I would agree, however, the image prints fine if it is embedded in the report.
  13. tekyge

    Image Prints Bad Quality

    I have an access report linked to an image on the server and it displays on the report great but when I print the report letter the linked image qulity is very poor. Any help with this? Thanks guys
  14. tekyge

    Metro II Format For Credit Reporting

    Thanks for the respones all. No because I don't want to buy the software I want to build it. I just need to know the file extention.
  15. tekyge

    Metro II Format For Credit Reporting

    No .*** is an example I need to know the real extension format of the Metro II file format.
  16. tekyge

    Metro II Format For Credit Reporting

    Can anyone tell me what the extension (.***) is for the metro II format and can access out put using it?
  17. tekyge

    Bad Mail Folder

    Is there a way in the windows 2003 mail server to restrict any incoming mail other that the designated email accounts. The reason for this is the number of bad mails we receive in a given day. I would rather they be undeliverable than to go to the bad mail folder?
  18. tekyge

    Record Sorting

    No that’s ok I have read up on the same thing about this and do greatly thank you for your help and all that tried. I think I am going to just forget it since I do have search capability for clients and if they need to search by last name they can. I also am going to begin building an SQL...
  19. tekyge

    Record Sorting

    Thanks Tarwn for your help. It is now giving this error Undefined function 'InStrRev' in expression.
  20. tekyge

    Record Sorting

    Belopw is the sql code I use to show a report the report loops via a function in the page that shows the results of the code below. All I need is for it to sort those results via lastname but not put the last name first Tarwn is right I am try to find the last space in the name as a starting...

Part and Inventory Search

Back
Top