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 strongm 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. Linda354

    How competitive is Access?

    Does anyone know how much of the market Access holds? Is it gaining or losing ground? If it does lose ground, how hard is it to pick up some of the other app's like Oracle?
  2. Linda354

    VBA, VB and SQL Defined Please

    Or maybe I was just looking in the wrong pew. Thanks.
  3. Linda354

    VBA, VB and SQL Defined Please

    No, you haven't added to my confusion at all, I have a sense of it now. I guess the thing I'm still wondering is, why couldn't I find a text on SQL at Barnes & Nobles? It makes me think it's not a competitive skill to be acquiring. In general, how is Access holding out against the...
  4. Linda354

    VBA, VB and SQL Defined Please

    When I use the "Build" function, is that VBA? And you're saying when I work with queries, SQL is involved. Okay. Is it just a portion of SQL that's being used by Access? I looked for texts on SQL at Barnes & Nobles and didn't find anything. I see want ads for employers looking...
  5. Linda354

    VBA, VB and SQL Defined Please

    I'm somewhat functional with Access now, and ready to start tackling programming, but I'm confused. This may be a dumb questions, but what is the difference between VBA and SQL? It seems I've been tripping over both interchangeably. There are courses nearby in Visual Basic. How readily...
  6. Linda354

    Using the Criteria field in a query

    "Or do you want Bruce to see everything (All users plus himself)?????" Yes, I want Bruce to see everything. What do I say in that third part of the Iif statement that will say , "forget it, there's no criteria here."
  7. Linda354

    Using the Criteria field in a query

    Can anybody out there figure out what might be wrong? &quot;The syntax is the condition first then if it's OK then if it's not OK... maybe something like: =Iif((CurrentUser()<>&quot;Bruce&quot;),CurrentUser(),CurrentUser() OR &quot;Bruce&quot;) Is the above logic what we need? If the...
  8. Linda354

    Using the Criteria field in a query

    Thanks for the suggestion. It came back a Data Mismatch when I tried to run the form. The &quot;Zoom&quot; window, after saving, turned it into: IIf((CurrentUser()<>&quot;Bruce&quot;),CurrentUser(),([Client Contacting Information].[CounselorID])=CurrentUser() Or ([Client Contacting...
  9. Linda354

    Using the Criteria field in a query

    Thanks so much, I was really happy to get some real syntax into this project. I could even read the logic, but it didn't work! Seems like it should. But when I signed on as Bruce it showed me nothing, since Bruce hasn't input anything yet. When I signed on as another user, the records he...
  10. Linda354

    Using the Criteria field in a query

    That's what I tried at first, then I realized what it was saying is that Bruce will only see Bruce's files, since when he's signed on CurrentUser() = Bruce. It's just a redundant statement. I need to be saying If CurrentUser()<> &quot;Bruce&quot; Criteria is CurrentUser() Would this work...
  11. Linda354

    Using the Criteria field in a query

    I have a query set to show only those files created by CurrentUser(). I want to also set it to show all files for the Administrator, Bruce. How do I code that? It seems like I need to tell the query that if CurrentUser = Bruce, then there is no criteria. Is this something I can't put into...
  12. Linda354

    How can I verify download of site is perfect??

    That sounds simple enough, but with a very large site with which I was unfamiliar, that was more than a notion. Having to check through each file and verify that it looks just like the original would have been the only way to avoid the problems we later had. With 70+ pages that's quite a task.
  13. Linda354

    How can I verify download of site is perfect??

    I guess I should take it from the silence that nobody knows of any way to automatically verify that a site has downloaded properly.
  14. Linda354

    How can I verify download of site is perfect??

    We just had our first experience at working with two users at two different remote sites and it didn't go well. A message that we were &quot;in sync&quot; apparently couldn't be trusted, one person's download of the site was apparently banged up and didn't show up until she tried to upload...
  15. Linda354

    &quot;Remember Value for Later Use.&quot; Where????

    Would it be possible to translate to English what these commands are saying?
  16. Linda354

    &quot;Remember Value for Later Use.&quot; Where????

    Why are there two similar statements? Is one to be used in the query criteria, and the other in the update of the form? If so, this is the best I can make of the necessary substitutions Me.sbfForm.RecordSource = &quot; Select ID from Client Contact Information where ID = &quot; &...
  17. Linda354

    &quot;Remember Value for Later Use.&quot; Where????

    Not sure if I can read that straight. Do the <> brackets indicate where I put in my own values and objects?
  18. Linda354

    &quot;Remember Value for Later Use.&quot; Where????

    Thanks for answering! I don't want to put the value into a field, I want to use it to serve as a criteria in a query. All I want to do is show a list of clients to the user, who selects the client he wants, then, in a subform, the client's first appointment sheet will pop up, and the user...
  19. Linda354

    &quot;Remember Value for Later Use.&quot; Where????

    I'm using the list box wizard, it asks me if I want it to &quot;Remember a specific field value for later use.&quot; I say yes, but then I can't find anywhere in the properties where that value has been stored, what it's called, etc. I have no idea how to access this info &quot;for later...
  20. Linda354

    List Box to locate client record, then open it in edit mode

    I've been trying to use the list box wizard to set up a form that will list all clients entered by a specific counselor, then when I select the client I want, clicking will open the main form in edit mode, calling up that client's record. The wizard creates some code under...

Part and Inventory Search

Back
Top