Search results for query: *

  1. S

    Question Copy text from console window

    Thanks Christopherx, this is more or less what I did already... :) I created a sub called LOG and passed the log file name and the string to it.. pretty straight forward. What I was hoping for though is something copies the whole text at the end and dump it to the log file..! Maybe in VS coming...
  2. S

    Question Copy text from console window

    Thanks that helped a lot...
  3. S

    Question Copy text from console window

    Is what I'm asking for completely impossible to do? If so please tell me so, so that I gave up on it :) Thanks again !
  4. S

    Question Copy text from console window

    Hello all, I am writing a console program in vb.net 2010/.net 4.0. Through out the program there are many lines of info. presented to the user in the console window. I was wondering if there is a way to copy all those lines from the code. The reason is that I want to save the text as a log to...
  5. S

    Visual Studio 2010 ISO image

    Use IsoRecorder ISO Recorder v 2 by Alex Feinman to burn the iso image on disk then install as normal from the disk. Good Luck ;)
  6. S

    SelectedIndexChanged - How do you test this only when user clicks it

    Most welcome and good luck !
  7. S

    SelectedIndexChanged - How do you test this only when user clicks it

    It should recognize it automatically, what vb version you are using ?
  8. S

    SelectedIndexChanged - How do you test this only when user clicks it

    Strange.. I've never new about this event also (thanks jmcilhinney) , but have just checked it and it works well... !
  9. S

    Question All available xpath in XML document

    Works like a dream... thanks mate. :D
  10. S

    Question All available xpath in XML document

    I am working with this right now, This recursive sub can easily find path of all children but it will miss any sibling! Imports System.Xml Public Class Form1 Public path As String Private Sub cmdRun_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdRun.Click...
  11. S

    Question All available xpath in XML document

    Hi everyone, I am using vb.net 2010 to get data from XML file, I was wondering if there is any way to find and print all available xpath of all nodes in the document. For example: XML file is like : <CATALOG> <CD> <TITLE>Empire Burlesque</TITLE> <ARTIST>Bob Dylan</ARTIST> </CD>...
Back
Top