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

  1. Crackpot21

    DIV ID Hover

    You could do something like: CSS: .list{ padding-left: 30px; } .list a:hover{ color: red; } HTML: <div class="list"> <a href="whatever">Blah</a> </div>
  2. Crackpot21

    shell.run is not running

    I do not know the specific answer. From previous dealings with the .run command, I remember that sometimes there needed to be double quotes in some cases. The best troubleshooting step you could try might be to set the line you are trying to run to a variable and then verify what exactly is...
  3. Crackpot21

    Conditionally show a button based on Scripting

    You do need brackets. This is what ended up working for me: <script lanugage="javascript"> document.write("<div id='js' class='printbutton'>"); document.write("<input type='button' value='Print "Document' onclick='iPrint(myFrame);' />"); document.write("</div>"); </script> Thanks for the help.
  4. Crackpot21

    Conditionally show a button based on Scripting

    I am hoping this is easy, but I have been searching all day with no success. What I am doing is very simple: I have a page with an iframe and a button to print the contents of the iframe. When the page opens, the browser security chimes in with the "Do you want to ...." I would like the print...
  5. Crackpot21

    I need to copy file to C;\ after I browsefor file

    Here is a short HTA script that will do it. Has a browse for a file, a process copy button and exit button. Save into a *.hta file and run. <html> <head> <title>Copy a File</title> <HTA:APPLICATION ID="oMyApp" APPLICATIONNAME="My Application" BORDER="yes" CAPTION="yes"...
  6. Crackpot21

    Naming conventions

    I have seen in various training materials it done either way. It usually is what is more comfortable to you and if you develop with a team, to stay uniform.
  7. Crackpot21

    Textbox

    Being in a TextChanged event, wouldn't the value of Me.ytdFuel.text have to be changed before this event would be triggered?
  8. Crackpot21

    need script to report status of a specific service

    Check the following post. It my provide what you are looking for or enough to get a start. http://www.tek-tips.com/viewthread.cfm?qid=1248157&page=6
  9. Crackpot21

    Deleting records from table depending on field length

    I am trying to delete all the records from a table based on the length of the client name. I have tried the following, but with no success. DELETE ALL FOR LEN(Client) = 2 Any help would be appreciated.
  10. Crackpot21

    Error being recieved when trying to run a program

    TQ6.exe - Application Error 0x7c82f585 referenced memory at 0x00000012, the memory could not be read. Click OK to terminate.
  11. Crackpot21

    Error being recieved when trying to run a program

    I work for a software vendor that creates our own software. During some testing with a Windows 2003 Server, logining in as the Administrator. When I try to launch our application, I get an application error message. Also installed on this server is Visual Studio 2005, SQL Server 2000 and 2005...

Part and Inventory Search

Back
Top