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: *

  • Users: Lambda
  • Order by date
  1. Lambda

    hi there! this does not work wel

    I find the same kind of problem: Try this: var A = Math.floor(8.70*100); var B = Math.floor(870); alert("A=" +A+ "\nB=" +B); Return: A= 869 B= 870 We meet this problem in C language. This is seems to be a problem between Float and Integer…. But we didn't find a good...
  2. Lambda

    Writing a variable to a database every hour?

    I think it's not possible with ASP, because you need to catch an event (a timer event). ASP program can only catch few events (Start and End of Application or Session even in Global.asa file). The only way (I think...), it's to create your own object (with another language - ATL COM object...
  3. Lambda

    Tree structure... how to?

    you can get a sample at http://www.geocities.com/marcelino_martins/foldertree.html This one is compatible with IE and netscape (another sample is available somewhere on the Netscape website)
  4. Lambda

    Execute some action based on the value of a window in a table

    I think... if you set in a link in each cells of the table like this : "xxx.asp?Row=3&Col=5" (row and cal depending on...) In the xxx.asp file you easly detect Row and Col value like this : col = Request.QueryString ("Col"); row = Request.QueryString ("Row"); (...)
  5. Lambda

    Call ASP without Window.open()

    You can use Remote Scripting, with this methode you can execute a function on the server from a script on the client side. I think this methode use a Java Applet on the client side : the applet communicate directly with the server to execute de function.

Part and Inventory Search

Back
Top