Search results for query: *

  1. G

    Frustrated with XML into a dataset to read

    Ok bad title, I agree. I tried to implement the strXML into a dataset but gave up in the end, so started using the XML document and node objects. Cheers for all your help geezers! :) You're a light to the .NET vibes. Keep it funky.
  2. G

    Frustrated with XML into a dataset to read

    Frustrated with extracting XML node information Hello, I am having issues with loading a string which contains XML into a xml document then reading the node. The XML I get back looks something like this.. <?xml version="1.0" encoding="ISO-8859-1" ?> <answer details="(&apos;03/Sep/07...
  3. G

    Debug added module class

    I added it as a project. I have tried to edit the project seperatly but it looks like it has molded itself into the main project.
  4. G

    Debug added module class

    Hello, I am wondering if any of you can help me! I have a vb.NET project with an added class library (different project). When I try to run the program (to debug) I get the attached message.. (Error message: "The following module was built either with optimizations enabled or without debug...
  5. G

    Solution to type word.application is undefined

    I probably should mention that I did add lots of library references to the project. i.e. Word 11.0 .COM object, Office 11.0 COM object, Word.NET object, etc. Whether they've had an effect on it.. I'm clueless!
  6. G

    Solution to type word.application is undefined

    type word.application is undefined type word.mailmerge is undefined etc. I got these errors. I found adding.. (at the top, above procedures) ''UNKNOWN IF NECESSARY Imports System.Runtime.InteropServices Imports Microsoft.Office.Interop.Word Imports System.windows ..Then expand the...
  7. G

    Add a Handler with the procedure name in a string

    ok. Why can't I pass a procedure name as data to reference a procedure? >>Aggh! Create Delegate! Hopefully this is the answer I was looking for! Thanks for the help. :D Delegate help (reading at mo): http://www.codeproject.com/vb/net/Delegate.asp
  8. G

    Add a Handler with the procedure name in a string

    Hello, Does anyone here know how to call a procedure named in a string.. I have.. sub doThisClick(ByVal sender As System.Object, ByVal e As System.EventArgs) msgbox "Clicked!" end sub dim nameOfProc as String nameOfProc = "doThisClick" dim btnNew as new button addHandler btnNew.click...
Back
Top