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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. 534dna

    XML DOM in VBA: Moving or copying nodes

    Hi folks, I have an Access application which takes an XML document and converts some attributes to tags ( see my previous topic: http://www.tek-tips.com/viewthread.cfm?qid=1688142 ). I need to expand on this. I have a node called "view" and I need to convert its "name" attribute to a tag. This...
  2. 534dna

    Windows security locks PC, how can Access send an email out....any ideas

    Yes test it first to see if the report goes out. If it doesn't you could turn off automatic locking. Not very secure though.
  3. 534dna

    Button on form to collect data via email.

    It seems that removing referential integrity from the table has solved the issue. I still do not understand why this only causes a problem when using a button. I would have thought that referential integrity on the tables relationship would not matter if you used a button for the macro or not...
  4. 534dna

    Button on form to collect data via email.

    Hi folks, I have quite an annoying problem here. I have a form in my database and i have created a button to open the collect data via email wizard. I used a macro which selects the table and then opens the collect data via email wizard. The macro works fine when i open it from the navigation...
  5. 534dna

    Editing a txt file using Access VBA

    Thanks for the reply. That code runs but doesn't seem to do anything with my xml file. It runs without error but the xml file remains the same.
  6. 534dna

    Editing a txt file using Access VBA

    Thanks for that link. I can't seem to get past the code provided in that link. I need to get the "id" and "difficulty" attributes. The code in the tutorial works but does not show me the attributes. I have looked online and nothing I have found will work.
  7. 534dna

    Editing a txt file using Access VBA

    Thanks for that link. I've tried to get the attributes out and I'm not sure what i'm doing wrong. Can't find much information online on this. This is the code I have so far (consists mostly of the code from the link you supplied). The first sub is run by a button. Private Sub XML1_Click() Set...
  8. 534dna

    Editing a txt file using Access VBA

    Thanks for that link. I've tried to get the attributes out and I'm not sure what i'm doing wrong. Can't find much information online on this. This is the code I have so far (consists mostly of the code from the link you supplied). The first sub is run by a button. Private Sub XML1_Click() Set...
  9. 534dna

    Editing a txt file using Access VBA

    Sorry the second bit of code should be: <question> <id>01</id> <difficulty>easy</difficulty> <name>user1</name> <body>Question blah blah</body> <date> <date year="2008" month="5" day="17" hour="2" minute="31" second="11"/> </date> </question>
  10. 534dna

    Editing a txt file using Access VBA

    Hi folks, I have an XML file which I need to modify in MS access. In the XML file I have some code like this: <question id="01" difficulty="easy"> <name>user1</name> <body>Question blah blah</body> <date> <date year="2008"...

Part and Inventory Search

Back
Top