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 SkipVought 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. cvdtbrrsln

    create XML from excel file

    Sub XML() Open "C:\books.xml" For Output As #1 Print #1, "<?xml version=""1.0"" encoding=""iso-8859-9"" ?>" Print #1, "<books>" 'Sorry. In VB, variable's name do not contain "-". It would be underscore "_". Dim row_index row_index = 2 ' First record. Do Until Cells(row_index...
  2. cvdtbrrsln

    create XML from excel file

    Let's write a macro. 1. How can we reach content of any cell? For A2 cell, we have 5 ways, a. Cells(1,2) Cells(row-index,col-index) b. Worksheets("Sheet1").Range("A2").Value c. Worksheets("Sheet1").Cells(1,2).Value d. Sheet1.Cells(1, 2).Value e...
  3. cvdtbrrsln

    Disabling links using css for a print preview

    te get the other solution, we cancelling a line in the <script> block.. ... //document.links[i].parentElement.className="hideAnchor"; document.links[i].parentElement.style.visibility="hidden"; ...
  4. cvdtbrrsln

    Disabling links using css for a print preview

    I developed vongrunt' solution.. <html> <head> <style type="text/css"> .hideAnchor{ display:none; } </style> <script language="javascript"> function removeAnchors() { for(i=0; i<document.links.length; i++) document.links[i].parentElement.className="hideAnchor"; }...
  5. cvdtbrrsln

    shortening script

    <html> <head> <script language="JavaScript"> var counter=3;//sample value var colspanvalue; colspanvalue=5-counter; </script> </head> <body> <table border="1" cellpadding="0" cellspacing="1"> <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr> <tr> <script...
  6. cvdtbrrsln

    form calculations

    <html> <head> <script language="JavaScript"> function calculate() { var l; var w; var h; l=parseInt(document.forms[0].length.value); w=parseInt(document.forms[0].width.value); h=parseInt(document.forms[0].height.value); var r=0; r=l+w+h...
  7. cvdtbrrsln

    Replace frame src

    Let be index page <frameset rows=&quot;100,*&quot;> <frame name=&quot;frameTop&quot; src=&quot;t.htm&quot;> <frameset cols=&quot;100,*&quot;> <frame name=&quot;frameLeft&quot; src=&quot;l.htm&quot;> <frame name=&quot;frameMain&quot; src=&quot;m.htm&quot;> </frameset>...

Part and Inventory Search

Back
Top