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 Chriss Miller 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. dtqbterror

    Displaying message based on the selected text box

    In the onfocus event just pass the name of the text box that you want to display the message in as a parameter to your method. Example: function displayMessage(ctlTextBox, strMessage) { document.forms[0].getElementById(ctlTextBox).value = strMessage) } <select id="MySelect"...
  2. dtqbterror

    Accessing a RETURN code from SP

    intParamValue = cmd.Parameters(0).Value http://www.chiefscoalition.com
  3. dtqbterror

    Accessing a RETURN code from SP

    Put the return value into an output parameter and then read the value from the parameter from your code. http://www.chiefscoalition.com
  4. dtqbterror

    Testing To See If An Excel Workbook Is Protected

    I have an application that opens a Excel Workbook and updates several cells. Sometime the Workbook will be Password Protected and sometimes it will not. I have searched all over the Internet to find a way to test to see if the Workbook is protected before opening it. This way I can prompt for...
  5. dtqbterror

    help with checkbox issue

    Use single quotes in place of the double quotes except to specify the strings. Using a double quote as escape character just confuses the code. example cellstart & "<input type='checkbox' name='op' " & http://www.chiefscoalition.com
  6. dtqbterror

    sending 2 parameters to a new page

    NP glad I could help. http://www.chiefscoalition.com
  7. dtqbterror

    sending 2 parameters to a new page

    You are not closing the <a href> tag. <a href="letters/letter_accepted.asp?CourseID=<%=(Course_accepted.Fields.Item("CourseID").Value)%> &PersonID=<%=(Course_accepted.Fields.Item("PersonID").Value)%> You never have the final > for the tag. %> only closes the script but does not close the <a...
  8. dtqbterror

    How to use DDE from Visual Basic to Excel Sheet

    Why are you using DDE instead of COM/OLE? http://www.chiefscoalition.com
  9. dtqbterror

    div problem

    You should use the Display property in the style instead of visibility. http://www.devx.com/tips/Tip/13638 http://www.chiefscoalition.com
  10. dtqbterror

    window.onunload

    Yea but if it was easy everyone would do it and we would be paid the same as the Fry Guy at McDonalds. You welcome however for what my comments were worth. http://www.chiefscoalition.com
  11. dtqbterror

    How to script web page naviagtion

    What do you mean availability of these system. Do you mean the availability of the pages, the web-server, or something else? http://www.chiefscoalition.com
  12. dtqbterror

    window.onunload

    I don't believe so. From what I remember javascript follows an hierarchy tree when events are fired by a page. And will only fire to the event at the lowest point in the tree. If I am wrong maybe someone else can give you a hand. I believe however that you are going to need to put the other...
  13. dtqbterror

    Read from INI File

    Here is a thread from another forum that might help. http://www.codecomments.com/message431829.html http://www.chiefscoalition.com
  14. dtqbterror

    What's the best way to get a group of elements?

    I believe the .getElementsByID works across browsers. http://www.chiefscoalition.com
  15. dtqbterror

    window.onunload

    Can you have the one on the page call the other one? http://www.chiefscoalition.com
  16. dtqbterror

    Read from INI File

    Have you considered writing your INI file in XML and then using MSXML to read it? http://www.chiefscoalition.com
  17. dtqbterror

    Multi Column Select

    Did you try using a non-blank space? response.Write string(result,"&nbsp;") http://www.chiefscoalition.com
  18. dtqbterror

    How to edit/save data on a form?

    Look into disconnected into a disconnected recordset, databinding and datagrids. http://www.chiefscoalition.com
  19. dtqbterror

    How to make HTTP POST from my vb form

    http://abstractvb.com/code.asp?A=948 http://www.chiefscoalition.com
  20. dtqbterror

    Beginner Question

    Use a WHERE Statement in your SQL Query that collects the data in the first place. http://www.chiefscoalition.com

Part and Inventory Search

Back
Top