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 Chriss Miller 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: jonthequik
  • Content: Threads
  • Order by date
  1. jonthequik

    Form Check for duplicate record before update?

    I'll start by saying that I've used Access for a while just as a more powerful Excel. I haven't tinkered with the VB side of it. I tried searching for the answer to this puzzle in the FAQs and in the forums, but didn't find exactly what I was looking for. I have two tables. One that tracks...
  2. jonthequik

    Configure B2D to write to 14 files only?

    I have a Father/Son backup cycle as follows: Friday: Full back up to tape Monday - Thursday: Incremental B2D, Copy to Tape I have enough tapes for two weeks of incrementals (8 days total). But my policy is only writing to the same two files. Is there a way to specify which files to use on...
  3. jonthequik

    Access Form by Elements

    I've got an ASP.NET 2.0 Page written in VBScript. In the script, I ask the user to enter a number of weeks and based on that number, I print a form element for each week. There is one box that the user is allowed to modify in the new form. To create the dynamic form, I do a loop and post to a...
  4. jonthequik

    Submit Delay

    In a web game I play online, there is a part where you can attack another player. In one form, you submit which fleet your attacking with and it redirects you to another page where you submit a target to hit. I'm trying to write a script that will submit form A, then form B after a 3 second...
  5. jonthequik

    Access Denied

    I'm trying to write a script to capture the source code of a page in the second frame. The code: <SCRIPT LANGUAGE=&quot;JScript&quot;> function button() { var rng = parent.frames[1].document.body.createTextRange( ); if (rng!=null) { alert(rng.htmlText); } } </SCRIPT> It works when the page...
  6. jonthequik

    Getting source code into a variable

    I am trying to figure out if there is a way in JavaScript to get the source code out of a page, and into a variable. I know that you can get the code with a button value of &quot;view-source:http://www.server.com/&quot; but I need it to load into a variable instead of an editor. Any ideas...
  7. jonthequik

    Retrieving information from another PAGE.

    I'm trying to get information out of a page for use in a database. I can't get access to the information from the server because it's loaded through CGI. I CAN get the information by using View Source and pasting the code into a program that searches for the information. What I'm trying to do...
  8. jonthequik

    Building Databases with Hash, List, or Arrays???

    I'm trying to make a database to help me. I run a newspaper site with Classified Ads. Now, each week I spent fruitless hours updated some 25 different classified section some with the same ads. Now, I plan to have a database that will have an Ad Number, Section Number, Header, and the body of...
  9. jonthequik

    Generating Unique Random Numbers

    I am wanting to set up a quiz that pulls 35 questions randomly from a list of 100 questions. Basically, I need to randomly generat 35 numbers from 0 - 100 and insure that none of them are duplicated. Here's what I have so far: function getRanNum() { a = new Array(35); for (i = 0; i < 35...
  10. jonthequik

    Understanding XML Namespaces

    I'm trying to learn xml and managed to nail the &quot;basics&quot; down, but I got passed the chapter on Namespaces and am doubting I understood it.<br><br>Here is what I got from the book.&nbsp;&nbsp;Namespaces are ways to seperate Joe's independant xml information from Bob's.&nbsp;&nbsp;So, if...
  11. jonthequik

    assigning variables to attributes

    I'm trying to use XML to design a table.&nbsp;&nbsp;I want this table to be sortable based on an option the user enters on the page itself.&nbsp;&nbsp;I've got it to where the user's request is posted to the page (sort of), but need to pass the variable to the attribute.&nbsp;&nbsp;The problem...

Part and Inventory Search

Back
Top