Search results

  1. C

    Access db to Outlook calendar

    I had a bad sickness hit end of last week. I am getting back to this now. I am going to look over it. Thanks :D
  2. C

    Access db to Outlook calendar

    Here is my attempt at retrieving the BlodDrive folder and setting the appt in it. I get a error 438 and the following line is highlighted. Else Dim obNamespace As Outlook.NameSpace Dim objFolder As Outlook.MAPIFolder Dim objRecip As Outlook.Recipient Dim strName As String Dim objAppt As...
  3. C

    Access db to Outlook calendar

    Ok this is where I am now. I have it to where I and others that have permission to my main default calendar (ChrisCalendar) can add the appt. Now the question is to how do I designate that appt to a created calendar that is in My Calendars Folder that will be shared. My main Calendar is named...
  4. C

    Creating an appointment in outlook shared calendar using an access form

    It works great! Now to make it go to a different folder in My Calendars. :eek:
  5. C

    Access db to Outlook calendar

    Has anyone told you that you are great!!!! 424 Error in red line it comes up as (Application=1) whne moused. Not sure when we need to look at this. When this gets going, ibelieve it will go to my default calendar. I am going to need it to go to a created calendar in my outlook. Else Dim...
  6. C

    Access db to Outlook calendar

    I get a runtime error 424. Ok I have been looking at several posts and trying to get the idea of this. When i have my curser over the strName the email address comes up, but when i put it over objRecip I get = nothing. Else Dim objFolder As Outlook.MAPIFolder Dim objRecip As...
  7. C

    Creating an appointment in outlook shared calendar using an access form

    Is there any posibility you can post your correct (working code. I have been playing wth this for a while?
  8. C

    Access db to Outlook calendar

    Yes this post. Thank for the help! I have access to and owner permissions on the BloodDrives Calendar (not my default). My secretary and few others also have those permissions and can view, add and edit. We all use the same Access DB front end and I will be sharing the Blood Drives Calendar...
  9. C

    Access db to Outlook calendar

    I have added this bit froma post by darbid Else Dim objFolder As Outlook.MAPIFolder Dim objRecip As Outlook.Recipient Dim strName As String Dim outobj As Outlook.Application Dim outappt As Outlook.AppointmentItem Set outobj = CreateObject("outlook.application") Set objFolder =...
  10. C

    Access db to Outlook calendar

    I have an Access DB that is used by multiple users. I have set it up to link the appointments to my default Outlook calendar, but would like to allow any user in the DB to be able to send it to a nondefault created Calendar that we all share. Here is my current code. I have tried several other...
  11. C

    Barcode Scanner

    :confused: I have a question. I have the scanner and everything setup, but it always populates the text box with the number and an = sign in front of the number. Ex. =12548779 How can I correct this?
  12. C

    Conditional Visible Subform

    Alright, I have it working sort of. The sub is vislibe only when I change the cmbo box to "screening" but when I go to another form that already has the cmbo box with screening< the sub is still invisible. I have tried Current() Before Update() and all of them but it is still only visible when...
  13. C

    Conditional Visible Subform

    I fixed it. my sub was misnamed in the form. Private Sub cboEvent_Change() If Me.cboEvent = "Screening" Then Me!sfrmScreeningDetail.Visible = True Else Me!sfrmScreeningDetail.Visible = False End If End Sub
  14. C

    Conditional Visible Subform

    I have subform that I only want to be visible in a parent form when the combo box has "Screening " selected. Here is my code. I'm not sure why this is wrong. Private Sub cboEvent_Change() If Me.cboEvent = "Screening" Then Forms!Initial_Action_Donor_Center.Form.sfrmScreeningDetail.Visible =...
  15. C

    Mail Merge

    I have a Word Document that is merged with Access Qry. In 03 i had to go in tools (in word) and click a box to allow it to connect to the database. Now I have 07 and it does not show the queries except in views and then does not allow me to connect to it. Not sure what to do??? :mad:
  16. C

    Iif

    Great Job!!! I was a little off there with what I was trying to do. I seem to have mad a simple thing very complicated. :D
  17. C

    Iif

    I have a unbound text that I want to update to 20 when a field onte hform is >6 but = 0 when the field is <=6. Here is my IIF statement in the control source: IIF([Pitch]>6 OR [Pitch]<=6,"20","0"). No matter what Pitch equals the box keeps updating to 20. Why??:confused:
  18. C

    Summing Totals

    Last night my wife took over the internet and I worked on it for a couple of hours. I figured it out the hard way. Thank you guys. I wound up creating a dummy subform from a query that is not visible on the form but does the calculations and then sends the info to a field in the Form and then...
  19. C

    Summing Totals

    I have realized that I can't total a calculated control in a sbfrm, it must be a field and queries are the best option. I Have created a query and put in the following field Total Amount: Sum([AccessCost per]*[AccessAmount]) then had an unbound field txtbox on the form that totaled all of the...
  20. C

    Filtering a query from a Form

    With a little rest over the weekend and a lot of help from dataking and his post I have successfully created a subform that emulates a Split Form and is able to be filtered as desired. Thanks, Chris http://www.access-programmers.co.uk/forums/showthread.php?t=172084&highlight=Split+form+subform...
Top Bottom