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. JohnBlaze

    Sub Report Calculations

    Plextor In your sub report (obviously change to suit your needs) WhilePrintingRecords; Shared NumberVar YourVariableName := Whatever Then in your main report WhilePrintingRecords; Shared NumberVar YourVariableName
  2. JohnBlaze

    Accessing contact folders in outlook

    I am reading some information from excel into outlook as contacts. I have no problem with that bit. However, I have a custom contact folder that I would like to read the information into. How do i go about setting that in VBA? Thank you John
  3. JohnBlaze

    Query Criteria Question

    You could try something like; SELECT Right([FieldName],1) AS Name FROM Table ORDER BY Right([FieldName],1);
  4. JohnBlaze

    Help with Selection and Formula for a close date report

    What type of data are you reporting off of? Are you linking to an Access DB or an ODBC linked table(s)?
  5. JohnBlaze

    Need help with simple formula

    Are you attempting to use Basic or Crystal Syntax within your formulas?
  6. JohnBlaze

    Passthrough Queries and Linked Tables

    In pass through qurey design, right click on the query window. Go to properties. Under ODBC connect string you will see '...' Hit on that and then set your password/logon To my knowledge with ODBC tables, you save the password when you initialy set up the link to the table -John Blaze
  7. JohnBlaze

    Access Security Question ???

    I am having difficulty using Access with it's built in user security. I am the only user with admin rights to the database. However, when I open the database and attempt to edit or add any module, form etc. I get the message that I do not have the database opened exclusively. When I examine the...
  8. JohnBlaze

    Access 2000 Security Question

    I am having difficulty using Access with it's built in user security. I am the only user with admin rights to the database. However, when I open the database and attempt to edit or add any module, form etc. I get the message that I do not have the database opened exclusively. When I examine the...
  9. JohnBlaze

    Need Help with Complex Query

    Trendsetter, Thank you for your response. However, the dates in question will not always be 12/31/9999. Its just that the next documents new date must be higher than the previous documents low date
  10. JohnBlaze

    Need Help with Complex Query

    Hi I have been asked to perform a clean up on our companies contract records, and have not been able to figure out how to do this Basicaly, a contract can have more than 1 document associated to it, and, each document has an end and start date. When a new version of the document is applied to...
  11. JohnBlaze

    Problem with complex query

    Hi I have been asked to perform a clean up on our companies contract records, and have not been able to figure out how to do this Basicaly, a contract can have more than 1 document associated to it, and, each document has an end and start date. When a new version of the document is applied to...
  12. JohnBlaze

    Easytrieve sychronized file processing

    Try the below IF NOT MATCHED IF SFILE BOTH:CITY = SFILE:EXTR-OUT-CITY-NAME BOTH:DRAW = SFILE:STALLY PUT BOTH ELSE BOTH:CITY = HD2:SUB-CITY-NAME...
  13. JohnBlaze

    Iterate through files in a location

    I have code that looks at a given word document and makes some changes. How would i go through all the word documents in say my C:Data\ directory?
  14. JohnBlaze

    Which is better, the DATA step or PROC SQL?

    You could also use the fetch command to limit the amount of records returned when using proc SQL ( I believe)
  15. JohnBlaze

    Seting a textbox name by passing a variable

    Thanks, I am not sure I understand though. I wanted to populate the textbox based on what query was ran. So that the results from Query2, would populate txtBox2. And when Query3 is passed, the results would populate txtBox3. I dont see how this would work with the code you have sent. Thanks for...
  16. JohnBlaze

    Seting a textbox name by passing a variable

    I have a procedure that takes in a query name as an argument, then returns values based on that query. If I have 30 such queries, with the name Query1 thorugh Query30. I want to populate txtBox1 with Query1's results, etc. However when I try and name pass the n as the "1" in query1...

Part and Inventory Search

Back
Top