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

    Storing a Password to open a file in Personal XLA

    We have a sensitive workbook we send to many users in our organization. Certain users should always be able to open it. It prompts for a password on open. What I wanted to do was to store a macro in these specific users Personal XLA that any time a workbook opens with a Password Prompt it...
  2. DoctorV3774

    Help with a Complex VLOOKUP

    Skip, Thanks for your response. This is VERY close. It seems to be rounding down in the lookup rather than rounding up. example A3 with 106 is giving me 1 PART when I thought it should give me 2 PART because it is closer to that value. But is that the way INDEX Match evaluates values...
  3. DoctorV3774

    Help with a Complex VLOOKUP

    I have a little table in Excel in cells A1:F5. In cell E9 to the right of my Formula Label I need a formula to evaluate the value in E7 (in this case A3) and evaluate the value in E8 (in this case 115) and read through the column headings to return a result of 3 PART. How can I write a VLOOKUP...
  4. DoctorV3774

    Code to exit out of Excel all together

    I have code at the end of a sub to close an active workbook save changes no. Is there any code I can use right after this to exit out if Excel altogether? Application.Quit does not seem to work. Thanks Here is code at the end of my sub ActiveWorkbook.Close savechanges:=False
  5. DoctorV3774

    Placing Queries in Groups

    I noticed on my left side Tasksbar that in addition to Objects is Groups. When I set up a group and place a query inside it, it is putting a shortcut to the actual query in Groups. Is there any way to place the entire query in groups without the shortcut so it does not appear twice? Thanks
  6. DoctorV3774

    Can Not Get Update Query to work in SQL Server 2000

    We have a View named vwSubLogCounts_Post2005 which we want to use in SQL Server to update records in a SQL Table named GAIG_History_Producer_Codes When I run the SQL below in my Access update Query it runs fine. But when I attempt to run in the SQL Server Query Analyzer I get an error incorrect...
  7. DoctorV3774

    Setting a default Outlook Profile in Code

    I wanted to set my Access database when it opens to a default profile named SHS Profile, and then when it closes back to Default. How can I do that?
  8. DoctorV3774

    Changing an Oulook Profile in Code

    We have an Access database usimg contacts in a special mailbox named SHS. How can i change a users Outlook Profile so that when they open the database it changes to the Profile for SHS and when they close the database it changes back to their user ID ie tsmith Thanks
  9. DoctorV3774

    Trouble setting a default value for an Outlook Contacts Folder

    We have the following code on a button click below. User clicks the button cmdSelectFolder to invoke this function to browse and select a contacts folder which is then set here to Me![txtFolderName].Value = pfld.Name. When we try and set a default value for Me![txtFolderName].Value to...
  10. DoctorV3774

    Changing the from Address in a sent e-mail

    I have code I am using in a SendObject event using MS Access. I needed to know if there was a way to chnge the From Address to a default disional e-mail folder instead of my personal e-mail address so that if people reply to the e-mail it goes to the divisional mailbox, not my own. Code in...
  11. DoctorV3774

    SendObject Not Picking Up HTML Template File

    I have a button on my form to invoke an Outlook E-Mail and Populate the To and Bcc fields. This works great. I also want to use an HTML Template as the basis for the wallpaper in the e-mail. I have the full path of the HTML file typed out in my code yet it never picks up this HTML Template. How...
  12. DoctorV3774

    Maintain or refresh an Outlook contacts list with an Access Table

    I have an Access table with full name and email address that I want to import into my Outlook Contacts folder. I have successfully completed this by manually going to File, Import from Outlook after setting the dsn. What I need to be able to do is write some code to attach to a button on the...
  13. DoctorV3774

    Urgent Excel Copy Worksheet method is truncating data

    Ken, I agree with you about moving the sheet but I am not sure how to do it in the code above. If as the code show we set a placeholder for wb as a temporary workbook how do I move the Activesheet to wb? Then I could get rid of the code below and break the links like you were saying. With...
  14. DoctorV3774

    Urgent Excel Copy Worksheet method is truncating data

    Glenn If I move the sheet how can I have it be part of an e-mail in the event above
  15. DoctorV3774

    Urgent Excel Copy Worksheet method is truncating data

    Ken, the send sheet method in his download gives the same problems as before it is truncating all data > 255 characters
  16. DoctorV3774

    Urgent Excel Copy Worksheet method is truncating data

    I have an application used by 55 users. In the final step they are asked to e-mail the sheet they are on to an individual. What happens during the execution of this code is that it sends one sheet of just values to a user, stripping away all named ranges except the Print rane and removing all...
  17. DoctorV3774

    Need to get a specific record count Most recent 5 with detail

    I have a fairly simple SQL Statement. I need the Most recent 5 records in descending date order by Agency_Diary_Date_of_Contact for each Producer_code to display. Problem I am having when I use Top 5 in the select statement is that it only shows the most recent 5 for the first producer in the...
  18. DoctorV3774

    MS Word Question on Text Form Fields

    I've created a form in Word using the Text Form Field for input. After protecting the document for use, the Spell check capability is not available and even if I "unprotect" the form, the form text field data is not included in the spell check evaluation. Is there any way around this?
  19. DoctorV3774

    Data Type Equivalent in SQL Server to Access Hyperlink

    I have a data type in Access that is Hyperlink. I did not see that data type for SQL Server. How can I ensure that my hyperlinks still work when I upsize this table from Access to SQL Server? What data type should I change it to for SQL Server? Thanks
  20. DoctorV3774

    Disabling Autoscroll wheel on Mouse?

    Check out stephen Lebans web site of Access tips. His code is the best I've seen and I have it in one of our large production databases.

Part and Inventory Search

Back
Top