Search results

  1. P

    Access backup

    It helped me too...here is my code with concrete paths...very thanks @Echo off echo.Backing up database... set dd=%Date:~0,2% set mm=%Date:~3,2% set yy=%Date:~6,4% set ddy=%Date:~0,2% set mmy=%Date:~3,2% set yyy=%Date:~6,4% set /A ddy -= 1 if %ddy%==0 set /A mmy-=1 if %mmy%==0 ( set mmy=12...
  2. P

    automatically insert data

    When you have ComboBox or TextBox with the Material_Code, you must add "after_update" this: Me!Cost_Per_Unit = Me!CB_Material_Code.Column(1) Cost_Per_Unit is the field which will be updated automatically CB_material_Code is combobox or textbox where you have the material code Column(nr) is...
Back
Top Bottom