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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Nickela

  1. Nickela

    Calculating Time From Time Clock Punches in a Single Table

    Thanks everybody. I will try a couple of these things out. I appreciate the help. Nickela
  2. Nickela

    Calculating Time From Time Clock Punches in a Single Table

    I appreciate your help, Remou. SELECT tblPunch.BadgeID, tblPunch.Punch, (SELECT Punch FROM tblPunch A WHERE A.Seq = 2 AND A.BadgeID = tblPunch.BadgeID) AS Seq2Time, Format([Punch]-[seq2time],"Short Time") AS Expr1 FROM tblPunch WHERE (((tblPunch.Seq)=1)); The only...
  3. Nickela

    Calculating Time From Time Clock Punches in a Single Table

    Thanks, Remou for the tip. When I tried this, I get a message "At most 1 record can be returned from this subquery" and it doesn't show any records. Any thoughts? Thanks, again.
  4. Nickela

    Calculating Time From Time Clock Punches in a Single Table

    I have a table that contains the following information: BadgeID - employee's ID # Punch - Date and Time Stamp Sequence - 1 (for in) and 2 (for out punches) There are usually 2 - 3 sets of sequences per day for each employee. I am trying to create a query that calculates the employee's time...
  5. Nickela

    Force Check-In

    This worked perfectly. Thanks for the help. Nickela
  6. Nickela

    Force Check-In

    I am trying to delete an old project in Microsoft Project Server 2002 and I am getting a message that it is already checked out. It was only checked out by my user id and I can't find anywhere to force check it in. Any thoughts on how to force check-in a project in Microsoft Project Server...
  7. Nickela

    Update Trigger: Key Column is Insufficient...

    I have created the following trigger that I am trying to use to update a work entry table for all of the work entries for a single work item (1 to many). When this trigger fires, I get the following error: Key column information is insufficient or incorrect. Too many rows were affected by...
  8. Nickela

    Right-Clicking in ADE file

    When they need to access a hyperlink, they definitely can just click on it, but in order to create the hyperlink in the field, they need to type the hyperlink in manually. I am curious if there is a way to enable the ability to right click in an ADE Project. Thanks for your help. Nickela
  9. Nickela

    Right-Clicking in ADE file

    I have an ADE file that contains some forms with some hyperlink fields. Users, however, don't have the ability to right-click in the program, so they have to manually type in the path name. Is there a setting somewhere that will allow users to right click while running an ADE file? Thanks...
  10. Nickela

    Calling Stored Procedure with SET command

    I have the identity insert for entries that get restored back to the production table. Sorry for the bad description. Any thoughts?
  11. Nickela

    Calling Stored Procedure with SET command

    Hello everybody, I have some stored procedure that move records from a production tables to archive tables and they SET IDENTITY_INSERT ON for the insert and then turn it off afterwards. The procedures do exactly what I am wanting them to do. My issue is that I would like some of the users...
  12. Nickela

    Stored Procedure using Identity Insert

    Does anyone know of a "Run As" type of command that I would be able to use preceding or during the call to the stored procedure in the VBA so that the user that clicked on the button would be assigned the dbowner server role for the running of the stored procedure, but would then be...
  13. Nickela

    Stored Procedure using Identity Insert

    Hello everybody, I have some stored procedure that move records from a production tables to archive tables and they SET IDENTITY_INSERT ON for the insert and then turn it off afterwards. The procedures do exactly what I am wanting them to do. My issue is that I would like some of the users...
  14. Nickela

    Environ("UserName") on Windows NT

    I am working on an Access 2000 Project with SQL 2000 backend. I have a form that sets a textbox's value to Environ("UserName") and then uses this value to display all of the records for that user by passing the value of the textbox as the parameter for the SQL Stored Procedure. This...
  15. Nickela

    Parameterized SQL Stored Procedure and Access Project Report

    I am trying to create a report that displays a single record from a table that matches the value of a text box on a form. I have a SQL Stored Procedure with the input parameter for this value. I am not sure how to pass the value from the form so that the report is populated by the appropriate...

Part and Inventory Search

Back
Top