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

    Error when form loaded

    Ok thanks for the advise I'll have ago at that....its a shame as I made the form look really pritty. lol
  4. D

    disable text box

    "You can't assign value to this object" Hi, Ok heres the error that Im getting... ------- 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...
  5. D

    disable text box

    Absolutely great!! yeap that worked a treat. Thanks for your help. Fuga, could you have a look at one of my earlier posts i sent yesterday evening after 4pm please? If you can't answer it then its ok but you have more experience than me and you may have come across the problem before. Thanks...
  6. 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...
  7. 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