Search results

  1. S

    Microsoft office Cannot complete operation error

    Outlook 2010 Have custom task form that when assigned back and is accepted getting microsoft office - cannot complete operation. One or more parameters values are not valid error. Tried clearing cache and auto fill cache to no avail. This task was just revised adding additional code but not in...
  2. S

    Outlook 2010 task - comments missing

    Have a custom outlook task that works fine except now finding that when an associate enters comments in the task tab body and then assigns the task to another associate the comments are being deleted. When created and comments are added and I do a print preview the comments show, but when...
  3. S

    Change folders.

    Diane, Thanks so much, your suggestion worked, I also tried the following and it worked as well Set myNameSpace = Application.GetNameSpace("MAPI") Set Application.ActiveExplorer.CurrentFolder = _ myNameSpace.GetDefaultFolder(9) Thanks again Sent from my iPad using Tapatalk HD
  4. S

    Change folders.

    Diane, Form was originally created in 2003, now running 2010 Sent from my iPad using Tapatalk HD
  5. S

    Change folders.

    Diane, When trying the first suggestion it comes up with not supported, the second suggestion it come up as invalid?? Sent from my iPad using Tapatalk HD
  6. S

    Change folders.

    Hi, I have code within a custom task form that opens a meeting request. Issue is when it's done through the task it puts the senders meeting in their task folder instead of their calendar. How to you designate the folder, currently code says currentfolder. When testing I manually changed...
  7. S

    Custom yes/no message box.

    Hi all, I have a checkbox that is coded to check if certain criteria is met and if so it opens a custom meeting request. Wanted to add in if this checkbox is intentionally or mistakenly unchecked that a yes / no message box opens to see if the meeting request (would be a new request) should...
  8. S

    Outlook code to validate textbox value

    Found my error was using = sign when should only have used less than Sent from my iPad using Tapatalk HD
  9. S

    Outlook code to validate textbox value

    Hi all What code would be used to validate a textbox value that is set up as number value to see if it's greater than, less than. When I use < for less than I get a syntax error Thanks
  10. S

    Populate textbox values from one form to another form.

    Hi all, Is there a way to take a textbox value from one form and populate a textbox in another form. What I have is a custom task form that when an associate reaches a certain point a checkbox is clicked and it opens a custom meeting request. I have it populating the required, optional and...
  11. S

    Open custom meeting request with checkbox

    Using the following code to open a custom meeting request, it works as long as I publish the meeting request in the personnel folder, by doing this when meeting request is sent it comes back with message that responses won't be tallied, is there a way to get it to open it when published in the...
  12. S

    Code to open folder

    Thank you so much for your help. Your suggestion worked and it is greatly appreciated. Sent from my iPad using Tapatalk HD
  13. S

    Code to open folder

    Thanks for the suggestion, that would reduce code lines and need for place holder. In this case the folder is on the network, was only using my home laptop, desktop to test the code, how would your suggestion look for network a network folder Sent from my iPad using Tapatalk HD
  14. S

    Code to open folder

    Diane, This code works Sub commandbutton2_click() Set myinspector = Item.GetInspector Set mypage1 = myinspector.modifiedformpages("p.2") Dim shellRun Set shellRun = createobject("wscript.shell") ShellRun.run "explorer c:\documents and settings\stan\desktop\xp Set shellRun...
  15. S

    Code to open folder

    Ok I got the folder to open with the folder path in the code. I then tried creating the path based on textbox values. When it reads the path line I am getting a string error, is there a way to create the path based on textbox value? Sent from my iPad using Tapatalk HD
  16. S

    Code to open folder

    Thanks this will help Sent from my iPad using Tapatalk HD
  17. S

    Code to open folder

    Yes, it would be a windows folder. So far all I have found is opening outlook folders. Could you tell me where I might be able to find example code? Sent from my iPad using Tapatalk HD
  18. S

    Code to open folder

    Is it possible to code a commandbutton to open a folder?
  19. S

    Outlook custom checkbox not changing value

    I created a custom task form that has checkboxes, based on one question one checkbox is programmed to change the value of other checkboxes. It works with the exception that it does not change the actual value for the other checkboxes to -1, it just puts a check mark. Is there a way to get it to...
  20. S

    Outlook to validate task form before sending

    Diane, This task form is to be used throughout the company. The validations are used to ensure all needed items are completed. Can this be done via checkbox? To save, which would cause the validation process to work, before assigning the task Sent from my iPad using Tapatalk HD
Back
Top