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 TouchToneTommy 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 clinresys

  1. clinresys

    Pivoting Data

    Base your crosstab on a query with functions that return what you want.
  2. clinresys

    udf params from Expression Builder

    I have a select query with a user-defined function field. The function takes required args, some of which are fields in the query, plus some that I don't want in the query. (The query is 1/2 of a union query, and I don't want to have to pad the other select query with fields it doesn't need.) I...
  3. clinresys

    Getting NorthwindCS to operate

    Oh Yeah! You'll probably have to hold down the Shift key to bypass the start-up module to be able to see the default menus. This works from the most-recently-used list or from a shortcut.
  4. clinresys

    Getting NorthwindCS to operate

    from Microsoft Access Help topic --------------------------------------------------- Connect an Access project to a Microsoft SQL Server database You can connect a Microsoft Access project to a Microsoft SQL Server 6.5, Microsoft SQL Server 7.0, or Microsoft Data Engine (MSDE) database. If the...
  5. clinresys

    Help needed to open a table using ado

    'here's a template I use often 'A quick way to get the SQL statement: 'create a saved query, and paste the SQL view 'for the cmdSQL.CommandText Dim cnn1 As ADODB.Connection Dim rst As ADODB.Recordset Dim cmdSQL As ADODB.Command Dim grArray() As Variant Dim grCount As Integer Dim int1 As Integer...
  6. clinresys

    TAKE QUERY RESULTS TO EXCEL

    Do you have a stored query? You might try using the Pivot Table Wizard with a couple textboxes added to the form it makes for your start and end dates input.
  7. clinresys

    Unique Identifier - roll yer own

    'Check help topic "Quotation Marks in Strings" 'strings in strings are a pain in domain aggr functions Private Function strUnique() As String 'concatenates unique integer with a default string 'to create a unique identifier 'example uses "_default" for default string...
  8. clinresys

    using form to set defaultvalue property in another form

    I ended up using a separate table of default values and a dictionary object(like a perl hash)for collecting textbox updates. If a certain textbox IsNull on SaveRecord, MsgBox asks the user if they want to save as new defaults. If they do, the record currently being used is flagged false, and...
  9. clinresys

    using form to set defaultvalue property in another form

    thanks SBendBuckeye. I recall I did have the target form open in design mode the one and only time the changes persisted.
  10. clinresys

    using form to set defaultvalue property in another form

    My plan is to expose only certain fields to the end user of an mde for setting default values (no design views allowed)at the form level. Textboxes in the form to be used to set defaultvalue in the target form have their own defaultvalue set to the defaultvalue of the target form with an...

Part and Inventory Search

Back
Top