Menu
  • HOME
  • TAGS

Two different formats of field in report Access 2013

ms-access,events,format,ms-access-2013,onload-event

You don't really need to change format only concatenate the numeric value with unit (kg/bag or %). Using VBA, try the following code in the OnLoad event (I am assuming the recordsource field behind the text0 control is called the same -text0): If Forms!yourformname![yn] = False Then Reports!yourreportname!text0 = Me.text0...

Convert Window Onload function to non blocking

javascript,jquery,onload,onload-event

Try using $(document).ready() instead of $(window).load().

How to run a Javascript function everytime f5 is used to refresh the page

javascript,jquery,javascript-events,onload-event

This code works fine for me $(document).ready(function () { document.getElementById('main_iframe').contentWindow.location.reload(true); $('iframe').load(function () { $(this).contents().find("body").on('click', function (event) { alert("clicked....") }); }); }); ...