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: Wes1961
  • Order by date
  1. Wes1961

    How do I show a check box only if the Value is yes

    Duane, Found the answer to my question by searching past post. Here's your star for helping me. Wes
  2. Wes1961

    Help with ODBC Connection

    Here is the code. The first time I enter the database I can run the code to attach to either one of the sources/tables above without any problems. However, if I try to run it again for the second source, I get an error (above). Exiting the database and attaching to the second source works...
  3. Wes1961

    List of all unique values in a column

    If a column of values that could be several hundred lines long. I need a list of all unique values in the column. Example A C B A D A B I want to see at list that is only one occurence of each: A B C D They do not have to be sorted but would be nice. I would like to do this without Vb...
  4. Wes1961

    Help with ODBC Connection

    PHV, Can you help me a little more? I don't understand what you mean by 2 different database objects. Thanks.
  5. Wes1961

    Database Error! The Form Name is mispelled...Error message

    Roy, Been really busy and just now getting back to this issue. Your suggestion about decompiling helped me discover some variable errors that were probably causing my problems. Here's a star for you. Thanks Again!
  6. Wes1961

    Database Error! The Form Name is mispelled...Error message

    I’m using Access 2002. I have a form / subform combination. Everytime that I try to open the main form I get the error message: Microsoft Access has encountered a problem and needs to close. We are sorry for the inconvenience. The database thens shuts down. I have opened Access then tried...
  7. Wes1961

    Subform and make table query

    I get the error message: You can't use a pass-through query or a non-fixed-column crosstab as a record source for a subform. Since the column names change every week (current week plus the next 9 weeks). I don't know how to 'fix' the columnheadings property.
  8. Wes1961

    Subform and make table query

    I have created a cross tab query to sum orders from current week forward. Also, not every week will be represented in the crosstab since it is possible that there would be no orders for that week. I then use a make table query since you can't use a crosstab on a subform. My problem is that...
  9. Wes1961

    Help with ODBC Connection

    I use some code that I found on this site to establish and refresh an ODBC connection to Oracle. And it works great. The problem I have is that I need to connect to two different sources. I use the following information to feed the code. UID = myId PWD = myPwd ODBCtable = apps_Ap_table...
  10. Wes1961

    ODBC call failed when connecting to Oracle DB

    I have this problem also. I have determined for me that it is function of time. After some amount of time the ODBC connection is lost. Closing the database and reopening fixes the problem. Right?
  11. Wes1961

    Calculated Fields in Query

    You say: Fields include Qty, Unit Price, Tax Rate You have a space in "Unit Pricae" and "Tax Rate" Then in your formula you are using "Unit Price" and "TaxRate" withno space. TaxAmt: CCur([Qty]*[Unit Price]*[TaxRate]) However, if this was the case I would expect and error or the...
  12. Wes1961

    Update query

    PH, Thanks for your quick response. I am sorry that I was unclear on what I wanted. After the update I would expect the table to look like: F1 F2 F3 A B .5 B C .5 B D .5 B E .5 AA BB .62 BB CC .62 CC DD .62 CC EE .62 CC FF .62 I don't know...
  13. Wes1961

    Update query

    I have a data like F1 F2 F3 A B B C B D B E .5 AA BB BB CC CC DD CC EE CC FF .62 I need to update the value of F3 based on a value that is alrady in F3. In the sample above I would like all records, A-B, B-C, B-D, be set to the value in the record B-E. CAn...
  14. Wes1961

    Pass Variables between Databases

    Thanks Paul... Many things occur in the night process, sometimes it errors out and needs to be run manually the next morning. I would like a solution that works whenever I envoke the macro "night" macro. If I can't get one then I'll use the time.
  15. Wes1961

    Pass Variables between Databases

    I have an add-in to my main database that houses some code and functions that I have developed Example: I have a report that has the following code in the OnNoData. If the user can runs this report manually and there is nodata then I want to display a message box. However, I also want to...
  16. Wes1961

    Password in pass thru query database, Access 97

    Yes.. Go to the passthru query that requires the password. Open in design view. Then open the queires properties. May have to right-click in the blue header bar of the query. Then in the ODBC Connect string field enter password, something like...
  17. Wes1961

    Select record if any field is negative

    I agree on the inefficency but I 'inherited' this database and was asked to write a 'quick' report for someone. I do need to rewrite/change several things in this database but do not have the time right now since this table is already used in many queries. I was just lookng for a quick way to...
  18. Wes1961

    Select record if any field is negative

    I want to write a query that will return a record if any field in that record is negative. The table looks sorta like this: Item Bal1 Bal2 Bal3 Bal4...Bal24 How can I do this?
  19. Wes1961

    Capture Print View of Form to attach to email

    Thanks.... I wil try the sendobject. I was aware that I could create a report but was trying to avoid it since the existing from is very busy/complicated with info that is not actally data.
  20. Wes1961

    Capture Print View of Form to attach to email

    I have inherited a database were the developer created a form to simulate an existing printed form the company used. The form was developed with all the stagnate information keyed in as labels on the form. The form also has shading and lines. The form is displayed with some information filled...

Part and Inventory Search

Back
Top