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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by glendsj

  1. glendsj

    addition vs concatenation

    using the eval() method works too. var a = 10; var b = 5; var c = eval(a) + eval(b);
  2. glendsj

    why won't double click work in netscape?

    I can get the double click event to work for a <select> tag in IE5.5> and Netscape 6 but not in Netscape 4.77 Why is that? What can I use to replace that and get the same result that works in all browsers?
  3. glendsj

    ubound(array) = -1

    using split you need to check for the space: sDataArray = Split(sData,&quot; &quot;,-1, 1)
  4. glendsj

    ASP to open word file and print to pdf

    I have an application that collects data for Oracle via a web form, and also uploads(SA FileUp) a narrative file in word format. I need a report that includes both data components (Word and Oracle). I am trying to use an FDF form that displays the oracle data, and also appends the word file...
  5. glendsj

    ASP to open word file and print to pdf

    I have an application that collects data for Oracle via a web form, and also uploads(SA FileUp) a narrative file in word format. I need a report that includes both data components (Word and Oracle). I am trying to use an FDF form that displays the oracle data, and also appends the word file...
  6. glendsj

    can function call itself

    create a function that calls the function you want. call that function instead of trying to call itself.
  7. glendsj

    4K char limit in SQL ???

    I had the same problem. Try a CLOB field(this is supposed to hold 2 gigs of data). If that does not work for you then you need VARCHAR 4000 fields. I wound up using 4 VARCHAR 4000 columns for my data. I have a funtion that parses through the string and stores it sequentially in the fields. To...
  8. glendsj

    window.history

    why use a query string? If partid stays the same for the user throughout the session, store it's value in a session variable and just redirect. using query strings gets messy stay with the post method. You can also store the partid in a hidden form field with javascript before submitting the...
  9. glendsj

    Please explain.....

    you are missing a value for imgNumb so javascript does not see the object because it really does not exist if imgNumb = null
  10. glendsj

    onLoad and multiple functions

    create one function that calls the successive functions in the order you want them completed.
  11. glendsj

    Accessing Server Registry from ASP

    is it an intranet or extranet application? I don't think you want to have code on your root directory that a hacker could find and be able to edit your registry.
  12. glendsj

    Keeping a database connection available

    you don't add any overhead, you actually reduce it. The object is instatiated, used and destroyed faster than you can blink. Using a session variable causes the memorary use to be constant, and once a session ends by default the connection is lost. I work a lot in Oracle, and using one open...
  13. glendsj

    choosing the last record

    if you only need to grab the last record: a: refine the query to only grab the last record. b: loop until end of file, filling variables holding the data you want displayed. The data from the last record should be in the variables.
  14. glendsj

    How to populate a combo box faster?

    can you catagorize the product list? If you had products in sepearte categories then the customer can select a gategory and the the list of items would be smaller and therefore run faster. I was thinking of adding a category table, and each category had a number assignment. then add column in...
  15. glendsj

    ASP File Upload

    SA file up from soft artisans works great. you just load the .dll on the server and use an object you create in your asp to do all the work. You can download it from their website.

Part and Inventory Search

Back
Top