Search results

  1. C

    VBA and Dom

    Using VBA from Access to automate IE . I have this not assigning a value to the innerHTML as expected. Function PasteToWebPage(txt As String, ie As SHDocVw.InternetExplorer, Optional IfNotExactlyOne As htmlNotExactlyOne = htmlPasteToNone, Optional ElementID As String, Optional ClassName As...
  2. C

    Strange behaviour in subform

    Several issues here - something has gone a muck with a subform and not sure whether they all might point to the same thing. Context. A database serving as an encyclopedia, without all the fields mentioned the encyclopedia table has: An ID. A reference field. A details field. A subform is...
  3. C

    Form opened on new record - cant pre populate field

    Private Sub City_NotInList(NewData As String, Response As Integer) DoCmd.OpenForm "City", , , , acFormAdd, acDialog, NewData Response = acDataErrAdded End Sub Private Sub Form_Open(Cancel As Integer) If Me.OpenArgs <> "" Then 'It has been opened for new records only CityName...
  4. C

    Criteria Problem

    Hi folks any help appreciated. I have a combo box displaying a concatenated trio of fields representing another individual in the same contact table. Title & " " & Firstname & " " & LastName I need to use this value with a DLookup or other solution to get the email address from this other...
  5. C

    checkbox.value misbehaviour?

    Hi, Updating a single Yes/No field to show if the record should be visible. Have a continuous form with a bound checkbox to supply the new value. OnClick event for the displayed data innitiates an immediate table update. Values were not updating. The problem: However stepping through the...
Back
Top Bottom