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

    Query issues....

    I used a query in VB with an access form as the front end to create a report...I have modified it to try to make it work in SQL Server...it is returning too many fields though currently..... Select dev.KinderNumber,dev.Client,dev.MFG,dev.FAMILY,dev.Intro_Date,dev.FIXTURE,dev.Dimensions_HWD...
  2. BigFizil

    trying to clear combo boxes on search form

    trying to set something up so when the user is done searching for one item they dontt have to go and manually clear out out each box
  3. BigFizil

    trying to clear fields on form after use..

    I have a form that I am trying to set up to clear the previous fields....after use currently the user has to go and delete the previous search criteria
  4. BigFizil

    Trying to pass criteria from form to creat sql...help!!!

    Below is my code to give me a PAGING type form...I currently have a form with text and combo boxes that pass parameters to a query and it works fine...the problem is the output only returns one item per page....I solved this by using my paging code for this form...but I want to set it up so a...
  5. BigFizil

    Source = "select Development.[Kinde

    Source = "select Development.[KinderNumber],Development.[Date],Development.[Client],Development.[MFG],Development.[Fixture],Development.[Dimensions (HxWxD)],Development.[MFG Price],Development.[Item Number], dp.[Image], dp.[Revision_ Letter] FROM developmentpictures dp, Development WHERE...
  6. BigFizil

    SQL problems....Please Help!!!

    .Source = "select Development.[KinderNumber],Development.[Date],Development.[Client],Development.[MFG],Development.[Fixture],Development.[Dimensions (HxWxD)],Development.[MFG Price],Development.[Item Number], developmentpictures.[Image], developmentpictures.[Revision_ Letter]FROM...
  7. BigFizil

    SQL problems?? Please Help!!!

    I have a form that through VB code loads information from 2 tables in a WEB or Paging style format.. Basically one table is nothing but pictures with basic information and there are various pictures for each "ID" number because of revisions to te product design. the other table is a...
  8. BigFizil

    SQL problems in VBA!!!! please help!

    here is my code and it works fine as is: Set cn = CurrentProject.Connection Set rst = New ADODB.Recordset With rst .PageSize = 8 .ActiveConnection = cn .Source = "SELECT * From Development, developmentpictures" .LockType = adLockOptimistic .CursorType = adOpenStatic .Open BUT...
  9. BigFizil

    Help! Need to set up Access query that omits blank fields

    trying to set up a query that returns only fields with data if empty or null it omits it in the results... please help!
  10. BigFizil

    HELP!!! Multi-Combobox search w/ query linked to form.

    I have a query that is to search 9 different criteria from one table. I have a form that is set up to transfer the info from the combo box and send it to the query. I can either search by finding the product that fits all the criteria or no...criteria....I need to have the query ignore the...
  11. BigFizil

    HELP!!! Multi-Combobox search w/ query linked to form.

    I have a query that is to search 9 different criteria from one table. I have a form that is set up to transfer the info from the combo box and send it to the query. I can either search by finding the product that fits all the criteria or no...criteria....I need to have the query ignore the...

Part and Inventory Search

Back
Top