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 wOOdy-Soft 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 bitech

  1. bitech

    Runtime Errror 6 Overflow when running make table query

    Here's my code Function outliers() 'create outliers report DoCmd.setwarnings False DoCmd.RunSQL "SELECT Skills.Type, Employees.FirstOfKey, Sum(YTD.[ACD CALLS]) AS NCH, Sum([ACD AHT]*[ACD CALLS]) AS Total_AHT, Sum([ATT]*[ACD CALLS]) AS Total_ATT, Sum([ACW]*[ACD CALLS]) AS Total_ACW...
  2. bitech

    Syntax error when using DSUM and DatePart

    Here's my code... Private Sub prev_month_Click() If Me.hidden_month_clicks = 0 Then MsgBox "went back to the beginning of the year" Me.hidden_month_clicks = DatePart("m", Date) Else Me.hidden_month_clicks = Me.hidden_month_clicks - 1 Me.Month_NCH.ControlSource =...
  3. bitech

    Setting TableDef properties

    Hello: When I tried the code, I received a Type mismatch error. Does anyone know how to avoid that. The error comes on the Set prop3 = fld3.CreateProperty("InputMask", dbText, "(###) ###-####")
  4. bitech

    Make Tables - how to turn off 'do you want to delete..'

    In your macro the first line needs to be set to SetWarnings and in the bottom box it will say "Warnings On". Make sure this setting is set to No. Your last line needs to be set to Setwarnings and in the bottom box "Warnings On", it needs to be set to Yes
  5. bitech

    Complicated SQL Build

    They would be able to select more than one ethnicity, which I wouldn't even know what the ethnicities are because they aren't static they are put in by the user. So it needs to look for anything in the ethnicity table that has an "-1" and search for anything company in the vendor...
  6. bitech

    Complicated SQL Build

    I need to make a string that is based on what the user selects on a form. I have a continous form based on a table named "Ethnicity" which has a list of all of the ethnicities the user has listed. In order for them to search on the ethnicities I need to popup the continuous form and...
  7. bitech

    Report hides behind Switchboard

    thanks for the advice...actually when I posted that, I thought about the DoCmd.SelectObject function and I have decided to use that
  8. bitech

    Report hides behind Switchboard

    I have a function in the toolbar that produces a report. When the report is open in preview, it is hidden behind the switchboard. Is there a way without closing the switchboard that I can have the form receive the focus.
  9. bitech

    ?? re: MenuBars and ToolBars on a Form

    You'll find that this is relatively simple: Right click on the Menu Bar: 1. Click Customize 2. Click on New {off to the right} 3. Name the toolbar 4. Go to Commands, {second tab} 5. Here you can pick what function you want to appear on the toolbar. Or you can create a custom function.
  10. bitech

    Retrieving a Folder`s Path

    I need the code that will pull back the whole file. Any givers.
  11. bitech

    Finding File Pathname

    Interesting Question: I want my users to be able to send email from my database. {I got that part figured out} Now, what I want is them to be able to select the attachment. I need to do a {browse} type function that allows them to browse for the file they wish to attach. When they select the...
  12. bitech

    Replacing comma with OR

    Can you explain that code to me.
  13. bitech

    Replacing comma with OR

    In Access97, the Replace Function isn't available. Somehow I need to write my own, but I don't know how.
  14. bitech

    Replacing comma with OR

    I am using Access 97, and I need to allow my users to type in multiple keywords in a textbox and have the database, replace the comma with the word OR. That way my SQL statement will read the textbox field and find any records in the database that have matching keywords. Example: user types...
  15. bitech

    Create Keyword Search of a Database

    peitzza: I know this has been a long time ago, but if you still have that database can you email it to me at kleadon@gccc.com

Part and Inventory Search

Back
Top