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: Chuck59
  • Order by date
  1. Chuck59

    Linking pictures to forms based on certain data values

    Use the _AfterUpdate property of the Client Type box to load the appropriate file source of the picture into the picture object control. Then, update the picture object control. Sub <client_type_control>_AfterUpdate Dim strPictureFile as String if me.<client_type_control>.Value = 1 then...
  2. Chuck59

    using the expression builder to sum

    The easiest answer I see is to add an Immediate IF (IIF) to test for Null, substituting zero if True. However, this may put a lot of overhead in your code.
  3. Chuck59

    Reading text from MSN Chat Control

    I have an Access DB that needs to log into MSN Chat (4.0), navigate to a room, and parse text from the chat screen. (All text is ASCII - this room does not allow hex characters.) In response to the text, I will look up info from the database and send back information in the form of chat...
  4. Chuck59

    Drive/Dir Boxes....

    I neglected to reply that your solution worked just fine. DUH... I just didn't see the control in the dropdown box. Thanks!
  5. Chuck59

    Inputing Phone Numbers in Database

    The easiest way to do this is to remove ALL formatting in the text and let Access do it for you: First, copy and paste the following code into a module and execute it on a COPY of your table. Then, on the copy, change the format and input mask information to the internal telephone formatting...
  6. Chuck59

    Conditional formatting in access 2000 SP1

    The same thing happens to me. I have all fields in a continuous form set up for identical conditional formatting. However, sometimes one of the items will fail to format. If I requery, it works fine. It is not related to which field I click on to &quot;set&quot; the condition (I use a...
  7. Chuck59

    Automation with Instant Messenger?

    Has anyone tried automating Instant Messenger 4.5 from Access VBA? I have the MSMSGS help file, but I have been unable to properly declare and create the object for manipulation. I need to: (1) Open and signin to IM if it is closed (2) Get the list of online contacts (3) Populate a table with...
  8. Chuck59

    Automating Instant Messenger

    Has anyone tried automating Instant Messenger 4.5 from Access VBA? I have the MSMSGS help file, but I have been unable to properly declare and create the object for manipulation. I need to: (1) Open and signin to IM if it is closed (2) Get the list of online contacts (3) Populate a table with...
  9. Chuck59

    Unable to conditionally format controls in Report

    This seems a simple question: I want to conditionally change the fontweight to &quot;Bold&quot;(700) on a control ([txtNick]) when another boolean control ([NickError]) is true, in the detail section of my report. [txtNick] is a calculated string. Numerous variations of the reference to...
  10. Chuck59

    Drive/Dir Boxes....

    OK - so what if I do not have - and can't find - the Common Dialog Controls Library?

Part and Inventory Search

Back
Top