Search results

  1. D

    Spell Check provides a gateway to Access Options settings?

    I see that this question was never answered. I have the same issue. I have added a pic so people can see the button we are talking about. Any way to disable this?
  2. D

    GetOptions Function "Spelling dictionary language" returning 0 in A2007

    Hi guys, I need to check the language setting of Access 2007. From my reading and what works in A2003, the following should get it. Application.GetOption("Spelling dictionary language")No mater what language I set Access to I get 0. Could anyone make any suggestions please.
  3. D

    How to hide the shutter bar for good

    Thank you Bob and SmallTime, I needed to use this question to solve the same problem.
  4. D

    HOw to open a POP UP form to a specified size

    I have had this code running for multiple users for over 2 years on Office 2003 and Win XP. It has not caused a crash. Write back here if you can make it crash and I will try to help.
  5. D

    HOw to open a POP UP form to a specified size

    Hey smig, The forum has a nice hello banner telling me I have not answered something in the forum for a long time. So I thought I will have to get back to it. Public Const CS_DROPSHADOW = &H20000 Public Const GCL_STYLE = (-26) Const SWP_SHOWWINDOW = &H40 Const LWA_COLORKEY = 1 Const...
  6. D

    Delete Outlook Task in code

    The idea of creating anything in outlook is to add your own ID to a field when creating it, then to delete it you search for this ID. Do a search in the forum for my name you will find a number of examples probably with the calendar but the concept is the same. Search for the word mileage as I...
  7. D

    INSERT INTO msaccessTable from a SQL Server

    I am making a little vb.net program to do some updates that my .mdb currently does when it starts. Currently I update some local tables of the .mdb from SQL server like this; INSERT INTO "localMsAccessTable" ("localColumn1", "localColumn2", ...) SELECT "sqlColumn1", "sqlColumn2", ... FROM...
  8. D

    Question Outlook Global Address List

    ok let me try it another away. What exactly will you get from the accounting system? What exactly do you search for i.e. the field in the Global Address list?
  9. D

    Question Outlook Global Address List

    Before you get too excited, You are going to have to do some coding in VBA as I do not have a fully written example nor have I done this. I actually thought it would be easy but it is not as easy as I thought. You will have to use a combination of the Outlook Object Model and CDO depending on...
  10. D

    Question Outlook Global Address List

    So a user of of your database - searches a system or table for supervisors and he gets an identifier which he needs to get a name and email address. The user then wants to email this supervisor. IS that it? So what is the identifier that the user gets? and what field of the Global Address...
  11. D

    Internet Explorer automation with VBA

    is this still a problem? What is the website, what is the exact web page and what exactly from the webpage are you trying to get?
  12. D

    Question Outlook Global Address List

    Linking a Global Address list is like taking a bucket and walking all the way to a well, filling up the bucket and walking all the way back, to only have a glass of water and to throw the rest of the water away. What exactly does a user need the address list for? How often does he use it?
  13. D

    Find specific emails in Outlook from Access

    It is ok. I prefer here for access questions. EE tries to do it all. Don't pay to be a member, answer questions so that you get a free account. I answer questions about iOS now and not about Access.
  14. D

    Find specific emails in Outlook from Access

    By the way I have tried to use WDS but I am in an administered environment at work and have an old version of WDS. Something like this should work, but I would suggest you use Outlook first. Dim con As ADODB.Connection Dim rst As ADODB.Recordset Set con = New ADODB.Connection Set rst = New...
  15. D

    Find specific emails in Outlook from Access

    So did I. WDS version 4.0 seems to be able to be accessed, but am not sure whether you can narrow down your search to just Outlook folders. http://social.msdn.microsoft.com/Forums/en-GB/windowsdesktopsearchdevelopment/thread/3ba54dca-f454-4280-a85f-32b61c7f61b5 Ok First I am still an Office...
  16. D

    Find specific emails in Outlook from Access

    Windows search is I believe also available to VBA but I have never tried to use it. Can you explain more about what you want to find. Is it a mail that you have sent, i.e. you have control over how it is written or made? If this is the case then there is a solution for this and it is not the...
  17. D

    Find specific emails in Outlook from Access

    How are you currently doing this? In my opinion it should not matter whether you use the Outlook object model from access or do the search within outlook vba. But I think using access would be better.
  18. D

    Manually deal with SQL Server timestamp datatype

    Thank you. I swear you are talking a different language so I am going to have to do some reasearch on all your terms and words etc. Thanks again.
  19. D

    Manually deal with SQL Server timestamp datatype

    I have played around with WPF and VB, it is kinda cool. So in your front end what type of object do you save your timestamp? Are you sending xml/json to your back end or what is your communication type? In your back end when you receive the info from your WPF front end what do you do with it...
  20. D

    Save a spreadsheet with another name

    great, make sure you done have in those names characters that are not allowed in windows.
Back
Top Bottom