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 Mike Lewis 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. 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.
  16. kev510

    creating table with excel file that contains column names

    Hello. I have an excel file which contains all the column names, type and length of a table that I need to create. FieldName Type Length A Int 8 B Varchar 10 C Varchar 8 I can modify the excel file in any way. How can I automatically create the...
  17. kev510

    update column A in table A if table A's column b = table b's column b.

    Hi everyone. I couldn't sum my question into the subject line. But I'm sure the subject got you opening my thread. Anyway, to explain better, I want to create an update statement so that when (Table A Column A) = (Table B Column A), it would update (Table A Column B) = (Table B Column B) I...
  18. kev510

    select a, max(count(b)) from... NOT WORKING!

    I apologize. There is one column in the table. I want to get the maximum count of column A, and pull what value the count is for. Here's an example - Column A 1 2 2 2 3 I want to see MAX(Count(A)) Value 3 2 Thanks again!!
  19. kev510

    select a, max(count(b)) from... NOT WORKING!

    EDIT** i used "GROUP BY" not "GROUP".. so that's not an issue. :)

Part and Inventory Search

Back
Top