Recent content by whybrow23

  1. W

    HELP - Tick box to refresh form

    all sorted I think added this and it seems to be playing ball Private Sub ITSystem_Click() Me.Requery End Sub thanks for your help guys.
  2. W

    HELP - Tick box to refresh form

    Tired both codes and had no luck. :-(
  3. W

    HELP - Tick box to refresh form

    I'm getting a Compile error Method or data member not found ??
  4. W

    HELP - Tick box to refresh form

    OK thanks Yes tired your code and no joy Private Sub CalibrationNeeded_AfterUpdate() If IsNull(Me.ITSystem) Then Me.PC_System_Spec.Visible = False Else Me.PC_System_Spec.Visible = (Me.ITSystem = True) End If If Me.Dirty Then Me.Dirty = False End Sub
  5. W

    HELP - Tick box to refresh form

    What code would you recommend? Thanks
  6. W

    HELP - Tick box to refresh form

    Not sure how to explain it better....... So I have a form, within that form I have some tab pagers. By default 2 of the tabs don't appear. To make them appear you have to tick a tickbox, but the only way I can get the tab/s to appear is to move to another record and back again. What I...
  7. W

    HELP - Tick box to refresh form

    Hi all I'm in need of some help. I have a form that has some tabs and by default they are hided. If I then tick a check box and go to the next record and back again the tab appears - This is great But....... I was wondering if there is a way for when I click on the tick box, the tab...
  8. W

    Calendar Schedule idea/Help

    Santhosh, if you could that would be great, thanks
  9. W

    Calendar Schedule idea/Help

    That's taken for a excel spreadsheet, but I see what your saying
  10. W

    Calendar Schedule idea/Help

    Thanks Plog I'll have a read up on Gantt Charts, but I don't think it's what's in my head :-)
  11. W

    Calendar Schedule idea/Help

    Hi Guys Hopeing someone might be able to help. I’m wanting to build a database for a Vessel Schedule. So the idea would be a data entry form with something like the follow details: Name of Survey Person in Charge Date From Date To Year Type – (so if Survey is selected, the colour...
  12. W

    Creating an appointment in outlook shared calendar using an access form

    Morning and of course. Let me know how you get on Private Sub AddAppt_Click() WriteAppoinment (Me.Email) WriteAppoinment (Me.Mist_Email) ClearForm End Sub Public Sub WriteAppoinment(ByVal AddressToWrite As String) Dim objNS As Outlook.NameSpace Dim objFolder As Outlook.MAPIFolder 'get name...
  13. W

    Creating an appointment in outlook shared calendar using an access form

    Hi Darbid After somemore looking around and help I'm now able to send the appointment to 2 calendars with one click. Again many many thanks for all your help, would of not got this far without it.
  14. W

    Creating an appointment in outlook shared calendar using an access form

    Within the code for this bit strName = Me.Email I did tried this but it didn't like it strName = Me.Email & ";myself@myself.co.uk"
Back
Top Bottom