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 gkittelson 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. BananaQuaaludes

    Selecting item in a listbox

    Hello Randy700, I'm populating the listbox on form open. I want to select the first item in that listbox, because it determines child data in the other listboxes, seen below in Sub Populate() Private Sub cboReportID_Click() Call Populate End Sub Private Sub Form_Open(Cancel As Integer)...
  2. BananaQuaaludes

    Selecting item in a listbox

    Hello, I am having a problem with an Access listbox - I need to select the first (or any) item in the listbox. I used the [listbox].selected(0) = true method, which works. Only problem is, my form freezes up. I can't select anything else, on any control on the form. Any help would be greatly...
  3. BananaQuaaludes

    Automatically Scroll to Bottom of List Box

    Hello, I am having the same problem - need to select the first (or any) item in the listbox. I used the [listbox].selected(0) = true method, which works. Only problem is, my form freezes up. I can't select anything else, on any control on the form. Any help would be greatly appreciated.
  4. BananaQuaaludes

    VBA SQL SERVER query

    Hello Karl, Thanks for the reply. The error I was getting actually had nothing to do with the join. Apparently VBA likes to see a dot notation between the database name and the table name, as well as between table and column names. It has to be: database.table.column Once I changed that it...
  5. BananaQuaaludes

    VBA SQL SERVER query

    Hello, I have the following query in an Excel vba macro: SELECT [DELTEK_ORG_ACCT].[ACCT_ID] , [DELTEK_ACCT].[ACCT_NAME] FROM DELTEK_ORG_ACCT INNER JOIN DELTEK_ACCT ON [DELTEK_ORG_ACCT].[ACCT_ID]=[DELTEK_ACCT].[ACCT_ID] WHERE...
  6. BananaQuaaludes

    Looping through Cross-tab query recordset

    I am using the following cross-tab query to form a recordset: strSQL = "TRANSFORM Max(tblCrossTab.Hours) AS MaxOfHours SELECT tblCrossTab.EmpName, Sum(tblCrossTab.Hours) AS [Total Of Hours] FROM tblCrossTab GROUP BY tblCrossTab.EmpName PIVOT tblCrossTab.Month;" How do I loop through...

Part and Inventory Search

Back
Top