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 Shaun E 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. SarahKate31

    Array as Object property

    Hi everyone -- I need to use the Object constructor to create a new object with properties. I also have a multidimensional array that I would like to store as a property of the object. sibsArr = new Array() sibsArr[0] = new Array() sibsArr[0][0] = "John" sibsArr[0][1] = 26 sibsArr[1] = new...
  2. SarahKate31

    sorting 2D array with numbers

    Hi everyone -- I have a 2D array with numerical values in the 1st index and string values in the 2nd index. I need to sort the array by the 1st index. I know I can sort a 2D array by the first index when all of the values are strings. And I know I can sort a 1D array of numerical values with the...
  3. SarahKate31

    Make Window Unable to Move

    Hi everyone -- forgive me if i'm duplicating someone elses post...Anyway, I am opening a popup window with window.open and I would like to have the user not be able to move the window around with the mouse. I'd like it to stay anchored to its location...Does anyone know how to do this? Thanks so...
  4. SarahKate31

    submit form from one frame, display in another

    hi everyone - i saw a post similar to this one, but it didn't really answer my question, so i posted this one... i have a frameset with 3 frames (one hidden)...summary.htm is initially loaded into the "main" frame. this page has links that will let you view different reports. when you click on...
  5. SarahKate31

    array vs object

    hi - so here is my issue: on my first page, i am saving info into a 2 dimensional array which is stored in a hidden frame in my frameset. then i am accessing that array from my second page. if i try to access the array elements individually (array[1][2]) there is no problem. the information was...
  6. SarahKate31

    InstallShield issues with RPC server

    Hi -- I have been trying to install Dreamweaver and I am pretty sure that the problem is with my computer rather than Dreamweaver which is why I am posting here. When I try to run the installation, it starts up and extracts some files and then I get an error message saying: "The InstallShield...
  7. SarahKate31

    Problems With Anchors in Netscape

    Hi all - Here's the problem I'm having with Netscape. I have put anchors around table cells like this: <a name="katie"><td width="235" valign="top">Katie Bell</td></a> Links elsewhere on the page or on other pages that are supposed to link to this section work fine in IE, but in Netscape they...
  8. SarahKate31

    Submit HTML Form via email

    I apologize if this question is already posted...I looked for it...anyway...I have a form on my site that I want users to be able to fill out and have it sent to my email. I used action=&quot;mailto:....&quot; in my form tag, but when you press the submit button, it doesn't submit the form, it...
  9. SarahKate31

    SQL command to list all tables created

    I can't remember the command to list all of the tables you have created...I need to see how many I have and their names so I can delete them all...Thanks!
  10. SarahKate31

    Singly circular linked list &amp; Multilists

    Can you give me any information or links to understand multilists composed of singly circular linked lists?
  11. SarahKate31

    How to return an array of classes?

    Hi again all -- One more for you -- I have a function that takes an array of CARDS classes and inside the function, I assign values into the members of that array at a certain index, but then when I'm back in main after the function ends, the values are gone. How can I get it to...
  12. SarahKate31

    How to reference a struct inside a struct?

    Hello all...Quick (hopefully) question: I have these structs: struct CARDS { int tagNumber; int number; char face; char suit; int value; int sort; }; struct PLAYER { char name [15]; CARDS hand [15]; int handValue; int handIndex; }; CARDS deck [52]; PLAYER one; I want to assign a...
  13. SarahKate31

    How can I find the EOF?

    Hello all...I am a beginner when it comes to C++ so hopefully someone can help! I am writing a program that should read from a .dat file into an array of structs...The first part of each line of the file will read into one variable and the second part will read into another, but I can't figure...

Part and Inventory Search

Back
Top