Search Result
Collapse
4 results in 0.0013 seconds.
Keywords
Members
Tags
-
hd95 started a topic How do I select multiple SPECIFIC sheets from an Excel Workbook?in Visual BasicHow do I select multiple SPECIFIC sheets from an Excel Workbook?
I know how to select 1 sheet or all sheets for an export command, but how would I for example, select "sheet1" and "sheet3" while ignoring "sheet2"? -
How to echo text from character 2-27 in a file
I have a file and I want to echo the text from character 2 to 27. How can I do this?
Thanks -
How can I pick and show a specific line from a text file with PHP?
I have a text file with URLs. It is something like this below:
http://site1.com/whatever.php
http://site2.com/whatever.php
http://site3.com/whatever.php
http://site4.com/whatever.php
http://site5.com/whatever.php
http://site6.com/whatever.php
http://site7.com/whatever.php
....
And I want to:
-Pick the first URL and put it in a variable
-Pick a random URL... -
Xsd - xml must contain element with specific attribute value
Hi,
I have the following 3rd party xml which has to be validated:
For later transformation (xslt) it is required that item Id=2 exists and its attribute Value may not...Code:<Items> <Item Id="1" Value=""/> <Item Id="2" Value="someValue"/> <Item Id="3" Value="someOtherValue"/> </Items>