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 bkrike 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: *

  1. furtivevole

    Highlighting previously selected item on gridview

    Hi I have a gridview which includes a hidden ID field, a customer name field, and some other basic customer-related stuff. This is displayed in a panel with scrollbars at the top of the page, and the displayed columns are all sortable. The panel is 5 lines deep and so can display only a...
  2. furtivevole

    Referencing another object

    I'm attempting some asp.net pages for the first time. In one situation, I have a list of items, and need to highlight the one that currently has the cursor over it. So far, so good: <dl> <dt id="menuitem1" onmouseover="this.className='menuitem_over';"...
  3. furtivevole

    How to close a page launched from gridview hyperlink

    Hi I have just been asked to take on an existing asp.net project for the first time. In one case, the results of a search are displayed through a gridview, with one of the columns being defined as a hyperlinkfield. This launches a separate page (currently, target="_blank"). The user would like a...
  4. furtivevole

    secedit.mdb - access denied

    Hi On a standalone XP Pro SP3 machine, I was hoping to set up IIS. The installation asked for various .dll files which it claimed it couldn't find, though they were clearly in the given location. Googling further, (eg MS KB 894351) I followed instructions to rename/move secedit.mdb [dated about...
  5. furtivevole

    Retriving XML-format data from web service with classic asp

    Hi Using classic asp, I'm trying to retrieve a string including xml tags from an intranet web server: <% Function GetHTML(strURL) Dim objXMLHTTP, strReturn Set objXMLHTTP = Server.CreateObject("Msxml2.ServerXMLHTTP.3.0") objXMLHTTP.Open "GET", strURL, false objXMLHTTP.Send...
  6. furtivevole

    Default Word 'SaveAs' folder

    I have an html page (asp & vbscript) that launches documents within an iframe. If a user wants to save a document, I would like them to have a different default SAVEAs folder from the one where the document is resident. I guess that there is something within the Word object model that would...
  7. furtivevole

    Document display with a difference

    I am using asp classic [not .net] with vbs/jscript. There is a requirement to allow users to View a pre-determined document (a) without showing the user its location and (b) allowing only a Save As... The great majority are .pdf or .doc. (The document path, based on earlier user choices, is...
  8. furtivevole

    File browse without upload

    My user wants to search the network for a file (in the context of an html form) and then store its path without immediately uploading it. Is there a way just to show a client-side browser? thanks.
  9. furtivevole

    Extracting full path from drive letter

    Hi I'd like to be able to take a conventional letter-mapped path, say, "H:\SomeFolder\SomeFile.exe", and convert it into a full path, "\\MyServer\ParentFolder\SomeFolder\SomeFile.exe". This is so that an individual user with their own drive mappings can identify a file which (assuming...
  10. furtivevole

    Running Access function from web page

    I have an Access db that has been populated from a series of asp web pages. The user now needs to run a function (held in a Module) from the web: this involves some complex manipulation and can't be handled as a query. I'm stuck on how to do this. Many thanks.
  11. furtivevole

    Line feeds in xml

    I am working on an app (in RealBasic, to run on Linux) which includes dynamically creating and then adding to an .xml file. Problem is that while it parses and displays OK in say Mozilla, the stripping-out of any line feeds makes viewing and occasional editing with a text editor such as vi, very...
  12. furtivevole

    Detect end of of .exe

    I am using a proprietary script to launch a series of software installations chosen by the user from a menu. The installations are done through either msiexec.exe or setup.exe. It is vital that one installation has completely finished before the next begins. However, some of them have other...
  13. furtivevole

    Shortcut argument info

    I am hoping to mimic an existing Start -> Programs menu shortcut within a separate application. The original installation that created the shortcut also included some additional arguments (set at install time and not constant). Drilling down from C:\Documents and Settings\<%username%>\ etc...
  14. furtivevole

    Identifying email sender

    I'm setting up an email response to an event using CDONTS or similar, including the line that's always quoted as something like: oMail.from = me@mydomain.com The app will be used by intrenet users worldwide, all AFAIK with Outlook clients. How do I get the real value for me@mydomain.com...
  15. furtivevole

    Complex SQL selection?

    I have a table holding info about software builds, part of which - very simplified - looks like this: Product Version Release Other fields Prod_1 1 1 Data for rel 1 Prod_1 1 2 Data for re1 2 Prod_1 1 3...
  16. furtivevole

    Legal characters for table names

    I am creating tables in an existing db whose names are derived dynamically, and include a string picked by the user from an external list whose contents I can't control. I've already discovered that the stop and hyphen characters cause the CREATE to fail (it's done with vbs in an .asp page...
  17. furtivevole

    Form field validation

    In an HTML form, there is a potential field whose existance depends on a previous user action. Before submitting the form, I have to check that the field both exists and is suitably populated. The client-side code for this is: //Code A var strNameX=document.FrontPage_Form1.Name...
  18. furtivevole

    Front Page 'scripting' query

    Using FP 2000, one page in the web is shown via the scripting tab only, no preview tab, and attempting to switch to normal view produced the following: This page contains scripting code that could be changed if you switch to Normal view. All other pages are OK. Any suggestions please?
  19. furtivevole

    Minimise or hide DOS window

    As part of a larger process I have to launch a 3rd-party script, currently with syntax similar to the following: cmd.exe /c "xyz.bat ...etc" I'd like the DOS window to be either minimised or hidden when this launches so that it's not obvious to the user. Is there any elegant way of...
  20. furtivevole

    Word form - table of contents

    I have a Word 97 document, in whcih the majority of sections are protected and contain form fields including text, drop-down and check box fields. Occasionally the doc may need to be unprotected either by self or by users, one reason being to refresh the table of contents. I've already...

Part and Inventory Search

Back
Top