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. steve728

    Brwose dialog in an Access???

    How do I add a Browse button to a form for selecting a specific file on the current user's hard drive? Thanks, Steve728
  2. steve728

    Is form open in background?

    Please provide me with a code sample of how to detect if a form is open in the backgrund or not. Thanks, Steve728
  3. steve728

    I'm trying to copy a photo into an OLE Object data type field???

    When trying to copy a photo into an OLE Object data type field I get the error message "The OLE server isn't registered. To register the OLE server, reinstall it. How do I do this??? Steve728 MS Access 2000 Win XP OS
  4. steve728

    Where to find help on creating group headers/footers in forms?

    Can anyone show me where to look and learn how to create group headers and footers in a continuous form? I know all is possible but is it really feasible? I know how to do it in reports but forms??? Steve728
  5. steve728

    How to format a time value into a 24 hr one.

    Great. I should have been more generally explicit. How do I turn whatever time is in the field to it's 24 hour equivalent? Thanks again, Steve728
  6. steve728

    How to format a time value into a 24 hr one.

    I want to convert a field's string content of "6:00" to "18:00"). Do I use the use the format() function? Will someone show me how to do this?? Thanks in advance. Steve728
  7. steve728

    How to export a table to Excel within a stored proc?

    Once I'm done gathering data into a table I need to export it to an Excel Spreadsheet or a .csv file. Is it possible to do this from within a stored procedure? If so please show me an example of the typeical code. Thanks in Advance! Steve728
  8. steve728

    How to get around special characters???

    I've given you all stars for sharing your weekends with me. I Don't know what I would do whithout all my cyber friends out there. Probably punt. Steve728
  9. steve728

    How to get around special characters???

    I'm using Access 2002 so here goes: .TxtPurse.Value > Me.TxtPrior Then strMemo = "-" & Now() & " Increased pocket from $" & .TxtPrior.Value & " to " _ & .TxtPurse.Value & vbCrLf & Nz(Trim(Forms![Storage Data Entry]!TxtMemo), " ") adoconnection.Execute "UPDATE storage SET...
  10. steve728

    How to get around special characters???

    This is great but please insert the corrections into my code so that I can see where to and how to apply this. Please.
  11. steve728

    How to get around special characters???

    I'm having a problem updating the storage.memo field with the contents of Forms![Storage Data Entry]!TxtMemo) because of special chars within it (i.e. ##, ' + *, etc.) Please help me solve this issue. If .TxtPurse.Value > Me.TxtPrior Then strMemo = "-" & Now() & " Increased pocket from...
  12. steve728

    Looking for a good T-Sql testing textbook??

    Can anyone refer me to a good textbook that provides easy to more complex T-SQL tests with answers provided to check the results? The book would hopefully include the tables required or would use the common MS examples.
  13. steve728

    I need a good reference for working with Nested Ifs

    andymc Will you please send me some of your samples using nested if / Else If / Else 3-4 deep? Or perhaps refer me to more examples.I also got the good examples when "Making multiple variable assignments in one formula" from kenhamady.com Thanks in advance. Steve728 VBA, .NET, T-Sql 2000...
  14. steve728

    I need a good reference for working with Nested Ifs

    lbass Is the following correct when adding a third nested If? if x = 1 then ( if a = 5 then ( if q = "Go" then m else n ) b else c ) else if x = 2 then ( if a = 2 then d else e ) else y
  15. steve728

    I need a good reference for working with Nested Ifs

    I noticed and confirmed with other users that Crystal Reports XI easily gets confused when you work with nested Ifs. You must help the program by using parenthesis and semi colons. Will someone please refer me to a good reference for learning how to overcome this problem? A textbook or better...
  16. steve728

    How to display 2 alternate colors in the detail of a report?

    Dear dgillz: The formula works great. Can you please tell me how to use a customized color for this formula instead of listed ones? I want to create a lighter shade of the color Silver. Actually light gray so that the printer doesn't use so much ink. Thanks so much! Steve728
  17. steve728

    How to display 2 alternate colors in the detail of a report?

    Thank you so much and true, I should have included the version of the software. It is XI. Any changes? Steve728
  18. steve728

    How to display 2 alternate colors in the detail of a report?

    I want the detail section to display two colors off and on within the detail section of the report. How do I do this? A formula?
  19. steve728

    Where to find examples of TreeView control w/ vb.net?

    Can someone please refer me to a good source of examples developing vb.net TreeView controls. Steve728 VS.Net 2003
  20. steve728

    If (@Job_Name = N") SELECT @Job_Name = NULL ???

    Will someone please explaing what the following line is doing? If (@Job_Name = N") SELECT @Job_Name = NULL I'm used to seeing more like: If (@Job_Name = 'N') SELECT @Job_Name = NULL Thanks, Steve728

Part and Inventory Search

Back
Top