Search results for query: *

  1. RoyLittle0

    Cant Updating picture as OLE object, but save as new record works

    HI, I have a access 2010 database linked to my VB.NET form, it has been done through databinding and is mainly through the wizard, I have a picture that is databound to my database through a OLE Object and I can add a picture and save it to a new record, but I cant update it through the same...
  2. RoyLittle0

    Accessing xml data for TabPage text

    Ok, i can now get to the point where i get all my TabPages to display the data from the first Node but i cant get them to increment on, ie Page 1, Page 2, Page 3 etc all i get is Page 1, Page 1, Page 1 This is what i am using at the moment, any ideas what i am doing wrong ? Private Sub...
  3. RoyLittle0

    Accessing xml data for TabPage text

    Hi, I an trying to access the nodes in my xml based on the selection made in a combobox and write the text to a TabControl/TabPages, the area i am struggling with is "TabControl1.TabPages(i).Text = myMachineName.Attributes.ItemOf("Page").InnerText" so based on the code below how would i get the...
  4. RoyLittle0

    How to change the Tabcontrol name based on Combobox selection

    Can anyone explain how to change the text in a TabControl, i have tried to use the sane tactics i would with a ListView but cant seem to get it right The name is being read from an xml file based on the selection made from the ComboBox, and from there it will display the contents of the xml in...
  5. RoyLittle0

    39 Tabed pages of data, what database if any is best

    Hi, i am quite new to VB.Net so i don't no that much about what databases do what and what are best for certain applications, I have 1 page which has 13 tabs and 3 buttons, both could increase, each tab contains 3 x Pictures, 3 Labels and 3 Text boxes (the text boxes will contain 200+ words and...
  6. RoyLittle0

    Splash Screen double click event to open form

    Hi, I am trying to create a basic backdoor to my program to allow access to some settings, it is to be accessed from the Splash Screen, with a double click event on the Author Label, the form opens up but closes again when the Splash Screen closes. :bawling: Is there a way of keeping this form...
  7. RoyLittle0

    Read xml file to treeview, selection to listview, modify and save

    Hi Ian, Thanks so much for your help, i wouldn't have gotten anywhere with out it, i will take a good look at the code when i get back home next week. this has all given me some good understanding but most of all and probably more importantly it has taught me that i need to sit down and learn...
  8. RoyLittle0

    Read xml file to treeview, selection to listview, modify and save

    Hi Ian, Just to change tactics a little here, on the bigger picture i think i have may have created a form that really serves no purpose, i am already using my form 1 to get the nodes displayed so i should be able to use this to modify my selection. From my main form 1 i navigate my xml...
  9. RoyLittle0

    Read xml file to treeview, selection to listview, modify and save

    Hi Ian, The attribute that binds everything together is my "id" which is unique to the whole xlm, so my understanding is that i need to relate everything back to the "id". (curNode.Attributes.ItemOf("id").InnerText) The only other thing is the location of the node itself by means of...
  10. RoyLittle0

    Read xml file to treeview, selection to listview, modify and save

    Hmm, I understand what you are saying but cant think how to get there, the only part of the code from form 6 where i am getting my information is the code below, i cant see how i can use the code from Form 1 as it is not linked to the information i am sending to form 6. Form 6 Public Sub...
  11. RoyLittle0

    Read xml file to treeview, selection to listview, modify and save

    Hi Ian, I was thinking about this last night whilst watching TV and have realised that i cant do this from getting data from the text boxes i need to reference the node, the easiest way would be from teh selection made from teh treeview , so the below code sends the nede data to the Listview so...
  12. RoyLittle0

    Read xml file to treeview, selection to listview, modify and save

    I now have my code to lets me show the treeview and select items to view in a listview, on clicking the listview they are displayed in 3 text boxes, pressing the Update Button a new Form opens where i can see what was original and make my changes, i then have a button that will update the xml...
  13. RoyLittle0

    Adding data to listview from xml to two columns

    Thanks Ian, In all the searching on the net i have never come across that link before, i'll work through it over the weekend Ok, it makes a little more sence now Module Imports System.Xml Module Module1 Public xmlDoc As New XmlDocument() End Module Form 1 Option Strict On Imports...
  14. RoyLittle0

    Adding data to listview from xml to two columns

    Thanks Ian I have set a module in Form 1 for my xmlDoc so that i can use it in any form if needed, what method do i use to call this to load my treeview in another form, i have also set a Public Module in form 6, i have looked on the internet but cant seem to find much info on this. Just...
  15. RoyLittle0

    Adding data to listview from xml to two columns

    OK, i have 1 xml file that is loaded into form 1, it is in a Public Sub and i wont to be able to use this in my form 6 that i will be using as a xml modify/save form, how do i link the two forms so that i do not have to open the xml twice. Form 1 Option Strict On Imports System.Xml Imports...
  16. RoyLittle0

    Read xml file to treeview, selection to listview, modify and save

    OK, i'm sure you will all be horrified when you see my code, but i'm learning :) This is as far as i have got, its not pretty but we all have to start somewhere and it is just a pet project, i can open up a file dialog box to select my xml and read it to the treeview, it then get the selections...
  17. RoyLittle0

    Adding data to listview from xml to two columns

    Hi Ian, Thanks for that, i was working on something yesterday and came up with the same error, now i know why i got it. I have been looking at a few different solutions and i am learning, so for me that is the end game, this project is just a means to learn and i'm finding it all interesting...
  18. RoyLittle0

    Adding data to listview from xml to two columns

    Hi Ian, Thanks for the advice, i didn't want to go down the wrong path at the beginning, if i create a save form for this do i need close the xml reader on leaving the first form, load it into the save form and then close after read, after save when i leave the save form, reopen it again in the...
  19. RoyLittle0

    Adding data to listview from xml to two columns

    I have been wondering about doing a database save form for my xml that i can recall a node by its id and modify the "Name" and "Label" tags then save it, how could this be achieved with the xml document already opened by the program, would it need to be saved as a temporary file until the...
  20. RoyLittle0

    Listview horizontal scroll bar keeps disapearing

    It would normally be Brain to Mouth filter problem, as i aparently speak just before thinking, gets people a little upset when i say what is in my head before thinking what i should say :homer:
Back
Top