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!

Recent content by cbuono

  1. cbuono

    FirstInFirstOut Help in Stores Inventory

    Hi Shyam, you may want to take a look at how you are setting up your tables first. Typically an inventory system will contain the following: 1. Product Table - Product Number, description, weight, cube, etc. 2. Inventory Table - Product Number, Qty On Hand, etc. 3. Inventory Transactions -...
  2. cbuono

    Select all records in a Listbox Issue (URGENT!)

    Hey guys, I need some major assistance with a listbox I've been fighting with for the last couple of hours. I have a query (that is selecting from table Pallet) that is populating a listbox. I've also used a Union query to add the text "ALL" at the top of the listbox. Now my issue...
  3. cbuono

    Listbox problem and selection of All records

    Hey guys, I need some major assistance with a listbox I've been fighting with for the last couple of hours. I have a query (that is selecting from table Pallet) that is populating a listbox. I've also used a Union query to add the text "ALL" at the top of the listbox. Now my issue...
  4. cbuono

    SQL Server 6.5 - how to transfer DB from one server to another

    Actually this is a pretty simple task. There are .dat files under \\MSSQL\data that you can simply copy to the new server. Firstly on the new server create a new db that is the same size as the db on the old server. Once the db is created on the new server stop the SQL services. Also on...
  5. cbuono

    Passing values from a form to a query then to a report

    I've used this kind of logic before and here's what I've done to make it work. 1. Have the list box populate a table. You may want to delete the data in that table first if you are going to run this report over and over again. 2. Once the values are in that table, edit your query so that the...
  6. cbuono

    Changing Label Names with Code?

    Actually what I do if I need to change the name of a label is instead of using a label, I'll use a control and make it uneditable in the form but in the vb section change the value of the control: Me![control name].Value = "Employee:" Where you place this will depend on when in the...
  7. cbuono

    Multiple Parameters for 1 field

    Well i was able to fix my problem. My insert statement was incorrect. Here's what i did: DoCmd.RunSQL "Insert into tbl_lookup_storer (storerkey) select '" & myctl.ItemData(varData) & "'", -1
  8. cbuono

    Multiple Parameters for 1 field

    Hi everybody. I am using a multiple record listbox to query a customer table and then show a new form based on those selected records in the list box. I am currently using the code below to create the where clause when the form opens. I would like it though instead of creating the where...
  9. cbuono

    Advice on Code in a Form or Module

    Thanks Gus. I'll play with it a bit and see I get the results that I want. Chris
  10. cbuono

    Advice on Code in a Form or Module

    Thanks Gus. I'll play with it a bit and see I get the results that I want. Chris
  11. cbuono

    Advice on Code in a Form or Module

    I am working with coding VB directly in a form but it seems that in multiple procedures I am performing many of the same functions. I immediate thought that I should create a module that carries out these procedures and then just call the function in the code of my form. Basically Im wondering...

Part and Inventory Search

Back
Top