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

  1. jjbrad

    Need Inventory / PO system that can interface to existing Sales System

    Thanks for responding. Currently its a home-grown system. Actually, its written almost entirely in VBScript / Javascript, running on top of IIS. Therefore we have all source code and table layouts. I can easily implement any interface a new system would require - its just a question of the...
  2. jjbrad

    Need Inventory / PO system that can interface to existing Sales System

    I just can't seem to find a reasonable Inventory / PO system that lets us keep our existing Sales Order / Receivables systems. Also, the one's I've seen look pretty rinky-dink. For example; they may be missing a basic such as Unit-Of-Measure, don't do barcode scanning, no movement between...
  3. jjbrad

    problems referencing checkbox using ID tag

    The following works here: function select_all() { if (document.form1.A.checked == true) { blah = 'Ballarat'; document.getElementById(blah).checked = true; } else { blah = 'Ballarat'; document.getElementById(blah).checked=false; } } <INPUT type='checkbox' id='Ballarat'...
  4. jjbrad

    re: Node values. Trouble getting/changing a text value of a node.

    Ummm, sorry. Haven't used nodes much, but re-reading my post just rang a bell called "textNode", with its nice property called "data". I think that will solve my text manipulation problem, and I recall testing this and it seemed to work as advertised. I'm still confused about node navigation...
  5. jjbrad

    re: Node values. Trouble getting/changing a text value of a node.

    I have a total field that I just want to appear as normal text. It is in a table that can have unlimited rows. My environment is ASP using Javascript for client side edits. I have the RowNumber of the <TR> so can access the nodes. To reduce the problem, I've tried using "alert()" and set up...
  6. jjbrad

    Session Variables holds Order Number - pressing BACK KEY is a problem

    to hithere: Thank you for the reference - which itself contains other relevant references. Yes, I believe there's a few pages. Mainly, more so than the number of pages, the ones used extensively and maticulously have been heavily modified and tweaked and integrated and have pretty much spawned...
  7. jjbrad

    Session Variables holds Order Number - pressing BACK KEY is a problem

    Our user base is only internal intranet users plus about 2,000 customers. They have to bend to our demands if they want internet convenience. After all I'm just one programmer / band-wagon to support it all. The form they sign to get an account states that only IE5.0 or greater is supported...
  8. jjbrad

    Session Variables holds Order Number - pressing BACK KEY is a problem

    Thanks for responding. This is a comprehensive application. It has several screens that utilize Order Number. For example, if they are looking at their Accounts Receivable screen, it shows general information but in one section focuses on all payments for one Order Number (invoice actually)...
  9. jjbrad

    Session Variables holds Order Number - pressing BACK KEY is a problem

    We have an entire Order Entry system written in ASP - whatever version that goes with Windows 2000 Server (not ASP.NET). In global.asa, we have: sub Session_OnStart Session("intOrderNo")=0 end sub As it implies, this is used just about everywhere to tell the computer what row(s) to...
  10. jjbrad

    File Upload Error

    I'm very novice at this so pardon if I'm being too simple, but notice slashes on first post are different. Also, by "directory security" I would presume you mean "domain security".

Part and Inventory Search

Back
Top