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

  1. wwiSports

    Get value that is between value's in two fields

    This works, as far as the Dlookup is concerned. It is pulling the correct zones, but it's not saving the zones. I have the following code to save everything: Private Sub SaveAthInfo() Dim strSQL As String AthChange = False Dim dbs As Database Dim rst As Recordset Set...
  2. wwiSports

    Calculations not working in vba on form

    I am running access 97, and the round feature is not working. I have changed all of the dollar items in the code to currency, but i'm still running into an issue like below: SubTotal: 9.00 Tax: 0.41 Total: 9.41 PmtAmt: 9.41 PlusMinus= 0.01 (Should be 0.00) Any other suggestions?
  3. wwiSports

    Get value that is between value's in two fields

    I have field Zip and Field Zone in my form. I also have a Table Zones. Table Zones has the following: ZoneID, ZoneZipStart, ZoneZipEnd, Zone I would like the form once I leave the Zip field to fill in the Zone field with the Zone that zip code; For instance if the zip code entered is 20164...
  4. wwiSports

    Calculations not working in vba on form

    Actually, the color's above work. (vbRed, vbGreen--it's in Access 97). They have a database in use with those for a year now. I am revamping that database now though, actually pulling two together. The real problem is this. When The PmtAmt and the Total are =, it is showing up as 0.01 in...
  5. wwiSports

    Calculations not working in vba on form

    I have the following procedure in a form: Private Sub PlusMinus_Change() PlusMinus = PmtAmt - Total Select Case PlusMinus Case Is < 0 PlusMinus.BackColor = vbRed InvOnHold = &quot;Y&quot; Case Is > 0 PlusMinus.BackColor = vbGreen...
  6. wwiSports

    Update Query to update only part of a field

    I have a table with the field SchoolName. This field has School names such as: Park View Hs, Herndon Hs, Broad Run Hs. I would like to get the Hs to be HS (both letters Capitalized) I was trying to use: Right([SchoolName],2) = &quot;HS&quot; But it is changing the entire field to -1 Why is...
  7. wwiSports

    Update Query that updates an ID field if there is no ID

    This was perfect! Thanks for taking a moment to figure this one out! Now I will have less trouble exporting the information so we can purge it into Adobe InDesign for our book--any suggestions or preperations that I need for that?? Beth
  8. wwiSports

    TransferText--Want to save file as date

    It worked!!!!! Thank you very much Josh!!! Beth
  9. wwiSports

    Macro to open forms, also need to update a query

    Thank you! I just wanted to let you know that I used Macro's and used a RunSQL statement and it worked. Thank's again! Beth
  10. wwiSports

    TransferText--Want to save file as date

    I am trying to autoate saving a comma delimited file using the TransferText Method. This is my ultimate goal: -Press the ExportConfirmation button -A Inputbox appears asking for the file name -I will enter ConfLtrDt and then the Month and Year -And the file will save to: G:\OE...
  11. wwiSports

    Update Query that updates an ID field if there is no ID

    I have two tables: &quot;Athlete&quot; and &quot;ExtendedBio&quot;. They have a One to One relationship at the field AthleteID. There are over 15,000 athelete's in the database, but there are only 6000+ Extended Bio's--and I need to have an extended Bio for each Athlete (even if it's blank)...
  12. wwiSports

    Macro to open forms, also need to update a query

    I have a form &quot;Fulfillment&quot;. On the form I have a command button &quot;cmdPatchReport&quot; with a Macro on the OnClick event to open the PatchReport. When this button is clicked, not only would I like it to run an update querry to update the ItemShipDate to a date that is provided...
  13. wwiSports

    Unbound Form Text Box is ShipDate--shows up with time

    There is a button to press to open the orders form. The code is as follows: Private Sub Form_Load() Dim AthID As String Dim AskAth As Boolean Dim dbs As Database Dim rst As Recordset Dim rst2 As Recordset Dim strSQL As String Dim x As Integer FrmMode =...
  14. wwiSports

    Any suggestions on how to automate fulfillment???

    My organization has a database called &quot;Orders&quot;. Our customers are able to order Patches, T-shirts, Plaques, and Certificates. At the moment--I do these all myself--each time that we run fulfillment. I would like to start to automate it though, so it is one less thing that I have to...
  15. wwiSports

    Still having trouble with lblSeeNotes

    I got it fixed!!! Thanks! Beth
  16. wwiSports

    Unbound Form Text Box is ShipDate--shows up with time

    I have an unbound form called &quot;Orders&quot;, which has about 5 Text Boxes (ShipDt1, ShipDt2, etc...). I have set the format as ShortDate on the form. My issue is that when I have someone's order up--if we have shipped their item to them,the date appears correctly, but in all of the other...
  17. wwiSports

    Still having trouble with lblSeeNotes

    I have two forms, one is the &quot;Orders&quot; form and the other is the &quot;Notes&quot; form. I have put a lable called lblSeeNotes on the Orders form and set it's visible property to No. I have also put a text box called &quot;Notes1&quot; that is based on the notes form and set it's...
  18. wwiSports

    Converting all data to uppercase

    I wont be able to set the default of the database to all caps. All the data is entered by the data entry specialists in all caps--except for one form, which is awards that kids have one--that is proper case. The downloads from the web are what i'm mostly wanting to change, so if I can add code...
  19. wwiSports

    Converting all data to uppercase

    I have two databases that I am bringing together. When the data entry specialists are entering the data, everything they enter is in all caps, but we also download some information from our website--and when that information is downloaded, it is downloaded in whatever format the customer enters...
  20. wwiSports

    How to put something that alerts the user to look at a certain field

    Okay--I am going to try to put it at the end of the On Load event, that way it will be the last thing that the form tries to do, but I think there is a problem now with my code. I didn't realize it at first, but you have to press f6 in order to bring the notes section up. The order form and...

Part and Inventory Search

Back
Top