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

    Linked Server to Search Services

    Has anyone set up a Linked Server to Windows Search Services. I'm struggling to find the necessary parameters. Many thanks.
  2. dexeloper

    System for searching SQL tables and contents of external documents

    I've written a system in the past that searched the contents of tables and the content of external documents. This was done by using Indexing Services over the documents, creating a linked server in SQL with provider 'MSIDXS', and using an openquery statement in SQL to search the contents. If I...
  3. dexeloper

    WSH write Chinese to SQLServer

    I have a WSH vbscript that reads one SQLServer table and writes to another. Just one nvarchar column per table. Some of the 'from' data is in Chinese and a wscript.echo shows the Chinese values fine. However, when I write to the second table Chinese characters come out as '???????'. This is...
  4. dexeloper

    Regular Expression in Chrome and IE

    These two lines ... var reInt = /^\d+$/; if (!reInt(document.getElementById("xx"))){alert("error");} ... work fine in Firefox but in Chrome give me 'object is not a function' for the second line. I don't think anything else is relevant. Just trying to test the input is integer. Any ideas?
  5. dexeloper

    Send sms messages (for free)

    I can send emails via the CDO object. It's free. I want to do the same with text messages to mobiles (sms). I've googled and read umpteen websites. Personally I'm with vodafone in the UK. Various sites say send an email to telno@vodafone.net and it will appear as a message on my phone. It...
  6. dexeloper

    How to prevent wrapping

    Look at this page http://www.onedata.org.uk/diaryme2.asp I want the content not to flow down/wrap. I want to have all the text in one line with a horizontal scroll bar. I realise I could set the container div to a width of, say, 130% but the width is unpredictable. Any ideas?
  7. dexeloper

    Firefox network links

    Does anyone have a working solution for getting local network file links to work in Firefox. I've tried changing the 'security.fileuri ...' entry. I've tried the 'locallink' add-on. Don't want suggestions that haven't been tried. I realise this could go in the ASP or Javascript forum but this...
  8. dexeloper

    select drop-down position on input

    When you directly create a 'select' list in your html, the user positions their cursor there and enters a letter the list get positioned at that letter. There are examples on this site. However, when I create such a list using Ajax and innerHTML the positioning doesn't seem to happen. Any ideas?
  9. dexeloper

    href link not working

    Please tell me what's wrong here. A big box of smarties for the winner. Go here http://www.lookup.eu.com/test12.html The link isn't executing the function 'openURL'. It's going to be a terrible weekend if I can't sort it.
  10. dexeloper

    IE6 anchor links

    I'm trying to get a set of anchor links working in IE6 without using a table. All's fine in Firefox but in IE6 the hover changes just don't seem to apply. I've read about IE's 'hasLayout' feature and an onload function shows that this is set for the three levels. Visit...
  11. dexeloper

    Security for opening Word/PDF documents

    I realise I can put a link in an ASP/HTML file to a Word or PDF document and that document will be opened for the user. However, does anyone have any method for restricting access to certain documents? Is there a way of putting some sort of authentication in the link? Thanks in advance.
  12. dexeloper

    <pre> tag not working ...

    On this page http://www.lookup.eu.com/test10.html the link at the end is wrapped in <pre> tags but it still displays as a link. What am I missing?
  13. dexeloper

    CDO languagecode parameter

    I'm generating emails in SQL Server to send via Exchange. I use CDO and set the configuration parameters via 'schemas.microsoft.com/cdo/configuration'. I want to send an email that contains both English and Greek. I can see there is a languagecode parameter, which I could set to Greek, but is...
  14. dexeloper

    Floating in a block

    Have a look at this: <html> <head> <style> #outer{background:#FFAAAA;margin-left:3px;margin-top:2px;margin-right:3px;border:1px solid #777777;} #paneleft{float:right;width:28%;margin-left:4px;} .configmenu {margin-left:10px;margin-right:50px; width:100%;padding-bottom:20px;border:1px solid...
  15. dexeloper

    iframe source

    Is there any way to populate an iframe locally rather than from a server source file. I suspect not but you never know ...
  16. dexeloper

    Array equivalents

    Am I the only person who didn't know that if you say arrA = arrB then changing an element in arrA also changes the equivalent element in arrB. Try this page: <html><head> <script language = "JavaScript" type="text/javascript"> function xx() { var arrB = []; arrB[0] = "AAA"; var arrA = arrB...
  17. dexeloper

    float right

    Any suggestions for why 'Bbbbbb' isn't on the same line as 'Aaaaa' in this: <html> <head> <style type="text/css"> #bar{width:100%;height:30px;color:white;padding-top:5px;background:#888888;} #baright{float:right;display:inline;} </style> <body> <br/><br/> <div id="bar"> Aaaaaaaa<span...
  18. dexeloper

    Link hover underline

    Can anyone see why this code doesn't give hover underline: <html> <head> <style type="text/css"> #navbar{width:100%;height:30px;color:white;padding-top:5px;background:#888888;} #navbar a.nav{text-decoration:none;font-size:12pt;margin-left:20px;cursor:pointer;cursor:hand;} #navbar...
  19. dexeloper

    JScript in a WSH vbscript

    Is it possible to use jscript in a WSH vbscript. I want to use the sort array function of jscript.
  20. dexeloper

    Yui POST connection with Firefox

    A Yui question. I'm struggling to make a POST (as opposed to a GET) connection in Firefox. I think it's a known issue and there must be a workaround but I can't find it. The Yui forum I find a mess. Anyone know? Thanks for any help.

Part and Inventory Search

Back
Top