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 strongm 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: Katie6
  • Content: Threads
  • Order by date
  1. Katie6

    Importing contents of Outlook message to Excel

    Hi there, I'd be really grateful for any help with sorting out the date format in my Outlook to Excel importer. Background I've got an online form, and when the user submits it their response is sent to my email address. I receive the form responses in the following format, with a...
  2. Katie6

    Is it possible to make a world clock using asp?

    Hi there, I need to make a world clock to put on a website. At the moment, I have a JavaScript clock where the user can select a time zone from a drop down menu and the digital clock changes accordingly. The problem is daylight saving time. Different countries change their time on different...
  3. Katie6

    How can I limit number of characters displayed in a div

    Hi there, I have a web page with an include to a news article. So the whole news article is shown on the page. I would like only the first 200 characters to show, not the whole thing, so I have tried using the following code. However, I'm not having any success. JavaScript function...
  4. Katie6

    JavaScript clock that takes daylight savings time into account

    Hi there, I'm using the following script which allows users to choose the time zone of a javascript clock. Choose time zone: <form name="where"> <select name="city" size="1" onchange="updateclock(this);"> <option value="" selected>Local time</option> <option value="0">London GMT</option>...
  5. Katie6

    Get url of previous page and submit in a form

    Hi there, I have a button to a feedback form on every page on my site. The problem is that if users make a comment about a page, I can't tell what page they're talking about. I would like to add a hidden form field on my feedback form where the value is the url of the previous page...
  6. Katie6

    Table filter counter remains static and doesn't count!?

    Hi there, I'm using some JavaScript which adds a filter to my table. It works well - as the user types in the search box, the table rows appear and disappear dynamically to show only the rows which contain text that matches what the user types in. I would like to add a counter next to the...
  7. Katie6

    Alert if input is not in array, except if input is blank-not working!

    Hi there, The following code brings up an alert message if the user enters something into a textbox that isn't in an array. It works fine, but I do not want the alert message to appear if a box is blank, i.e. blank is an acceptable input. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"...
  8. Katie6

    Validation to check that value entered is in array

    Hi there, The javascript below checks whether the value entered by the user is in an array. It works fine, but I would like it to work with more than one array and more than one textbox. So I would like the javascript to check that the value entered into textbox A is in array A and that the...
  9. Katie6

    Box 1 greater than box 2 alert works only sometimes?!

    Hi, I have a some javascript which checks that the number in the left text box is less than or equal to the number in the right box. It sometimes works, but not always. For example, it will correctly bring up an error message if I put 5 out of 4 in the boxes or 56 out of 55. But if the...
  10. Katie6

    ODS Excel, how does column width work?!

    Hi there, I'm using ODS to export to Excel (see code below), but I am baffled by the column width option. When I set column width to 20 and another column width to 10, the column set to 20 is not twice as wide as the column width = 10! Can someone explain how the column width works (e.g...
  11. Katie6

    muti-sheet xls output for Excel 1997?

    Hi there, I am trying to export some data into Excel using SAS. I need the Excel document to have multiple sheets, because it would be too confusing to put lots of big tables on one sheet, but my customers only have Excel 1997, which is a right pain because Excel 1997 doesn't support xml. Is...
  12. Katie6

    Simple Javascript dom navigation?

    Hi there, Just need a quick bit of DOM navigation advice - In the code below I'm looking to dynamically change the class of the <ul> when the user clicks on the <li> item. So if the user clicks on the first <li> it'll become onestar, if they click on the second it'll become twostar etc... As...
  13. Katie6

    Validate for blank fields not working

    Hi there, I'm trying to make some javascript that will alert a user if any required fields have been left blank on submit. I got the code from this website: http://www.adobeforums.com/webx/.ef70298 and have tried to put it in the html as follows: <html> <head> <script language="javascript"...
  14. Katie6

    Create a table containing the 4 most recent items

    Hi there, I have a table containing News items grouped into different categories, like so: Category Story Date ---------------------------------------------------------- Sport Team wins match 14Oct2007 Sport Team does not...
  15. Katie6

    Create table containing the 4 most recent items

    Hi there, I have a table containing News items grouped into different categories, like so: Category Story Date ---------------------------------------------------------- Sport Team wins match 14Oct2007 Sport Team does not...
  16. Katie6

    How do I prevent sas truncating at 256 characters?Outputting to Excel

    Hi there, I've written some code to output my sas dataset as an xml file so that it can be opened in Excel. I have used ODS. The problem is that some of the lines of xml code generated by SAS truncate at 256 characters. e.g. <Cell ss:StyleID="RowHeader" ss:Index="2"><Data...
  17. Katie6

    Validate value in one field is greater than the previous field

    Hi there, I'm making a web form to record the number of people who answer a particular question correctly. E.g. Question: How many people answered question 1 correctly? Answer: [ ] of [ ] The [ ] represents a field to be filled in by the user. The left field is the number who answered...
  18. Katie6

    Merge Forename and Surname columns into one column

    Hi there, I have a dataset (D1) with the following three columns: ID Forename Surname I'd like to create a new dataset (D2) using D1 which will contain the following columns: ID Name I would like the Name column in D2 to be created by merging the Forename and Surname columns in D1, and I...
  19. Katie6

    £ signs not passing through on html form

    Hi, I have made an html form. It contains the following code: <label for="POTENTIAL_LOSS">Potential Loss:</label> <input name="POTENTIAL_LOSS" id="POTENTIAL_LOSS" type="text" value= "" tabindex="30" /> <br /> When words (e.g. hello world) are entered into the text box, both words pass...
  20. Katie6

    Access one cell in a database and make the value equal to a variable

    I have a data set with the following headings: - name - address - ID I have got a bit of code like this: data new; set details; where (ID = '123456'); run; proc print data = new; run; This brings back the name address and ID of the person with ID 123456, i.e. it brings back 1 row...

Part and Inventory Search

Back
Top