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...
javascript,jquery,onload,onload-event
Try using $(document).ready() instead of $(window).load().
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....") }); }); }); ...