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...
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...
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...
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>...
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...
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...
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"...
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...
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...
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...
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...
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...
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"...
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...
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...
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...
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.