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: *

  • Users: ideafixer
  • Order by date
  1. ideafixer

    Video broadcast question

    The service I am talking about is StreamHoster.com It looks like a good service for a one time deal.
  2. ideafixer

    Video broadcast question

    I want to broadcast my wedding over the Internet live. I am over average technically, so I don't think this would be hard for me to achieve. What I need to know: 1) Best camera for the price. Preferably wireless. What do I look for? Trying to be under 150 in price. 2) Bandwidth for...
  3. ideafixer

    Sub Report on Main Report linked both using Pass Though query for reco

    I can create a sub report on a main report both using pass though queries as a record source when a child/master link does not exist. I cannot use the link when using pass a pass through query. Is there a way to make a sub report on a main report with field linking using pass through queries...
  4. ideafixer

    Pass Through Query Report Spools Slowly

    I have a report hooked to a pass though query. When I print the report, the records spools much slower than if I print a report linked to a table. It shows the report printing and the pages 1.2.3.4....10 cycle slower than when using a linked table. I assume this is because the record set is...
  5. ideafixer

    Concatenation

    Yeah but you have to add a text box, and then set the control source to ="City " & [CITY] assuming city is part of your record source. Also be sure the text box name is not CITY... you need to change that to txtCity or something. You will get an error if you name the text box the same thing as...
  6. ideafixer

    Report Change causes Pass Through Query to execute on save

    I have the following code: ========= Start Code ========== Dim rpt As Report Dim ctl As Control Dim Test As String Test = ReportName_Actual 'DoCmd.OpenReport DLookup("[ReportName]", "tbl_reports", "[ID] = " & pubreport), acViewDesign DoCmd.OpenReport ReportName_Actual, acViewDesign Set rpt =...
  7. ideafixer

    Printing label with no pause

    Possibly a RAM issue. It may be caching the label. Try hooking it up to another machine or steal some ram and upgrade the PC to see if that helps
  8. ideafixer

    Concatenation

    Is it in the control source? Make sure it starts with the = sign!
  9. ideafixer

    I set field(s) to Null due to a type conversion failure.

    There is a required field and allow nulls property on the table.
  10. ideafixer

    symbols on reports

    How are the colors getting set. Must be in the detail events somewhere. Change that to display a shape instead.
  11. ideafixer

    Duplicate Records on same row

    Yes.. crosstabs can be used for one table.
  12. ideafixer

    Problem Opening Recordset

    Sorry read something wrong. You are right, when opening a query this way from a form you get that problem. Try the guys solutions above. I was answering as if your query name was on the form.
  13. ideafixer

    Problem Opening Recordset

    Just pop a message box up displaying that value before the open command kicks off. If the table name is not right or the box is empty, there is nothing in that variable. Do you typically set exclusive on. Sometimes tyypos can get ya when assigning variable names. Anyway I think this is the...
  14. ideafixer

    Generating Unique Customer Number

    I don't know how to do a mathmatically formula. You may be better off just storing the SSN and an ID as autonumber in a table. Use the ID generated as your customer number and you can allways refer back to the primary key. I am sure you database has some basic customer table. Make that...
  15. ideafixer

    Access Security

    Noticed no one answered you. I don't know much about Access securty except I think it applies to all DBs on the network usually. I try to avoid it. Not sure if they have made any improvments on in in 2003. Try MSDN... sorry I cannot be of more help.
  16. ideafixer

    SQL Performace using WHERE clause

    I was thinking something a bit more complex like this: filter a = a AND ( Filtera = 1 or ( (Filterb = 2 or filterb = 3) and (filter3 = x and filter4 = c) ) or filter 5 = j )
  17. ideafixer

    Problem Opening Recordset

    When you run in debug, you are getting a value forqryNextToGo right?
  18. ideafixer

    Problem Opening Recordset

    Are all of the field names in the select clause present and named EXACTLY the same in the record source? Sometimes you get that error when you have a field in your selection list that does not appear on the record source.
  19. ideafixer

    SQL Performace using WHERE clause

    For the two following SQL Statements: SELECT * FROM LargeTable INNER JOIN SmallerTable ON LargeTable.ID = SmallTable.ID WHERE SmallerTable.FilterField = ‘Sample’ LargeTable.FilterField = ‘Sample1’ SELECT * FROM LargeTable INNER JOIN SmallerTable ON LargeTable.ID = SmallTable.ID WHERE...

Part and Inventory Search

Back
Top