Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by krionic

  1. krionic

    MessageMap with Dynamic Controls

    What I'm trying to do is handle an event of a control created during runtime. Example: User does something that makes the app display 1 to 3 buttons. Lets say in this instance it generated 2 CButton Here is some sample code of what i'm doing. I'm wrapping CButton to make my own button class...
  2. krionic

    Connecting to Informix DataBase?

    It wont matter what language you are using as they all use the .Net framework You should be able to connect to informix using ODBC. I cant really help you out as I have no experience in doing it but you should check out MSDN Library as it tends to be quite useful. But, I think you'll have to...
  3. krionic

    System.Xml.XPath

    Hello, I sure do hope there are some XPath/XML gurus out here. I'm pretty new to working with XML in .net So I'm sure my problem is I just dont know how to do what I'm trying to do XML File <Data> <Employees> <ID>1</ID> <Name>Krionic</Name> </Employees> </Data> XPath Reader Dim...
  4. krionic

    Garbage Collection... Finalize

    Chip, I tried that also. But didn't fix the problem. I stripped out all the filestream and xmlwriter stuff from the function and just used DataSet.WriteXML and DataSet.ReadXML and I didn't have a problem. So my conclusion is that the readXML and writeXML methods of DataSet function perfectly...
  5. krionic

    Garbage Collection... Finalize

    should be: Dim obj As New nsMain.clsMain dsdataset = obj.getXMLData("E:names.xml","Names") I left out an argument but thats where the problem is. just wanted to correct here so that I dont throw anyone for a loop
  6. krionic

    Garbage Collection... Finalize

    Hello. Wonder if anyone knows a solution to my little problem. From a form I populate a dataset using Dim obj As New nsMain.clsMain dsdataset = obj.getXMLData("E:names.xml") and getXMLData is a function in a seperate class Public Shared Function getXMLData(loc As String, name As String)...

Part and Inventory Search

Back
Top