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 Mike Lewis 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. mashelford

    LIst all tables with the column name I specify..

    for tables: SELECT TABLE_NAME,COLUMN_NAME FROM FND_TABLES, FND_COLUMNS WHERE FND_TABLES.TABLE_ID=FND_COLUMNS.TABLE_ID AND FND_COLUMNS.COLUMN_NAME LIKE'%SSN%' ORDER BY table_name ASC For Views: SELECT view_NAME,COLUMN_NAME FROM FND_views, FND_view_COLUMNS WHERE...
  2. mashelford

    toad question

    Right hand click any where on the top tool bar( you have to right hand click a blank bit i.e beside the help button) and tick the 'Window Bar' box that should bring back the bottom bar.
  3. mashelford

    SQL query help

    On your query view right hand click where you see the fields you mention - on the Customer ID field select group by , then the year field select count , then the amount field sum - or the SQL view would be : SELECT [TBL-Customers].[Customer ID], Count([TBL-Customers].Year) AS CountOfYear...
  4. mashelford

    Date Time Picker ACTIVEX Control Problem

    What is the ActiveX control? If you are using the Date and time picker control you will need to have a look at the time properties(It will always defualt in the time you created the control). Is the data you are trying to qry have a time stamp?
  5. mashelford

    Shell command to Zip & Unzip files

    Hi Hope it is of use coding to do both zip and unzip Function ZIP() 'TO ZIP A FILE Dim FileToSave As String, ZipFileName As String FileToSave = "C:\YOUR_FILE_TO_ZIP.TXT" ZipFileName = "C:\YOUR_ZIP_FILE" Call Shell("c:\Program Files\winzip\Winzip32.exe...
  6. mashelford

    Combining a two differently formated fields into one text box

    Hi try using the format function in your coding; =[fldSymbol]& “ “ &format([fldTotal],"#,##0.00;-#,##0.00") Martin

Part and Inventory Search

Back
Top