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 dencom 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

    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
  5. 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?
  6. 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 =...
  7. 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...
  8. 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