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 TouchToneTommy 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: debbieg
  • Content: Threads
  • Order by date
  1. debbieg

    Date Time field thru +1 day through certain time

    I need some help! I have 2 tables: Hotel_Coupon Player_ID RedeemDate Gaming_Details Player_ID GamingDate StartDateTime EndDateTime Actual Theo Type (Pit or Slot) Example of one player: Player_ID Type Actual Theo GamingDate StartTime EndTime 14841 SLOT...
  2. debbieg

    Continuous Form - Select Record

    I have a form with a subform in it. The subform is a continuous form. The subform has a combobox for the user to select a record and there is an Add button for them to add a record. There is also a Delete button to delete an existing record. The Add and Delete buttons are functioning...
  3. debbieg

    Group By and Count different than Select query records

    I have the following tables: Teams TeamNum TeamYear ... Players MemNum TeamNum I have trying to get what I want all afternoon! I want to get the number of players by year. Players can play on more than one team per year and I want to count them only once. I've done a select query with...
  4. debbieg

    Check for possible duplicate(s)

    I have created a database for a senior softball league. If we sign up a new player, I would know to check to see if they played in the past, but I'm going to be giving this database to someone else and they may not. So, I'm trying to put some checks and balances in it. When I add a new...
  5. debbieg

    Unique values in Record Source for Main form

    I have created a database for a senior softball league. I have a main form and subform which is working great to display players on team by year and season (e.g., 2008 Fall). The main form is based on a query. SELECT Members.MemNum, Members.LN, Members.FN, Members.Nickname...
  6. debbieg

    Extract info from Memo field

    I have inherited a database. One of the tables has a Memo field with what looks like a field within a field. Within the Memo field is text between <EXAMPLE1> and </EXAMPLE1>, and <EXAMPLE2> and </EXAMPLE2>. I've been asked to create a report and the I need * the text before <EXAMPLE1> to...
  7. debbieg

    How to find filename of embedded object

    I am inheriting a database system. They have a separate database set up to store the bitmap images. They want it that way. My question is how do I know what the name of the bitmap is? All I see in the field is "Bitmap Image". Does it not store the filename when storing the bitmap in the...
  8. debbieg

    Esc vs. command button

    Access 2002 Default File Format - Access 2000 I don't understand why this isn't working. I have a continuous form with the following code: Private Sub cmdUndo_Click() 'to go to the edited record Dim recordnum As Long recordnum = Me.CurrentRecord DoCmd.GoToRecord , , acGoTo...
  9. debbieg

    Can't add record

    I have a single form form based on a query with one table. It has a tab control with 5 pages -- no subforms. The form has an unbound combobox to look up records based on the same query. If the DriverTypeCD is 1 (Non-Professional) a control is made visible that is required for...
  10. debbieg

    Calculation

    I have no idea how to start with this one. I have a subform where records could look similar to: Infraction Date Points 01/01/2000 3 06/01/2002 1 Somehow, I've got to calculate the points the driver has as of the current date. For instance, in the above example: On...
  11. debbieg

    MouseWheel

    I have a main form with 3 subforms. I want to allow the users to use the MouseWheel to navigate the main form but I'm having troubles. Here's my code: Private Sub Form_MouseWheel(ByVal Page As Boolean, ByVal Count As Long) If Count > 0 Then Call cmdPrevious_Click Else...
  12. debbieg

    InputMask Error

    I have the following behind my form: Dim CurrentControlName As String Private Sub DateHired_Enter() If Len(Me.DateHired & vbNullString) = 0 Then Me.DateHired.SelStart = 0 End If 'remembers last control user was in while editing CurrentControlName = "DateHired" End Sub...
  13. debbieg

    Problem trapping errors

    I have a main form with a subform. I have the following code on the main form: Private Sub Form_Error(DataErr As Integer, Response As Integer) ' MsgBox DataErr Select Case DataErr Case 2279 'InputMask violation InputMaskMsg Response = acDataErrContinue...
  14. debbieg

    Need help with a complicated IF statement

    I am creating a database to track payroll information. Employees are assigned to a Home Dept but can work in other departments. I'm at the point where I'm trying to calculate overtime. I think I've got it figured out if they only work in 1 other department during a day. My problem is if they...
  15. debbieg

    Need help with creating a csv file

    I am trying to create a csv file that will be imported into ADP PC/Payroll system. My first try created an error: strSaveFileName = "C:\ADP\PCPW\ADPDATA\" strSaveFileName = strSaveFileName & "EPI" & CoCode & BatchID & ".csv" DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel9...
  16. debbieg

    Export to CSV file

    I need to export data from a table to a CSV file. I have a form with a command button that runs the following: Dim strSaveFileName As String strSaveFileName = "C:\ADP\PCPW\ADPDATA\" strSaveFileName = strSaveFileName & "EPIJJV01.csv" DoCmd.TransferSpreadsheet acExport, , "tblADP"...
  17. debbieg

    Copy most recent record

    Here's my tables that I have a question about: tblEmployee EmpNo LastName FirstName MI DateHired tblDeptPay EmpNo DateEffective HomeDept ShiftCode HourlyPayRate I am creating a database to track payroll hours. Since an employee can change their Dept, ShiftCode, and HourlyPayRate, I...
  18. debbieg

    Want calculations to update immediately

    I have a main form with a tab control with 2 pages. Each page has a subform (both continuous forms) on it. Both subforms have totals on them for Regular Hours and Overtime Hours. I have 2 textboxes for Grand Totals in the footer of the main form. As I go from record to record in the main...
  19. debbieg

    Errors deleting within subform

    When I delete the last record on a subform, it deletes the record but I get the following error: 2465 Access can't find the field "|" referred to in your expression. And if I delete the only record on a subform, it deletes the record but I get the following error: 2185 You can't reference a...
  20. debbieg

    Need help with a couple queries

    This database I'm working on is just kicking my butt! I'm not very good with complex queries. I beg for some help. Here are my tables: tblEmployee *EmpNo LastName FirstName MI DateHired tblDeptPay *EmpNo *DateEffective HomeDept ShiftCode HourlyPayRate tblHoursWorked *EmpNo...

Part and Inventory Search

Back
Top