Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Bergkamp

    Help - Script to Change a field Value

    dim session as new notessession dim db as notesdatabase dim docColl as notesdocumentcollection dim doc as notesdocument set db = ses.currentdatabase set dbColl = db.alldocuments 'if all documents need to be checked set doc = docColl.getFirstDocument while not doc is nothing if...
  2. Bergkamp

    Field Focus in Notes

    Yes it can be done with LotusScript. Every field has a Entering event.
  3. Bergkamp

    How to resize this image

    Unfortunalty some records holds more then one image. So finaly now all images will be resized when they are more then 700 px width; <script type="text/javascript"> var oImgs=document.getElementById("Richtextcontent").getElementsByTagName("img"); var oTmp; var oImg; if(oImgs){ for(var...
  4. Bergkamp

    How to resize this image

    The final solution I came up with after all your input: <script type="text/javascript"> var oH2s=document.getElementById("Richtextcontent").getElementsByTagName("img")[0]; if (oH2s.width > 700) { document.getElementById("Richtextcontent").getElementsByTagName("img")[0].width = 700; } </script>...
  5. Bergkamp

    How to resize this image

    My code: <div id="Richtextcontent"><br> <img src="/2-Bergkamw/FIN/Comp-reg.nsf/30ceb851136ec96cc12571e70032dff9/7d6c71e6ee0d6b22c1256e4b004c356f/Signature/15.2702?OpenElement&amp;FieldElemFormat=gif" width="784" height="142" alt=""><br> </div> This code is generated bij a webservice (IBM Lotus...

Part and Inventory Search

Back
Top