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

  • Users: kopy
  • Order by date
  1. kopy

    Query Criteria Problem

    I have 2 fields Year and Month. They are both numeric and in YYYY and MM formats. I’m trying to write a query that will select records that are less than the current date. For Year I’m using <=Year(Date()). For Month I’m using <Month(Date()). Because we are in Feb, I’m only selecting records...
  2. kopy

    Converting Phone Number Formats

    MajP, Thank you. And yes I did have those variations to deal with. Works like a charm! Thank you so very much, Kopy
  3. kopy

    Converting Phone Number Formats

    I need to convert phone numbers with format like (617) 868-8332 or 617/731-3413 to 617-868-8832 and 617-731-3413. Any thoughts on the best way to do this will be greatly appreciated. Thanks, Kopy
  4. kopy

    Error 13: Type MisMatch

    Declaring as an Object resolved the issue.
  5. kopy

    Error 13: Type MisMatch

    Thanks. It did the trick.
  6. kopy

    Error 13: Type MisMatch

    I'm trying to copy the Start Date from one form to the Start Date of each record on another form. In other words I want to change all of the Start Dates at once. Likewise for the /End Date. I'm currently getting Error 13 Type Mismatch. Here's code: Dim rs As Recordset Set rs =...
  7. kopy

    Access 2007 Linked Table Manager Issue

    Thank you very much. I followed the approach delineated in the thread and it seems to do the trick. Thanks again, Kopy
  8. kopy

    Access 2007 Linked Table Manager Issue

    After bringing up the Link Table Manager dialog (which does display all my linked tables), when I attempt to check the box near a table entry, it reports and "Error loading DLL" but, of course , doesn't tell me what the name of the DLL is! Here's the message: ---------------------------- The...
  9. kopy

    Database Window UnHides When Printing Form

    I have a form with a button to print another form. When I execute the following code, the database window unhides. Dim stDocName As String Dim MyForm As Form stDocName = "frmPrintPictureLandscaspe" Set MyForm = Screen.ActiveForm DoCmd.SelectObject acForm, stDocName, True...
  10. kopy

    Run-time Error 3246

    Thanks for the help. I placed it at the end of on current event, but still get the error. Any suggestion of a better place? Here's my code: Private Sub Form_Current() 'Display New QuoteID for a New Record '-------------------------------------- Dim intnewrec As Integer Set...
  11. kopy

    Run-time Error 3246

    I have a form, used to create and document quotes for parts, that has the AllowEdits property set to No so that once a quote is written it can not be changed. If the user moves to a new record, I want to change the AllowEdits property to Yes. There is a combo box that the user can use to...
  12. kopy

    Graphs Show No Results

    I recently got a new PC with Windows 7. Now my Access 2003 graphs show no data in the form view. The row source is fine and the graph prints fine. Any ideas would be great. Thanks, Kopy
  13. kopy

    Problem Appending a Chart to a Word Document

    I'm trying to create a button on a chart that will exports the chart and appends it to a Word doc named "Export Graphs". My problem is that right now the code opens "Export Graphs" and then copies and pastes the chart into a new Word doc. Also, I'm not sure how to have the copied chart append...
  14. kopy

    Exporting an Access Chart to Word

    I have an Access chart that I want to add a button that will allow the user to export it to Word. Any advice on how to go about this will be great appreciated. Thanks, Kopy
  15. kopy

    Overlapping Data Labels on Pie Charts

    I have a couple of pie charts with each chart having around 10 - 15 different data elements. The data labels are set to show alongside the relevant pie sections - showing category name, value, land leader lines. The labels overlap and cram on top of each other. The label position is set to Best...
  16. kopy

    Using a SQL Statement as RecordSource for a Form

    I'm trying to use a combo box on a form as the parameter to filter a form (frmDataEntry). The field that I want to filter is actually on a subform (subSpecimenData) and is called [Tissue Site]. The code runs but it doesn't filter the recordset based on the value of the combo box. Any help...
  17. kopy

    Graph Issue: OLE Error

    My previous post wasn't clear enough. I creatyed the graph using 2003's wizard on a PC that has 2007 installed.
  18. kopy

    Graph Issue: OLE Error

    I created a graph for an Access 2003 application on my current PC that has Access 2007 installed. When the user tries to enter the graph on a PC that has only Access 2003 installed, they get an OLE error. The graph was created using the graph wizard. My understandg is that when I created the...
  19. kopy

    Late Binding: Excel Syntax Change

    I am trying to implement late binding to make my users independent of their Excel Object Library. I've been successful at creating the spreadsheet, but I need alittle help wit the syntax changes for cell formatting. What would be that appropraite syntax change for xlPrintNoComments to make it...
  20. kopy

    Trying to Display All Records in a Yes/No Field

    Here's the documentation on tblQBF: Columns Name Type Size StartDate Date/Time 8 EndDate Date/Time 8 StartInitialAge Long Integer 4 EndInitialAge Long Integer 4 StartCurrentAge Long Integer 4 EndCurrentAge Long Integer 4 PDDNOS Yes/No 1 Autism Yes/No 1 Aspergers Yes/No 1 HFA Yes/No 1...

Part and Inventory Search

Back
Top