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

    SQL statement ... count()

    Thank you guys, I found the solution: <cfquery datasource=&quot;#application.dsn#&quot; name=&quot;q&quot;> Select model, count(model) as Total From vehicle Group By model </cfquery> <CFQuote>THE JOURNEY OF A 1000 MILES BEGINS WITH 1 STEP</CFQuote>
  2. ighidan

    SQL statement ... count()

    hello guys, i have a db table called &quot;vehicle&quot;, the table contains a field called &quot;model&quot;. i wanna retrieve the count() for each model by one query. i want my query to output: count(Q45), count(X40), count(BMW2000), etc .... How can i do this? Thanks. <CFQuote>THE JOURNEY OF...
  3. ighidan

    Document height/width

    THIS FUNCTION GIVES AN ERROR IF YOUR DOCUMENT IS EMPTY <script language=&quot;JavaScript&quot;> <!-- var height; var width; if (document.all) { height = document.body.offsetHeight; width = document.body.offsetWidth; } else if (document.layers) { height = window.innerHeight; width =...
  4. ighidan

    FORMATTING NUMBERS WITH 2 DECIMALS

    hello ... i like papaobba's solution. and this is another solution that you might be interested in. http://developer.irt.org/script/6.htm <CFQuote>THE JOURNEY OF A 1000 MILES BEGINS WITH 1 STEP</CFQuote>
  5. ighidan

    refresh parent window from child window

    wow ... thanks alot dude ... it's working now. <a href=&quot;javascript:window.opener.location.reload(1)&quot;>refresh parent</a> <CFQuote>THE JOURNEY OF A 1000 MILES BEGINS WITH 1 STEP</CFQuote>
  6. ighidan

    refresh parent window from child window

    hello ... is it possible to refresh parent window from child window where parent window has no name?! <CFQuote>THE JOURNEY OF A 1000 MILES BEGINS WITH 1 STEP</CFQuote>

Part and Inventory Search

Back
Top