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 SkipVought 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. jdarvwill

    queries with parameters or ENTER for no paramters

    hey, thanks for all the responses!! sorry it took so long for me to respond, really appreciate the help!
  2. 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.
  3. jdarvwill

    Data Access Forms?

    thanks for both responses... i guess i thought it would be a wizard item :) hehe i'll give it a shot.. thanks again.
  4. 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...
  5. 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...
  6. jdarvwill

    Windows XP

    mine works pretty good if i run it in Nt compatibility mode
  7. 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...
  8. jdarvwill

    what uses more memory? ie the best method.

    thanks for the responses :) we have never used malloc() in class (yet?) so i'll take a look into it. :) And i'll look into all the other ideas also. Good practice if nothing else :) is memory mang. even an issue today? as newmanj pointed out, on todays systems we have a lot more access to...
  9. jdarvwill

    what uses more memory? ie the best method.

    thanks for the reponse, the hardest thing about C is learning the proper style... i'll go with array of structures style now :)
  10. 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...
  11. jdarvwill

    structure => function => main => another function

    hey :) thanks, i was going to post my code but i wasn't sure if that was okay in this forum. I was trying to pass and call the function with a variable as opposed to a pointer. That seems to be my main error. thanks for the help :)
  12. 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