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 Mike Lewis 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. MichaelBartolotta

    ActiveX vs Applet vs jScript vs vbScript

    Any opinions of the pros/cons of the above approaches for performance and security? I am developing a large website and have a lot of reusable code. Currently I have the reused code in jScript and vbScript in text files and include it with a scr= tag. I am considering moving the logic to...
  2. MichaelBartolotta

    Cant get my java .class onto my .htm

    I can't seem to add my custom java object to a webpage. It should be rather simple, but it aint workin! The .class and the .htm are in the same directory.I tried ... - classid="java:Dancer.class" - codepage="all kinds of combinations" All I get is "text incase it cant...
  3. MichaelBartolotta

    HELP! Cant get my java .class onto my .htm

    I can't seem to add my custom java object to a webpage. It should be rather simple, but it aint workin! The .class and the .htm are in the same directory.I tried ... - classid="java:Dancer.class" - codepage="all kinds of combinations" All I get is "text incase it cant...
  4. MichaelBartolotta

    Add "ALL" in a Combobox

    The problem with the above solution is that Union queries are not supported under some web browsers. Another solution: For this example, assume the table that contains the combo box values is ... ================ MyCriteria ---------------- MyCriteriaID - AutoNumber MyCriteriaName - Text...
  5. MichaelBartolotta

    Data Access Pages

    lKey = cboKey.value window.location.href = "MyPage.htm?serverFilter=" & """KeyId=" & lKey & " """ - or - window.open = "MyPage.htm?serverFilter=" & """KeyId=" & lKey & " """
  6. MichaelBartolotta

    ROUNDING IN ACCESS

    function roundUpEighth(dNum) roundUpEighth = (8 * roundUp(dNum)) / 8 end function
  7. MichaelBartolotta

    ROUNDING IN ACCESS

    function roundUp(dNum) if int(dNum) = dNum then roundUp = dNum ' it's already an integer else roundUp = int(dNum + 1) add 1, then trunc the decimals end if end function

Part and Inventory Search

Back
Top