Search results

  1. D

    open form and appropriate record from cmdline

    Hi, I am trying to open access from the command line and by passing a parameter like this: "H:\Server.mdb" /cmd "server" within the DB i have created an autoexec macro to runcode: Function CheckCommandLine() Dim ServerName ServerName = Command() DoCmd.OpenForm...
  2. D

    OLE Objects

    Hi, Does anyone know how to be able to drag and drop OLE objects from Windows Explorer to the OLE Object field In MS Access and display it as an Icon only? I have set the display type to 'icon' in the object property but it still displays it's contents (e.g. .doc or .xls, etc.) regardless...
  3. D

    disable text box

    Hi, I have used the following code to grey out a text box (Date Accepted) at all times except when the item in the Quote status is "Accepted". ------------------- Private Sub QuoteStatus_AfterUpdate() If Me!QuoteStatus = "Accepted" Then Me!AcceptedDate.Enabled = True Else...
  4. D

    Error when form loaded

    Hi, When I try to add a new record, I recieve the following error: ------- You can't assign a value to this object. * The object may be a control on a read-only form. * the object may be on a form that is open in Design view * The value may be to large for this field. ------- I've checked...
Back
Top Bottom