Search results for query: *

  1. K

    repair deployed Access database

    I recently published a forms application in vb 2005 express. Included in this application is an access database. The program is behaving as if the database has been corruped, what I'd like to know is....is there a way to open a mdb.deploy file and possible compact and repair it? I looked for...
  2. K

    simple question...about xml attribute prefix

    I've been trying to build an xml document in VS 2003, where I use rootNode.setAttribute("xsi:schemaLocation", "http://www.somwhere/org"). When the document is created the attribute is missing the "xsi" prefix...any ideas why?
  3. K

    File Transfer for VERY large files

    Hello all, I find myself faced with a problem. I'm writing a vb,net application (2005) to do a one way file transfer. I've done this kind of thing before without too many headaches at work. However, I'm going to be sending VERY large files upwards of 5 Gigs and the code I have won't handle...
  4. K

    writing XML Confusion...

    Do any of you guys/girls out there know how to rewrite this code to work with the xmlTextWriter class? I need to re-create a document similar to this but preserve the formatting. Any help or ideas would be much appreciated. Thanks in Advance. :) Dim sw As New StreamWriter(New...
  5. K

    Random Database Entry retrieval

    This may give you some ideas : Public Function getQuestion() As String Dim rowCount As Integer Dim randomNumber As Integer Dim filePath As String = "the path to your database" Dim tableName As String = "the name of a table in your database" Dim...
  6. K

    DataTable from XML Schema ?

    Thanks for the reply :). I think I should have been more specific in my post earlier, sorry about that. Any way, here is my situation. I have and existing XSD Schema, and what I would like to do is create a dataTable to hold data with the constraints defined by the XSD file. I will need...
  7. K

    DataTable from XML Schema ?

    I was wondering is there a way to create a datatable based on the criteria defined in a XML Schema File (XSD)? I have to grab data from a MS Access table, then convert it into XML Data and validate it against a pre-defined XSD Schema. The Schema is quite large, and it would be very time...
Back
Top