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

  1. Fireman1143

    DLOOKUP Issue

    Thanks Andrzejek [thanks] Works like a charm. I will look at updating it to do the Trim in the query. Mike
  2. Fireman1143

    DLOOKUP Issue

    Having a DLOOKUP issue where it constantly returns a null value. I have the following code on my form and the first part does work: Private Sub cboApptVehicleYMM_AfterUpdate() Me.txtVehicleMakeModel = Trim(Mid([ApptVehicleYMM], 6)) ' This Works Me.txtSvcPriceCode =...
  3. Fireman1143

    Total on subform

    Thank you dhookom and missinglinq With your info I was able to get this working correctly. [bigsmile]
  4. Fireman1143

    Total on subform

    Thanks for the assist Duane. Proj_ItemTotal is a field in the ITEMS table which is calculated by the expression =CCur([Proj_ItemQty]*[Proj_ItemCostEa])on the form. It appears to work as the table shows the correct totals for each line item. I have attached the database for your review.
  5. Fireman1143

    Total on subform

    The table includes fields for the Proj_ItemQty, Proj_ItemCostEa and Proj_ItemTotal. The item total is calculated by: =CCur([Proj_ItemQty]*[Proj_ItemCostEa]) This works fine In the footer of the subform I have a text field called ProjectTotal with the following. =Sum([Proj_ItemTotal]) It seemed...
  6. Fireman1143

    Total on subform

    I have used an example of Access 200 database examples to write the code for doing a total on the subform, then having it show on the main form. I had it working until I opened it with Access 2010. Now the Sum([ItemTotal]) causes a #Error in the text box in the footer. This also happened to...
  7. Fireman1143

    Record Locking - 2003 file opened with 2010

    I have a database which works great in 2000-2003 but when I take it to work and use 2010 it has a problem using the Find - Starts with filter provided. I have the form open and that box to find a record open by code. When a few letters are enter and I go to search it notes it cannot because...
  8. Fireman1143

    Type Mismatch message

    That was it. So simple and obvious I missed it. Thanks Duane
  9. Fireman1143

    Type Mismatch message

    I have a report which I call from a button with the following code: Private Sub btnPrintReceipt_Click() On Error GoTo Err_btnPrintReceipt_Click Dim stDocName As String Dim StrCriterion As String stDocName = "Payment Receipt" StrCriterion = "[ReceiptNo]=" &...
  10. Fireman1143

    SQL Query updates table w/ record count

    Thanks dhookom for the insight. I "inherited" this coding from a programmer that had done the work previously. He has it set to save values to a table, which is completely emptied at the start of each time a report is run. My thought was to continue his methods (which I need to admit are...
  11. Fireman1143

    SQL Query updates table w/ record count

    Thanks dhookom. I tried GROUPing and I must be well off on the syntax. Table Name: persStanding_TrnMtg fld_Total_Trn fld_Total_Mtg The code below works to get the individual count of the training attendence for each individual within the dates...
  12. Fireman1143

    SQL Query updates table w/ record count

    I am trying to have a SQL query update a table with the record count from another table which meets the criteria of between two dates from a popup date form. The date part works in other similiar coding where I am pulling individual records by an ID field. This is differnt in that I need the...
  13. Fireman1143

    Refresh a form that was minimized on desktop

    I have a basic In/Out form which on some workstations the user(s) will minimize it from their desktop all day. I have located the front-end in it's own folder on the c: drive of the workstation. Is there a way to have the form refresh when it selected from their tool bar? The complete...
  14. Fireman1143

    Run time SECURITY Error

    Thanks Remou I will give it a try. This is the first I knew about the SelfCert. Fireman1143
  15. Fireman1143

    Run time SECURITY Error

    When I open a database in Access 2003 RUNTIME it displays a dialog box that is a Security Warning. I know how tosolve this issue using Access but I can't figure out how to do it using the runtime. The application is status board for In/Out and only has one form, a continous form with only three...
  16. Fireman1143

    Login Form - No Security Needed

    Remou and Rim180, Thank you both for the different approaches and ideas. Especially getting back to me so fast. This did solve the problem and is doing exactly what I needed it to do. Fireman1143 [bigsmile]
  17. Fireman1143

    Login Form - No Security Needed

    I am setting up an initial login screen which will have NO security function other than make someone relaize they shouldn't be trying to get into this particular database. All I want is to ask for the Username and then the Password and if both are supplied correctly it will open the main...
  18. Fireman1143

    SQL Statement run from Button on Frome

    Thank you both very much. After removing the commas and putting a space where need, it works like a charm. It's great to have such knowlegable people to call on in a time of need.
  19. Fireman1143

    SQL Statement run from Button on Frome

    I hve placed the following code on the OnClick button on a form. The SQL statement is to append the training records for a particular training session based on the employee name having a checkbox marked. When I tried the query it worked fine EXCEPT I had to manually type in the training session...
  20. Fireman1143

    Prefix Autonumber with characters from another field

    [2thumbsup] Thanks to both of you. Your input made it easier to figure how I wanted to format and get this.

Part and Inventory Search

Back
Top