home *** CD-ROM | disk | FTP | other *** search
Wrap
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>Staz Software</title> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> <style type="text/css"> body{ background-color: #365488; border-top: 20px solid #365488; margin: 0px; } a{ color: #00f; text-decoration: none; } a:hover{ color: #00f; text-decoration: underline; } p{ margin: 0px; padding-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; } h1{ font-size: 23px; padding-left: 2px; padding-top: 4px; padding-right: 5px; padding-bottom: 2px; margin-left: -2px; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; background-color: #e7edf6; } h2{ font-size: 19px; padding: 0px; padding: 0px; margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; } h3{ font-size: 15px; padding: 0px; margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; } hr{ background-color: #b7bbc2; height: 1px; border: 0px; margin-top: 0px; margin-left: 0px; margin-bottom: 10px; margin-right: 0px; padding: 0px; } span#pre,span.pre{ color: #996633; font-size: 12px; font-family: monospace; } pre{ color: #996633; font-size: 12px; font-family: monospace; padding: 0; margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; } table.w{ background-image: url('../graphics/site/window/middle.png'); background-repeat: repeat-y; width: 880px; margin-left: auto; margin-right: auto; } td.w-top{ background-image: url('../graphics/site/window/top.png'); background-repeat: no-repeat; padding-left: 15px; padding-right: 15px; text-align: center; height: 60px; min-height: 60px; font-size: 1px; line-height: 1px; } td.w-middle{ padding-top: 0px; padding-left: 15px; padding-right: 15px; vertical-align: top; } td.w-bottom{ background-image: url('../graphics/site/window/bottom.png'); background-repeat: no-repeat; height: 25px; min-height: 25px; } table.w-content{ float: left; clear: none; border: 10px solid #e7edf6; width: 650px;} td.w-content{ border-left: 1px solid #cfd4dc; border-top: 1px solid #cfd4dc; border-right: 1px solid #b7bbc2; border-bottom: 1px solid #b7bbc2; padding-left: 20px; padding-top: 20px; padding-right: 20px; padding-bottom: 10px; background-color: #fff; vertical-align: top; min-height: 500px; } table.w-sidebar{ border-top: 10px solid #e7edf6; border-right: 10px solid #e7edf6; border-bottom: 10px solid #e7edf6; background-color: #e7edf6; width: 199px; float: right; clear: none; } td.w-sidebar{ border-left: 1px solid #cfd4dc; border-top: 1px solid #cfd4dc; border-right: 1px solid #b7bbc2; border-bottom: 1px solid #b7bbc2; background-color: #fff; text-align: center; padding-left: 10px; padding-top: 20px; padding-right: 10px; padding-bottom: 10px; } td.w-sidebar img{ border: 0px; } table.w-tabs{ background-image: url('../graphics/site/tabs/background.png'); background-position: bottom center; height: 40px; margin-top: auto; } td.w-tabs{ text-align: center; vertical-align: bottom; } td.w-tabs img{ border: 0px; } td.w-tabs a{ border: 0px; } input.text-box{ border-left: 1px solid #b7bbc2; border-top: 1px solid #b7bbc2; border-right: 1px solid #cfd4dc; border-bottom: 1px solid #cfd4dc; background-color: #fff; } input.push-button{ border-left: 1px solid #cfd4dc; border-top: 1px solid #cfd4dc; border-right: 1px solid #b7bbc2; border-bottom: 1px solid #b7bbc2; background-color: #fff; } </style> </head> <body> <table class="w" border="0" cellpadding="0" cellspacing="0"> <tr> <td class="w-top"> <img src="../graphics/site/window/title.png" alt="Staz Software"> <table class="w-tabs" border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td class="w-tabs"><a href="../index.php"><img src="../graphics/site/tabs/home.png" alt="Home"></a><a href="../futurebasic/index.php"><img src="../graphics/site/tabs/active-futurebasic.png" alt="FutureBasic"></a><a href="../shareware/index.php"><img src="../graphics/site/tabs/shareware.png" alt="Shareware"></a><a href="../order/index.php"><img src="../graphics/site/tabs/order.png" alt="Order"></a><a href="../contact/index.php"><img src="../graphics/site/tabs/contact.png" alt="Contact"></a></td> </tr> </table> </td> </tr> <tr> <td class="w-middle"> <table class="w-content" border="0" cellpadding="0" cellspacing="0"> <tr> <td class="w-content"> <h1>Tech Notes</h1><h2>Appearance Pop-Up Menu Droppings</h2><p>There are a few things that your mother, now a tech at Apple, never told you...</p> <p> <li>She never mentioned that you would have to reset the ControlMax if you changed the number of items in a pop-up menu handled by a control. <li>She never told you that Appearance pop-ups would leave little droppings in the window the first time that you clicked them. <li>And she never, ever told you that if you fooled around with those girls from the wrong side of the tracks you might catch something that you couldn't wash off. </p> <p>I can't help with the washing part, but I'm happy to offer a leg up on the window dropppings. Herein find a simple routine that will fixeth (I'm working on my culture) your Appearance poppers. Just give it a call after you build the button.</p> <p> <pre> /* when an appearance pop-up menu pops, then goes away, it leaves trash in the window. this routine makes the menu recalc itself so that there are no window droppings. it's stupid, but it works */ local fn fixAppearancePopUpBug(buttonID as long) dim mH as handle mH = button ( buttonID , _FBgetControlMenuHandle ) InsertMenuItem ( mH , " " , 0 ) DeleteMenuItem ( mH , 1 ) end fn </pre> </p> </td> </tr> </table> <table class="w-sidebar" border="0" cellpadding="0" cellspacing="0"> <tr> <td class="w-sidebar"> <p><a href="index.php"><img src="../graphics/fb_icon.png" alt="FutureBASIC"></a></p> <p><a href="demo.php">Demo</a></p> <p><a href="../order/index.php">Order</a></p> <p><a href="tour.php">Tour</a></p> <p><a href="tech-notes.php">Tech Notes</a></p> <p><a href="faq.php">FAQ</a></p> <p><a href="sample-code.php">Sample Code</a></p> <p><a href="web-sites.php">Web Sites</a></p> <p><a href="mailing-list.php">Mailing List</a></p> <p><a href="system-requirements.php">System<br>Requirements</a></p> <form method="GET" action="http://www.google.com/search" style="margin: 0; padding: 0;"> <p style="margin: 0; padding: 0 0 5px 0; text-align: right;"><input type="hidden" id="ie" name="ie" value=UTF-8><input type="hidden" id="oe" name="oe" value=UTF-8><input type="text" name="q" size="15" maxlength="255" value="" style="width: 155px;" class="text-box"></p> <p style="margin: 0; padding: 0; text-align: right;"><input type="submit" name="btnG" value="Search" class="push-button"><input type="hidden" name="domains" value="stazsoftware.com"><input type="hidden" name="sitesearch" value=""><input type="hidden" name="sitesearch" value="stazsoftware.com" checked></p> </form></td> </tr> </table> </td> </tr> <tr> <td class="w-bottom"><img src="../graphics/site/blank.gif" width="2" height="2" alt="blank"></td> </tr> </table> </body> </html>