Search results for query: *

  1. M

    saving treeview to text

    i tried to use this but the problem with it is that I have nodes at a ground level i.e... decl ' comment ' comment ;fold' this begins a new treenode but i dont want it to go to the textbox ; blah blah blah ;endfold ' this ends the node For Each parentnodehold In tvnode.Nodes 'Whatever...
  2. M

    saving treeview to text

    I have a treeview and i want to save each node to text. Im not sure how to go about it.
  3. M

    msdn

    apparently i have a scratch in my disk1 of msdn. i bought a new laptop today and installed visual studio .net with no problems. but when i went to install msdn it had issues finding files. is there somewhere where i can download an iso?
  4. M

    adding new node at selected location

    im gonna have to digest that question for a minute :)
  5. M

    im stuck

    heres a file of text that would go along with it to be read in &ACCESS RVP &REL 37 &COMMENT TIPDRESS FUNCTION DEF TIPDRESS1 ( ) ;FOLD INI;%{PE}%V2.3.0,%MKUKATPBASIS,%CINIT,%VCOMMON,%P ;=================================== ; SHELL - Package KR C1 ; Version 1.2.3 ; Date: 03.11.98...
  6. M

    im stuck

    I know you guys arent here to fix my code... but i have run into a problem what i am doing is using a treeview to read a file that has been loaded into a text box. everytime the word ";fold" appears, it will create a new treenode and add children to it until the word ";endfold"...
  7. M

    adding new node at selected location

    i have no problem adding a node to the treeview. my problem is finding where in the treeview is currently selected, and then to add (append) a node from there.
  8. M

    adding new node at selected location

    i know i can do tv.SelectedNode.Nodes.Add("") but what if i want to add a line to the root node?
  9. M

    adding new node at selected location

    i want to be able to press the enter key on my treeview and add a new node at that location, Im really struggling with this solution.
  10. M

    changing richtext from treeview

    I am using a treeview control to modify program codes so i can expand and contract similar to #region. the file will first get read into a richtext box. what i want to happen though is when i change the label on a treeview node, i want the richtext line to change as well to reflect it. this is...
  11. M

    treeview syntax highlighting

    I may be addressing this question wrong, but i will try to draw a picture of what im trying to ask.. is it possible to incorporate richtext functionality into the treeview? I do remember doing some tutorials last year that allowed me to change some things in richtext but i havent had...
  12. M

    treeview syntax highlighting

    I am bound to using fold and endfold but i would like it to operate the same as #region and endregion. im just not sure of the best way to tackle this.
  13. M

    treeview syntax highlighting

    yes i am trying to do somethiing like rgions but it is ;fold and ;endfold
  14. M

    treeview syntax highlighting

    im trying to create a treeview control that will be used instead of a text editor. this will allow me to expand and collapse code. is it possible to have syntax highlighting with this control?
  15. M

    treeview question

    :bump i guess what would help me is jsut to know how to add and new nodes to the form. i have tried to look some things up but it uses treeview1.selectednode.nodes.add when i run this, i end up with an error because there isnt a node selected due to they are added programattically. example...
  16. M

    treeview question

    i am trying to create a treeview that is going to be used as a text editor. when the word ";fold" appears, a new child should be created and nodes will be added until the word ";endfold" appears on another line. here is the code i have for it but it is incorrect and im not sure what im doing...
Back
Top