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 wOOdy-Soft 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: *

  • Users: peterswan
  • Content: Threads
  • Order by date
  1. peterswan

    IIS slow

    Hello, I'm a newbie to IIS. It is running very slow, maybe 45 seconds for any page, with ASP included or even just simple HTML. Any ideas for a solution? Thanks, [smile][smile][smile] Peter
  2. peterswan

    fixed width for table cells

    Hello, I'm trying to set a fixed width for my table cells, but if I specify the width, and the person shrinks the browser width, the cell shrinks down to lower than the specified width, and the contents of the cell wraps. However, what I'd like the cell to do in this case is remain at this...
  3. peterswan

    going back after sorting report

    Hello, I have a report that is accessed by a form page. The user fills out the form and clicks on submit to view the report. At this point there are several column headers that are clickable which allows the user to sort the report by that column header. The page reloads and fetches new...
  4. peterswan

    window not defined error

    Hello, When I run this script: <script language="Javascript"> function openWin() { var iptWin = window.open('somePage.html', 'newWindow', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=375,height=325'); setTimeout('focusWin()',250); } function...
  5. peterswan

    javascript window opening behind parent window

    Hello, I'm opening a popup window with Javascript as follows: <script language="Javascript"> function openWin() { window.open('somePage.html', 'newWindow', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=375,height=325'); } </script> <a...
  6. peterswan

    freeze image when user scrolls

    Hello, Does anyone know if there is a way to wrap a chunk of code in a div tag, in this case it's an image in a table, and make sure that the image will freeze when the user scrolls down? Another way to put it is that the image stays visible even when the user scrolls down the page. Thanks...
  7. peterswan

    &quot;Other&quot; category for those with 2 or less

    Hello, I'm running a query that will be used for summary data in a chart, and I'd like to restrict the chart to only 5 or 6 values. However, the query summary results will probably be returning a few more results than this. What I'd like to do is categorize the first 5 counts as their given...
  8. peterswan

    Multi-line INSERT of array or list values

    Hello, I have several comma-delimited lists that I'd like to INSERT into Oracle using PL/SQL. Each list has the same length, like this for example: List 1 = 45, 'Joe', 'Smith', '123 Main St.'; List 2 = 46, 'Mary', 'Jones', '445 Maple St.'; List 3 = 47, 'Bill', 'Anderson', '443 Forest Lane'...
  9. peterswan

    Customers, Orders without subquery

    Hello, I'm trying to run a query that will get ALL of the customers out of the CUSTOMER table and also to display each order IF the order is greater than a certain date. I tried a LEFT join but it still requires the customer to have an order of some kind, because of the date restriction in the...
  10. peterswan

    Can I do this in Oracle?

    Hello, I know you can run a subquery in SQL Server to see if a list from one table matches all that of a list from another table, but when I run this in Oracle, it seems to work only some of the time. For example, please note this query: select * from csq_admin_lookup where adm_lu_system =...
  11. peterswan

    Top row by group

    Hello, Does anyone know how to select the top row of each group, and display all the records in the table for that row, without writing a subquery? For example, my table has a date field and a location field, plus several other records. I want to run a query that gets all of the fields for the...
  12. peterswan

    CF Application variables

    Hello, What's the difference between CF application variables in the application scope, and setting variables with <cfset> in the application.cfm page? Thanks, [smile] Peter
  13. peterswan

    cannot run VSS

    Hello, I've installed VSS on my computer and the installation went fine. However, when I click on the icon on my menu list, the hourglass briefly appears, then disappears, then nothing. VSS does not load. Has anyone heard of this problem? Thanks, [smile] Peter
  14. peterswan

    Import into Oracle from Excel

    Hello, Is there a way to import into an Oracle table from MS Excel using TOAD, or some other tool? Thanks, [smile] Peter
  15. peterswan

    import into Oracle from Excel

    Hello, Is there a way to import MS Excel data into an Oracle table through TOAD, or some other method? Thanks, [smile] Peter
  16. peterswan

    Put group header even though no group info

    select adm_lu_code, adm_lu_description, upper(substr(adm_lu_code, 1, 1)) as first_letter From csq_admin_lookup where adm_lu_system = 'CRM' and adm_lu_type = 'GLOSSARY' order by adm_lu_code Is there any way I can get the "first_letter" field to appear in the query result set, with...
  17. peterswan

    Help with glossary

    Hello, I need to create a glossary that has a group header for each letter of the alphabet and each acronym and its definition listed under the correct header for the first letter of the acronym. Within each group, I'd like to have the acronyms in alphabetical order. What I'd like to do is...
  18. peterswan

    Remembering tabs, after user hits back button

    Hello, I wrote a DHTML application with tabs that the user can choose. Each tab displays a different form with different dropdowns to choose from. After the user chooses one of the tabs and fills out the form and hits submit, the results page displays. At this point, when the user hits the...
  19. peterswan

    document.referrer for forward page

    Hello, I know that the document.referrer attribute in JavaScript will list the page that will appear if the user hits the "back" button. However, is there an attribute that will list the page that will appear if the user hits the "forward" button? Thanks, Peter
  20. peterswan

    cfhttp with https

    Hello, I'm trying to create a CF file that I will schedule to run on a weekly basis. The page will run a report on the same server and load the information into an Excel page. Then the page will drop the Excel file onto a directory on our server. Then the page will loop through a list of people...

Part and Inventory Search

Back
Top