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 strongm 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 kev510

  1. kev510

    Javascript loop through dynamically created select boxes

    Hello everyone, I am trying to create a javascript function to show values of select boxes (drop down menu) that are dynamically created with the LOOP function using vbScript. It creates a select box for each of the lines of the table I have on my webpage. So if there ends up being 10 rows in...
  2. kev510

    order table by column names + asp.net

    thank you so much for your answers everyone!!
  3. kev510

    Send values to listbox to populate and then read from the listbox

    Hi everyone, before I start, here's the "listbox" that I am referring to. Please correct me if that's not called a "listbox". http://www.javaworld.com/javaworld/jw-06-1996/javascript/form_select.html I am trying to populate a listbox in the main page using a command from a popup page, and...
  4. kev510

    order table by column names + asp.net

    It's too much work for me to write all those columns out. As I said, there are about 20 different tables (with up to 30 columns per table). There has to be an easier way to sort these columns.
  5. kev510

    order table by column names + asp.net

    Hi everyone, I am trying to program an asp.net webpage that displays data from a table in SQL server 2000, but it needs to display the tables with the columns in alphabetical order. The problem is that the webpage displays about 20 tables (with up to 30 columns per table). There has to be an...
  6. kev510

    Open pop-up window with size in reference to screen size

    Thank you thank you thank you billy ray's son and kaht. Kaht, you were right about the double quotes. Without the double quotes, the javascript works! Billy, I will not be using those crazy []'s from now on. I am learning new things every day... Thanks for that.
  7. kev510

    Open pop-up window with size in reference to screen size

    Thanks for your suggestion. I tried the following - function fPopupWindow() { var aw = screen.availWidth - 40 vURL = "Webpage.asp" window.open(vURL,['PopUp1'],'toolbar=no,status=no,scrollbars=no,resizable=yes,width="+aw+",height=1000,left=20,top=100'); } but it seems it's not working. The...
  8. kev510

    Open pop-up window with size in reference to screen size

    Hello everyone, I have the below javascript function in my webpage - function fPopupWindow() { vURL = "Webpage.asp" window.open(vURL,['PopUp1'],'toolbar=no,status=no,scrollbars=no,resizable=yes,width=1025,height=1000,left=20,top=100'); } But instead of hard-coding the width and position of...
  9. kev510

    table - onefield with two different data - how can i divide & format?

    amazing.. you even went the extra step to create the array process for me. thank you so much!!
  10. kev510

    table - onefield with two different data - how can i divide & format?

    External Customer Audit Team Central Quality Auditing Team hi everyone, I am trying to pull data from one table field into two columns of a table in my ASP page. The database table contains FieldA which has data such as shown below - FieldA 1234567890 : 20080307 2234567891 : 20080308...
  11. kev510

    click all 10 buttons at the same time

    I apologize if posting my question in this forum confused you folks... To me though, it seemed like this was the best place.
  12. kev510

    click all 10 buttons at the same time

    i am not trying to code the page... I am trying to click those 30 buttons in a webpage designed by someone else Have you guys read my post?
  13. kev510

    click all 10 buttons at the same time

    thank you! i will try your suggestions today and let you know of the results...
  14. kev510

    click all 10 buttons at the same time

    Hello everyone, I am looking for the fastest way to automatically click about 30 buttons on a webpage. The buttons are just normal button objects (not image/link) displayed in a webpage. Tricky thing is, there are two types of buttons, "Button A" and "Button B", and I need to click only all of...
  15. kev510

    creating table with excel file that contains column names

    thank you for your valuable post! i will give it a try today.

Part and Inventory Search

Back
Top