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: mbwmbk
  • Order by date
  1. mbwmbk

    if I have a number eg. 1004.25,

    Thanks a lot for your help. I've try to split the number on the decimal but I can't make it work. Can you give me more hints on how to get the decimal part working? Thanks in advance.
  2. mbwmbk

    textbox validation - only integers

    function numeric_only() { if ((event.keyCode < 48) || (event.keyCode > 57)) { event.keyCode = 0; } }
  3. mbwmbk

    Getting the grand total from user input

    Thanks a lot. I have figure out a way (I got this idea from one of the thread in this forum)to do this. Not sure will it work fine, so far so good. Let me know if this is not the right way to do it. function calsubtotal(cnt,qtyv,up) { var val2= 'subtot'+cnt; var subtot; function...
  4. mbwmbk

    Keeping Values When Refresh Occurs

    NateUNI, I am having the same problem here. Can u tell me how u make it work? thanks
  5. mbwmbk

    Getting the grand total from user input

    I have generated a list of items from the table with unit cost. item# UnitCsot Qty subtotal item1 2.00 user input javascript to calculate item2 0.30 user input . . . item 10 3.15 user input .... Is there a way to dynamically calculate the grand total from the subtotal input boxes? if...
  6. mbwmbk

    if I have a number eg. 1004.25,

    if I have a number eg. 1004.25, I need to display 'one thousand four dollar and 25/100 cents' on the page. How can I do it?
  7. mbwmbk

    decimal places

    well... u can use formatnumber(var,2)
  8. mbwmbk

    how to get last day of the month

    Hi All, I have this question: dim mth1, mth2 dim yr1, yr2 suppose: mth1=1, yr1=2001 mth2=5, yr2=2003 How can I get the last day of the month given mth1=1 (January)? how to retrieve all the records from table ndata where ndate > 1/1/2001 and ndate < 5/31/2003? thanks.
  9. mbwmbk

    application for WindowCE

    If I am going to write an application (for data collection/entry, with SQL server database as backend) for windowCE, how can I do that? What language should I use?
  10. mbwmbk

    I am new to hand-helds. Can I load

    Does microsoft pocket internet explorer for Windows CE function like internet explorer on the desktop? (functionality and etc.)
  11. mbwmbk

    Add an unique id field in an existing table

    I have a table with 100 rows. I need to add a unique id field to identify each row in the that table. How can I do that?
  12. mbwmbk

    I am new to hand-helds. Can I load

    I am new to hand-helds. Can I load ASP pages to window CE? Will it work? How to do it?
  13. mbwmbk

    Pop-up to send information back to page ?

    code in POP-UP window (findfile.asp)-- <script> function go(f_name) { window.parent.opener.div_file.innerHTML = '<font color=&quot;#0000c0&quot;>'+f_name+'</font>'; window.top.close(); } </script> Response.Write &quot;<TD width=200 align =left><a style=&quot;&quot;cursor:hand&quot;&quot...
  14. mbwmbk

    data validation

    All the input boxes are dynamically generated. For example, in one form, item1 has min, ave and max value, item2 has only min and ave value; and item3 has only min value. (and there may have n-number on item in one form, and various combination of values(min, ave, max) for each item.). How can...
  15. mbwmbk

    data validation

    I have a form which generate the input box dynamically according to the data in the database. When submitting the form (js function), how can I check if the input box is filled? if not rs1.EOF then Response.Write &quot;<TABLE align=center frame=&quot;&quot;below&quot;&quot; cellPadding=1...
  16. mbwmbk

    count tags in form in JS function

    thanx, that is what I want.
  17. mbwmbk

    count tags in form in JS function

    Is there a way to count how many input tags in a form in a javascript function?
  18. mbwmbk

    Drop Downs and databases

    the code looks right, but u misspelled the word &quot;response&quot;
  19. mbwmbk

    Web Browser Based Application for PDAs

    I have the similar problem here. Have you find the solution to use ASP to make application for a handheld?

Part and Inventory Search

Back
Top