Search results for query: *

  1. V

    Browser Helper Object (BHO) in VB.NET

    All: I have searched these forums for examples of BHO creation with VB.NET and found a few links that no longer exist. I want to write a browser helper object (BHO) in VB.NET, but quite honestly have no idea where to start. I have read a lot of stuff about writing BHOs, but most of them deal...
  2. V

    customize XML from template

    I want to be able to map an XML file to an XSD from VB.net. Has anyone ever done this? Write now, if I use the writeXML function it defaultly writes an XML file like this: <tableName> <row1> <column1>value</column1> <column2>value</column2> <column3>value</column3> </row1> ... </tableName>...
  3. V

    passing information

    I am trying to pass information from one form to another. I can do this by creating a new instance: dim newForm as new form2 newForm.showDialogue And that works great when I am doing that, but the problem is... I want to pass stuff from THAT new form back to the original form. Since that...
  4. V

    Split Audio in VB.NET

    I am looking for a nice way to write a program that stores start/end times and then will be able to batch the files out as individual audio files. OR we can do it like SoundRecorder does it: create a dummy file each time and "Delete Everything Before Current Position" and "Deleter Everything...
  5. V

    VB.net and mySQL

    I have tried many different tutorials trying to connect to a mySQL database from a windows application. None of them have worked. The most recent one is found at: http://www.vbdotnetheaven.com/Code/Jun2003/2097.asp When trying the code found on that page (and after changing everything to...
Back
Top