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 strongm 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. Zumbro

    Warnings

    Thank YOU!
  2. Zumbro

    How to highlight current Record or Field

    1 Make a new Module Option Compare Database Option Explicit Global Const White = 16777215 Global Const LightBLue = 16776960 2 Private Sub CITY_GotFocus() City.BackColor = LightBLue End Sub 3 Private Sub City_LostFocus() City.BackColor = White...
  3. Zumbro

    Warnings

    Hello All, I run a delete query to remove bogus data entry,I would like have it attached to a button But! have it unknown to the user as it runs. I need some way to respond to the prompts coded. Thanks Pbk
  4. Zumbro

    looping

    Hi, How do I implement a functionality where something is done over and over while I press the mousedown on for example a button and stop that something on mouseup. I can't just do a while loop in a function coz that locks the browser completely.. Help please..!
  5. Zumbro

    <form name='autocomplett' onsubmit=

    <form name='autocomplett' onsubmit='hoppa();return false'><input name='boxen' type='text' size='14' class='ruta' onkeyup='autocompl()' autocomplete='off'></form> why doesn't this piece of code make netscape calling function autocompl() when a key is pressed in the input box? It works perfectly...
  6. Zumbro

    Nested DIV tags and netscape..

    Hi, I've used DIV and Style positioning for handling layers. I've made one layer surrounding all other layers making them nested. <DIV id=&quot;layer1&quot; style=&quot;positon..etc..etc&quot;> here comes all other info and all other nested layers </DIV> The problem is: I got a javascript...

Part and Inventory Search

Back
Top