Recent content by hkimpact

  1. H

    share access file

    With all the possible chances of corruption I choose to split my databases into a Front End and Back End. Does your company have a terminal server?
  2. H

    PW Turned in Query

    Thanks JDdraw. There really isn't spaces in the field names. I guess I just typed them that way on here for some reason. I am actually ending this thread now since I ended up figuring it out on my own. Again I appreciate you getting back to me!
  3. H

    PW Turned in Query

    I have 2 tables that I wish to get information out of, but I am unsure how to set up my query. I hope one of you can assist me. Intake Intake ID Date Of Intake(Date/Time) Caseworker(Text) Risk Assessments Intake ID Substantiation Risk Level(Text) Substantiation Risk Complete(Yes/No) 3 Month...
  4. H

    export data with outputTo

    Hello - Instead of using OutputTo, try using TransferText. I think I was having this problem a while back and resolved it with the TransferText method. expression.TransferText(TransferType, SpecificationName, TableName, FileName, HasFieldNames, HTMLTableName, CodePage)
  5. H

    Custom Msgbox Form

    Ya I could see the frustration in not getting a response, but luckily I'm a patient person :)
  6. H

    Custom Msgbox Form

    That was exactly my problem.... I just created a new module and my variable there. I really appreciate all the help. I actually learned some important stuff today thanks to you. Have a good rest of the day my friend.
  7. H

    Custom Msgbox Form

    My only issue now is that gintresult is returning no value. I stepped through the process and i do see that its doing what it needs to be doing in the DuplicateNames form process...but its not returning the value to the ParticipantInfo form. Maybe I'm not declaring my variable correctly or...
  8. H

    Custom Msgbox Form

    I understand what you are talking about nschroeder, but am not sure how to pass my parameters yet. I was thinking about having a boolean value for each button (iSave, iNo, iCancel, iList) and passing them byVal to my main form. Not sure if this is the correct way of doing it, but I think I'm on...
  9. H

    Custom Msgbox Form

    Thank you for the reply - correct me if I'm wrong though, isn't that only saving on the "DuplicateNames" form and not my "ParticipantInfo" form? I'm wanting the DuplicateNames form to act as a Messagebox for the ParticipantInfo Form. I'm not at the office right now so I can't really try out...
  10. H

    Custom Msgbox Form

    Hello everyone! I have created a form named "DuplicateName", which I would like to use instead of a messageBox. This form will be ran from the results of a BeforeUpdate event of a form called "ParticipantInfo". I would like the buttons of the DuplicateName form to perform the following actions...
  11. H

    Duplicate Names

    I knew it was something to do with that IF statement! I just ran and tested it and it worked like a champ. Thank you!! My next step is to display all users with that name, their DOB, and their SS#, and Address. You may be asking why a user just doesn't do a search by SS# within my DB. Well...
  12. H

    Duplicate Names

    Hi everyone - I have a form right now which has a First name and Last Name fields (PFirstName and PLastName). I just want to be able to determine if a name possibly exists in one of my tables. The following code that I have is not working yet. Not sure what I am missing. I have 3880...
  13. H

    Got focus dropdown on tab control glitch

    BJF - I think I had this same problem happen to me one time too. This should fix your problem (but I might be reading it wrong). Private Sub cboItems_GotFocus() With cboItems .Dropdown End With End Sub I hope that is the simple fix you need.
  14. H

    Access and PDF attachments

    I have a database that automates reports in PDF format to specific folders on a shared drive. If formated correctly with a generic font (arial, times new roman, etc...) you can get the file down to a really small size (10-15kb) also this post may be helpful to you...
  15. H

    PDF optimization?

    @spikepl, Thank you for letting me know that. Its amazing how much of a difference that made in the file size. I chose Arial and it shrunk from 183kb to 24kb. Thank you for letting me know this :)
Back
Top Bottom