Search results

  1. C

    XML Node lists and VBA

    As proof of concept, I'm trying to set up a simple database to work with a UPC database API. This involves XML, which isn't something I'm very familiar with. This is what I have so far: Private Sub txtUPC_Change() Dim strURL As String Dim oReq As Object Set oReq =...
  2. C

    oUsers and Permissions: Not a valid account name or password

    Re: Users and Permissions: Not a valid account name or password ::Update:: I've regained access to my database by creating a shortcut and modifying it's target address: "C:\Program Files (x86)\Microsoft Office\Office12\MSACCESS.EXE" "C:\Users\Cody.K\Desktop\Recovery\MyDatabase.mdb" /wrkgrp...
  3. C

    Database design for tracking tracking deliveries against orders

    Which version of MS Access are you using? I'm fairly certain that there are templates for that on Office.Microsoft.com. http://office.microsoft.com/en-us/templates/results.aspx?qu=access&av=zac
  4. C

    oUsers and Permissions: Not a valid account name or password

    It seems I've overstepped in setting up Users and Permissions, in MS Access 2007, on an .mdb. When I enter any of the user names and passwords I've created, I'm told that it's not a valid account name or password. I'm wondering how this could be possible since I'm staring at them in the Snapshot...
  5. C

    Debug.Print to Form

    That's right.. :( Maybe you can help me with the question I posed to mdlueck....
  6. C

    Debug.Print to Form

    Thanks for the reply, mdlueck. As you can probably already tell, I'm new to this. I'm hoping you wont mind walking me through this: Private Sub cmdCleanUp_Click() Dim Contents As String Contents = Me.Contents Dim parsed As String parsed = Me.fldtitle Contents =...
  7. C

    Debug.Print to Form

    I made the adjustments you suggested and it's still not returning anything to the immediate. I assume this is because there are two vbCrLf's, but I'm probably wrong :)
  8. C

    Debug.Print to Form

    First and foremost, thanks for taking the time to check out my thread. What I have is a "volunteers database", which stores info on individuals and organizations who volunteer at the local homeless shelter. They receive their "volunteer applications" via email from their website, which...
  9. C

    Delineating/Parsing Values- Plain Text w/simple formatting

    Hey, Spike, I wasn't ignoring you. I had started my reply, hoping to hit on everything everyone had said, but I was cut short. Again, I appreciate everyone's patience with me here. You were right in your assumptions in #6-- the HTML has in fact been stripped. I tried to make the vbCrLf & vbCrLf...
  10. C

    Delineating/Parsing Values- Plain Text w/simple formatting

    Sure thing, sir. The field name is Contents. Data Type: Long Text Text Format: Plain Text This is what's stored in it: You've just received a new submission to your VOLUNTEER FORM. Submitted Information: Name John Doe Phone Number 555 - 555 - 5555 Address 1510 Lovely LN, Apt 206 Dirty...
  11. C

    Delineating/Parsing Values- Plain Text w/simple formatting

    Thanks for the reply lagbolt. I considered the Split() function, using <br /> as the delimiter, but as I had said: "I'm under the impression that they would have to somehow archive these messages in order to run any sort of script against them." In other words, I think the process of working...
  12. C

    Delineating/Parsing Values- Plain Text w/simple formatting

    First and foremost, thanks for taking the time to look at my thread. I've been at this for a few hours now- googling, searching threads, etc- and I'm at my wits end. What I have is a "volunteers database", which stores info on individuals and organizations who volunteer at the local homeless...
Top Bottom