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 Mike Lewis 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. mlocurci

    Filter XML by Query Sting Parameters

    I am not an XML person, but anyone know how I can take an XML file and filter it by the parameters passed to me in the URL? I would then post back to the filtered XML to a web page. exmaple www.mysite.com/category=X&subcategory=Y. I would then look for the matching nodes in the XML and...
  2. mlocurci

    Formula to get sheet names

    I have a workbook with many sheets, each sheet is a person name. Is there a way I can have a formula on my summary page enumerate the sheet names?
  3. mlocurci

    SQL 92? Date Problem

    I am trying to hook my SQL DB to a report engine that says it supports SQL 92. I dont really know what that means, except that it cant handle this part of my SQL statement. Can someone tell me how I can accomplish the same thing as this using sql 92 standards? Basically I need to get all the...
  4. mlocurci

    Simple Date/TIme Question

    I really hate dealing with dates and times in queries. And again, I find myself pulling my hair our. I need to find all completedates for yesterday, so i want from 12 Midnight to 12 Midnight. How can I do that? Here is what I am using, but its wrong. How do I normalize to 2008-06-24...
  5. mlocurci

    Convert from UTC quick and dirty

    Ereka! I see the error of my ways DateAdd("h",-5,[Case_Open_DT])
  6. mlocurci

    Convert from UTC quick and dirty

    Still can't get it. I really just want to recalculate the date by 5 houts in the past. I am just stuck with how to do it.
  7. mlocurci

    Convert from UTC quick and dirty

    Understood, but the data is static in the table. I ideally I want a field in my query that says EST_TimeStamp:[CaseAdd]-5
  8. mlocurci

    Convert from UTC quick and dirty

    I need a one time fix so that I can have a query to look at the timestamp in a table that is UTC and adjust it for EST (-5). I am somewhat perplexed and know this should be VERY easy, but I am confused. Help Please!
  9. mlocurci

    Confirm Fields of ASP form

    Can you use the confirmation feature when you form is in ASP?
  10. mlocurci

    Place two form fields in subject line of an email

    With a frontpage form that sends an email, does anyone know if you can place two fields in there? Perhaps seperated by a "&"?
  11. mlocurci

    Value Passed to Query with nothing selected

    Correct, non of the records in that field will be NULL. What I am attempting to do is have a form with multiple drop downs. If one drop down is not selected, but others are, I don't want to prevent the query from working, but to assume that there is no criteria for that field. I don't think that...
  12. mlocurci

    Value Passed to Query with nothing selected

    If I use a query that depends on the value of the dropdown, what if no value is selected in the drop down, what value gets pased? i assummed Null ans wrote my where clause like this: IIf([Forms]![ReportingMenu]![SupervisorReport]=Null,"Is Not Null",[Forms]![ReportingMenu]![SupervisorReport])...
  13. mlocurci

    Passing Drop Down Value to Query

    I am try to pass the value of a drop down on an unbound form to a query. Is there something more to is. Forms!MyForm!MyField Do you need to do something more?
  14. mlocurci

    Query All PCs for Time Offset

    Is there a way to query all the PCs in my location and find the time they are reporting or the time offset from the DC?
  15. mlocurci

    Default a Combo Box

    I been working on rebuilding the table, and it seems better now. I am now trying to default a field to the logged in user's name.....any ideas there :)
  16. mlocurci

    Default a Combo Box

    Taking out the control source didn't seem to do much. This was odd. When I made the Default value yes, it defaulted to No. When I made it No, it defaulted to N/A. When I made it N/A, it added "" and didn't pick up any default.
  17. mlocurci

    Default a Combo Box

    Yes, I do have a control source that stores column 2 (Bound Column=2). No error, just the the box is not defaulted. I have another application where the object hsa the same setup, and it defaults to yes. I compared everything, an there is no difference.
  18. mlocurci

    Default a Combo Box

    I put in the Row SourceL "Yes";1;"No";-1;"N/A";0 For Default Value I tried Yes and "Yes" as well as 1, -1, 0
  19. mlocurci

    Default a Combo Box

    I tried #1 above multiple times, but it never works. Any tips on how the default property works?
  20. mlocurci

    Default a Combo Box

    I have a form that is an application form, I want to default some falues of the form (I dont want to do this at the table level), I should know this, but how do I default hte drop down? Which control do I need to touch? Each Drop Down has a yes, no, and NA choice, but it writes a value to the...

Part and Inventory Search

Back
Top