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!

Recent content by CubeE101

  1. CubeE101

    Solid Cubes in DXF

    Just out of curiosity... Have you looked here: http://usa.autodesk.com/adsk/servlet/item?siteID=123112&id=5129239 For example, in the AutoCAD 2005 PDF on page 65... http://download.autodesk.com/prodsupp/downloads/acad_dxf.pdf 3D Solid The following group codes apply to 3dsolid entities. In...
  2. CubeE101

    XPath 2.0 Functions in IE

    I am having the same problems as described in post: thread426-1042988 Has anyone figured this out...? ...or does IE just not support the 2.0 functions...??? My code includes... <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"...
  3. CubeE101

    Starting out in assembly

    If you want a free (legal) one... A86 is another choice... http://eji.com/a86/ Nasm, as mentioned above is another... http://sourceforge.net/projects/nasm Though, if you can find it, I'd suggest TASM, which was borland's assembler... That has been my favorite... And if you want to just give...
  4. CubeE101

    ARM assembly help needed

    STRLTB STR - Store LT - Less Than B - Byte CMNNE CMN - Compare Negative NE - Not Equal MCRRHI MCRR - Two Arm Register Move HI - Unsigned Higher (Greater Than or Unordered) RSBEQ RSB - Reverse Subtract EQ - Equal RSBEQS RSB - Reverse Subtract EQ - Equal S - Ubdate Codition Flag EOREQ...
  5. CubeE101

    Odd behaviour of DOM

    That's what I got out of it too... For some reason, I guess I thought that... SelectSingleNode("//Child[3]") Was creating an collection and selecting the third instance the same way that... SelectNodes("//Child") Creates a collection... O-Well... You can still use...
  6. CubeE101

    Windows Explorer Mimic

    That is a windows setting too... Tools >Folder Options >General >Browser Folders >Open each folder in the same window (It is the frame right under the Common Task Bar option) Not sure where it is kept in the registry, or how to set it programmatically... Visit My Site...
  7. CubeE101

    Odd behaviour of DOM

    I am getting mixed results when trying to select specific nodes... Using this XML as a reference: <DocumentRoot> <Parent> <Child>1</Child> <Child>2</Child> </Parent> <Parent> <Child>3</Child> <Child>4</Child> </Parent> <Parent> <Child>5</Child> <Child>6</Child> </Parent>...
  8. CubeE101

    Windows Explorer Mimic

    O...K... I did a little registry hacking and found the Key to turn off the Task Pane... HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\WebView 0 = Classic View (No Blue Bar) 1 = Common TaskBar (Blue Bar) The idea I had was this: Using a Directory Box (Dir1) And a Web Browser...
  9. CubeE101

    how to draw points onto a frame control?

    ...Change the Value to 3 - Pixel Or use ScaleX and ScaleY... Private Sub Command1_Click() For i = 1 To 8 For j = 1 To 8 Picture1.PSet (ScaleX(i, vbPixels, vbTwips), ScaleY(j, vbPixels, vbTwips)) Next Next End Sub *Note: ScaleX & ScaleY are actually methods of the Form, so...
  10. CubeE101

    XML Basic Question

    Yes, it is different... Opening a text file, such as... Open sourceFile For Input As #1 ... Close Simply gives you access to the string contents of the file. On the other hand... Dom.Load sourceFile Opens the file, parses the contents and creates an object structure reprensentation of the file...
  11. CubeE101

    XML Basic Question

    Try the Sub I posted above like this: CopyTags "Source.xml", "Target.xml", "text:span" If you don't want the <result> tags around the result, do this: Sub WriteTags(sourceFile As String, targetFile As String, TagToCopy As String) '*** Setup Source DOM Dim DOM1 As DOMDocument Set DOM1 =...
  12. CubeE101

    confused about &lt;apply-templates/&gt;

    ...Or if your lazy like me ;-) select="//mynode" Which ignores the Path and selects all <mynode> tags in the document... Warning: Depending on the structure of your document, this could have adverse effects... so proceed with caution ;-) Such as in... <A> <mynode /> <B> <mynode />...
  13. CubeE101

    XML Basic Question

    What exactly are you looking for in the file? Specific Tags or Text in the tags? You can use DOM to do either very easily... Next, do you want the target file to be in XML format, or just Text...? Give me an example of what you are trying to do, and I can give you an example of what you could...
  14. CubeE101

    xsl variable scope

    I described the Scope of variables in this thread: thread426-1063382 Visit My Site PROGRAMMER: (n) Red-eyed, mumbling mammal capable of conversing with inanimate objects.
  15. CubeE101

    XSL: link open in new window

    It would be easier to help you if you can provide a sample of the XML you are working with... Like Jon suggested, check the info element and make sure it includes a sub node "link" The names are case sensitive... "link" will not match <Link> but will match <link> BTW... I have had trouble...

Part and Inventory Search

Back
Top