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 Mike Lewis 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. newbiescooby

    Icons in Microsoft Word Comboboxes

    Hi ya'll is there any way that i can have a combobox of icons in a microsoft word document? thanks
  2. newbiescooby

    linking from motw pages to non signed pages

    Hi I keep getting "access denied" messages from my browser when trying to link a MOTW page to a normal page. is there anyway around this? (note: i can't add a motw to my other page) Thanks
  3. newbiescooby

    Detect when window is 'deactivated'

    Hi I was wondering if there is any way that you can close a window in IE when you click on another window; ie: when you set another window as your current active window. Thanks
  4. newbiescooby

    Always allow activeX

    Never mind, i solved it by using the mark of the web on each page. Thx
  5. newbiescooby

    Always allow activeX

    I guess alternatively, by using .hta's how could i link a .htm to load an .hta without showing the active x alert box? Thanks
  6. newbiescooby

    Always allow activeX

    Hi Could you tell me how i can always allow an activeX site on my local directory in IE 6, so that it does not come up with the gold indexbar at the top or come up with a dialog, but just runs the script? Thanks
  7. newbiescooby

    onclick function in dynamically created button

    Thanks, that fixed the problem, but exposes another. When I click on the text element of the cell, it won't link to the correct function, but when i click the surrounding white area of the cell it will work perfectly. Is there any way I can mask the text element to redirect the clicks on the...
  8. newbiescooby

    How can i use \ as a delimiter

    Hi If i use \ as a delimiter ie: newstring = somestring.split("\"); i'll get a error of unterminated string constant. is there anyway that i can do this?
  9. newbiescooby

    onclick function in dynamically created button

    hmmm.. actually after further investigation the problem is in the populatetablevalue function, where it randomly does not pass the value at times. Could someone tell me why this is happening? Thanks function PopulateTableValue() { for(var row =fullRows-1; row>=5; row--) { var tableRef =...
  10. newbiescooby

    onclick function in dynamically created button

    Thanks, it seems to work using that code with buttons, but when applying it to tablecells it appears to have... erratic results. using this function below it works the first time, but after that it works sometimes, passing the row value sometimes, and null at other times seemingly at random...
  11. newbiescooby

    Adding a button or label inside a dynamically created table

    Hi I have the code: function PopulateTableValue(row) { var row= row; var tableRef = document.getElementById("Tbody"); var newRow = tableRef.insertRow(0); for(var i = 0; i <= 0; i++) { var Content = ContentArray[row][i]; var newCell = newRow.insertCell(0); var newText =...
  12. newbiescooby

    onclick function in dynamically created button

    Hi I wrote this function to create a series of buttons that relate to different elements of my array an pass the index value j a function. However all the buttons return the same j value. function CreateButtons() { var container = document.getElementById("ButtonContainer"); for(var i=0...
  13. newbiescooby

    2d arrays

    Hi I'm trying to set a 2d array and it's not working correctly. my code is: var ContentArray = new Array(9); //Define array for(var i=0;i<=9;i++) { ContentArray[i] = new Array(9); // create 2d array } ContentArray[0,0]="1"; ContentArray[0,1]="2"; ContentArray[1,0]="3"...

Part and Inventory Search

Back
Top