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

    Suspending 'Require Variable Declaration'

    Thanks Tony Thats all I needed - a little bit of lateral thinking :) The using DeleteLines I can remove the Option Explicit between creatingthe module and inserting the temporary function. Thanks again.
  2. IanGalletly

    Suspending 'Require Variable Declaration'

    Zathras The module should only exist for the time the code takes to run, once the function has been written out, it is called, the result written back to the form and the module is then deleted. I want to avoid having to edit it manually if at all possible. Having "Require Variable...
  3. IanGalletly

    Upgrading DAO to Office XP

    If these are legacy databases that you just need to get working, adding a reference to the 'Microsoft DAO 3.6 Object Library' and removing the ADO reference will resolve most of the problems. If you want to use both ADO and DAO functionality side by side you can preface objects common to the...
  4. IanGalletly

    Suspending 'Require Variable Declaration'

    Can anyone point me in the right direction to setting the 'Require Variable Declaration' in code so it can be temporarily set to false? I have a form which breaks down an SQL string to a string which can be pasted into VBA module to a assign it to a variable. The Form also allows a block of...
  5. IanGalletly

    Outlook 2000: How do I retrieve an Email Address

    Once I have a objMailItem set up, how do I get to the actual email address of the recipient if the recipient is recognised by outlook and therefore the '.To' returns the 'Display Name' rather than the email address. I'm sure this should be blindingly simple - I'm just going round in circles...
  6. IanGalletly

    Outlook 2000: How do I retrieve an Email Address

    Once I have a objMailItem set up, how do I get to the actual email address of the recipient if the recipient is recognised by outlook and therefore the '.To' returns the 'Display Name' rather than the email address. I'm sure this should be blindingly simple - I'm just going round in circles...
  7. IanGalletly

    Access 2000 and Digital Signatures

    Alternatively, is there a way for me to check for e-mails and create responses in Outlook without the security stopping the process. I sort of hope there isn't, but if I can't digitally sign the code to let Outlook know the manipulation is from a certified program, I'm going to have to put...
  8. IanGalletly

    Access 2000 and Digital Signatures

    Is there anyway to apply a digital signature to the vba in an Access mdb project?
  9. IanGalletly

    Calculate No. Rows visible in a Datasheet

    Hi Ben I started thinking I could do it as you suggest - but the rowheight is only valid if its been set to something other than the default row height (it returns -1 then, the actual row height is then dependant on the datasheet font). The reason I wanted this was so I could workout where...
  10. IanGalletly

    Calculate No. Rows visible in a Datasheet

    Can anyone suggest a way to workout how many rows are displayed in a datasheet. I thought this would be straigth forward. The reason this isn't so straight forward seems to be as follows:- 1. The datasheet may have been resized 2. RowHeight may have been changed (including set to default...
  11. IanGalletly

    Chart Object Properties

    Hi Hennie Thanks for the reply. You have encouraged me to have a look at this again. I tried playing with the HasTitle property but it was still giving me the error. However, I have just patched office to SP3 and as a result the context help pages seem to be more complete. In there I found...
  12. IanGalletly

    Chart Object Properties

    I'm still not having any joy with this problem - any help would be appriciated
  13. IanGalletly

    Automatic record sorting -- it's annoying.

    Hi xinyin I don't think there is anyway to stop access sorting records to the order of a key, short of explicity specifying the order of the form's datasource or the 'Order By' both of which require a field that holds data that will produce the required order. As you do not wish to maintain a...
  14. IanGalletly

    Chart Object Properties

    I am trying to change the display of a chart on a form in Access 2000. I have some code that changes the charttype between xlAreaStacked and xl3DBarStacked which works fine. However, to try and tied up the display I would also like to change the text alignment. If the form starts with...
  15. IanGalletly

    simulate timestamp

    Hi Zyrag There are lots of ways to crack this nut. The quickest may be the following In the field definition within the table design set the default value to =Now() As new records are added to the table the date stamp will be automatically set. Hope this helps
  16. IanGalletly

    Chart Object Properties

    I am trying to change the display of a chart on a form in Access 2000. I have some code that changes the charttype between xlAreaStacked and xl3DBarStacked which works fine. However, to try and tied up the display I would also like to change the text alignment. If the form starts with...

Part and Inventory Search

Back
Top