Recent content by lanato

  1. L

    Update form from another

    The Sub UpdateStatus would be: Private Sub UpdateStatus() If Me.Production Is Not Null Then SysCmd acSysCmdSetStatus, "Ready for Production" Else SysCmd acSysCmdClearStatus End If End Sub
  2. L

    to find out maximum from the records entered by the form

    the DMax() is return the records field max value from a table,not the parameters. the code what you need is(or you creat a user function): If parametername = "time" then rs!Q12005 = iif([Me.Jan_05]> [Me.Feb_05] and [Me.Jan_05]> [Me.Mar-05],[Me.Jan_05],iif([Me.Feb_05] >[Me.Mar-05],[Me.Feb_05]...
  3. L

    Editing a "text" OLE Object

    when you pasting an OLE Object on a form, it's Enabled property is false. so you must change the property to True in Design Viewin .
  4. L

    How to rank data result

    i think you can creat and run a update query just like: UPDATE [Table] SET [Table].Rank = DCount("*","Table","Point<=" & [Point]);
  5. L

    Updating Table Via Form

    you can see the new Query:qryInsertFixed is that you want?
  6. L

    Manual Ordering.

    I hope the next codes can help you: Private Sub MoveDown_Click() Me.OrderBy = "[sort_order] desc" Me.OrderByOn = True End Sub Private Sub MoveUp_Click() Me.OrderBy = "[sort_order]" Me.OrderByOn = True End Sub
Back
Top Bottom