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!

Search results for query: *

  • Users: kev510
  • Content: Threads
  • Order by date
  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

    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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. kev510

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

    hello everyone, I have been trying to figure this out for the last 45 minutes... Finally, I gave in and decided to post here. To summarize, I have a table with 2 fields. I need to pull the maximum count of field B, with its corresponding field A value. I tried the below - select...
  10. kev510

    sort by date desc - but i want nulls on top

    hello everyone, I am trying to create a query that will sort a DATE column in descending order, but I need nulls to show up on top (for display purposes). Is this possible, and how can it be done? Please let me know if more information is needed. Thanks in advance!!
  11. kev510

    2 tables.. i need to display data - "where x, y not in x, y"

    Hello everyone, sorry about the confusing title. Here's the problem I'm running into. Table1 has fields X and Y, and table2 also has fields X and Y. I would like to display all of Table1's data where Table1's X, Y values do not match to Table2's X and Y data. Here's an example - Table1...
  12. kev510

    I need session variable to transfer over to another server (diff. URL)

    Hi guys, I've run into some trouble with my ASP page. First of all, using cookies is not a solution. I have page A, B and C. Page A is a login screen, and when the user logs in correctly, it sets a the Session("AccessCode") = "XYZ". In page B, there is a link that directs to page C, but here's...
  13. kev510

    Report between two dates not working correctly...

    Hello everyone. I am having some trouble with my .asp page. The web page is designed to let the user select one date (LETS USE 1/1/2007), and it'll search for all data that were created on that date. The problem is that simply running the string below - select * from TABLE where CreatedDate =...
  14. kev510

    Two servers and one webpage - need data from both

    Hello everyone. Recently, our company added on a new server so that we can split the data created & used by our web pages between the two servers. Lets call them server1 and server2. Server1 must have table1 and server2 must have table2. I'm looking for the best way to retrieve and write data...
  15. kev510

    Joining two tables

    Hello everyone. Let me first say that I'm very new with SQL, and I believe there is an easy way to go about the problem I'm having, but it's just not clicking into my head. I have Table1 and Table44. Both table contain data that I would like to display as one table in a webpage. The tables...
  16. kev510

    Textarea - What is the maximum length allowed??

    Hello. I've searched ALL over the place for an answer, but no luck. I'd like to use a textarea to input about 100,000 characters into my database. I was wondering what the textarea length limits are, for different types of browsers (IE5, IE6 most importantly). Please let me know. Thank you!
  17. kev510

    reload a popup window from main page when saving

    Hello guys. This seemed to be an easy thing to search for on google/this forum, but I could't find a specific answer to my problem -- I am trying to have Page1 reload popup1 whenever page1 is saved. Now I would need for page1 to check if popup1 is open before I could reload it. How would I go...
  18. kev510

    comparing dates X, Y when X or Y could sometimes be blank

    Hello everyone, I am trying to compare two dates while one of them could sometimes be blank. One date is stored in a table as smalldatetime, and the other will be entered in mm/dd/yyyy format in a text box. I want an action to occur if the date are different (1/1/2000 compared to 5/5/2005), or...
  19. kev510

    Using a variable value in a new variable name

    Hello everyone! I am once again stuck... using VBScript. I am trying to dynamically create the following list: vVariable1 = 1 vVariable2 = 2 vVariable3 = 3 vVariable4 = 4 using: for i = 1 to 3 vVariable(insert i value here) = (insert i value here) next I've tried all sorts of things for about...
  20. kev510

    Displaying array in "(x, y, z)" format to use in query

    Hello everyone! I've searched everywhere for an answer to my question with no luck. I've never used an array (yes I am a newb) before. What I'm trying to do is to get a set of data --> select X, Y, Z from Table where number = 1 Which will always return one row and and obviously three...

Part and Inventory Search

Back
Top