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 bkrike 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: jdarvwill
  • Content: Threads
  • Order by date
  1. jdarvwill

    queries with parameters or ENTER for no paramters

    hi, i need to run a querie with possible parameters to search against, or just enter a null value to display all the values. anyway to do this in one entrie? thanks.
  2. jdarvwill

    Data Access Forms?

    I'm making a DB with Access and i want to add a form on a web page to enter data, edit data and search throught data. Every time i start up a Data Access page it only allows me to add tables and queries.... is there anyway to add form? or is there a way to be able to edit and search through...
  3. jdarvwill

    passing dynamic declared multi-arrays :)

    hi, i created a dynamic [numPlayers][3] array at run time depending on the number of players. Problem is trying to pass this array through functions. I read u need to know at least the column value which i do, but when i try to pass it i get an error. any help is appreciated here is the...
  4. jdarvwill

    pointer help for a simple 1D array! :)

    hi, beginning C++ programming after a semester of C. I want to fill an array of one data type approx. 50 items in a function, with the variable declared w/i main. I remember using pointers to fill structures with data, but cannot get it to work with my array. I'm sure i'm missing something...
  5. jdarvwill

    what uses more memory? ie the best method.

    hi, i just want to know if it uses more memory to make an array of structures, or use a structure with arrays inside. thanks :) struct inventory { char item_name[30]; int part_number; int quantity; float cost; float total_cost; }; struct inventory...
  6. jdarvwill

    structure => function => main => another function

    hi, i need a structure to be passed to a function, filled with data, returned to main, and then passed to another function with data intact. I can get it to recieve the data from the 1st function and return to main retaining the data. I just can't get it to pass to another function with data...

Part and Inventory Search

Back
Top