Recent content by emartel

  1. E

    sql statement & request.form

    Hi, Im trying to edit database records via my website. I have the code done except that one line keeps bringing up errors. The MYSQL statement has incorrect syntax and I cant get it right. Id really appreciate help!! Many thanks inn advance: <% Dim DataConn Dim CmdUpdateRecord Dim MYSQL Set...
  2. E

    HTML tables and the controls therein

    Hi, as far as I can tell the table sizing in html is fluid and depends partly on the parameters you give (your 100%) and on the content. Im just learning CSS and it appears that you have much more control over table structure with CSS. Go to http://www.w3schools.com/css for excellent tutorials...
  3. E

    Underlined merged fields in word

    you probably need to disable hyperlinks (tools, autocorrect, autoformat as you type: Internet anbd network paths as hyperlinks)
  4. E

    Set font on input type=file

    thanks. Will it still do the function of the 'Browse' button automatically then?
  5. E

    HTML <table>

    <img scr="path/imagename.jpg" width="12"> the 'width=' restricts the image width to x pixels. You can also use 'height=xx' to restrict the height. Inside <td> you can also use padding. Eg: <td style="padding-left: 20px; padding-right: 20px; padding-top: 10px; padding-bottom: 10px"> the stuff...
  6. E

    Set font on input type=file

    Hi, can anyone tell me if its possible to specify the font on the 'Browse' button of an 'INPUT TYPE=FILE' field? I know you can change the font in the text box, but I can't change the button font. many thanks
  7. E

    Web hosting

    depends what you are doing, but www.redstation.co.uk gives you 1 year free hosting if you buy the domain name through them. I find they are excellent for support response & up time and their control panels are really good to navigate. only problem is I assume you are not in the UK, so if you...
  8. E

    only first word of record displayed

    I see, so the apostrophe has to replace the quote mark. excellent, thanksvery much!!
  9. E

    only first word of record displayed

    Hi, I kind of see wht you mean, and Ill have to play around with it and see if I can get it to work. thank you very much for your help !!
  10. E

    only first word of record displayed

    Yeah, the thing is tho' that mine are inside 'Response.write ("' and then the html. Apart from that fact, i's the same principle as Im using on jmail forms and the like elsewhere. The code that retrieves the values is: Response.write ("<tr>") Response.write ("<td align=center><font...
  11. E

    only first word of record displayed

    Hi, thanks. right, I did that, giving it the value 'my test value' and it only displayed up until the space. entering 'my Test Value' as the value brings up 'my test value' as the response.
  12. E

    only first word of record displayed

    Hi, I'm afraid that's not it I think the problem comes from the fact that the hidden value is stored in the database; if I change the input type to a text box, it still only shows up to the first space. It cant be the length restriction (unnecessary as it is), as if I typed in "my test value"...
  13. E

    only first word of record displayed

    Hi, no, its in a "form method=post action=" set in html and asp: the data that is in the hidden fields below is only displayed on the form it posts to (moredetails2.asp), but it only dissplaays the first word of that data: do until rs.EOF response.write("<tr align=center>")...
  14. E

    only first word of record displayed

    Hi there, on a website Im designing, i have a searchable shop which is populated from an access db. You click on a thumbnail image in the shop and it gives you more details about the item on another page; this is done using the form method post action, and the extra details are stored in a...
  15. E

    Image in report not printing

    I have an image in a report which is there on screen but doesnt print on my inkjet. Have tried bmp, jpg, linked and embedded, nothing works. It prints on my laserjet, however. Even so, Im sure it's not the printer settings as I print images all the time. any ideas gratefully received!
Top Bottom