I've written a VBA macro that exports in excel all completed (ticked) mails from a mailbox based upon the TaskCompletedDate property. However TaskCompletedDate shows only the date portion of the DateTime value. Is there a way to getthe time value as well?
I'm using Outlook 2010.
Documentation reads that it returns Date type, so you can't get exact time I'm affraid, unless you save it on your own in the first place.
yes you can get the time as well. For this first go to your outlook express mailbox. Then right click on the column header and select "View Settings". Now in the pop-up window click "Format Columns". Now select the "Flag Completed Date" column on the left hand side and then from the format drop down select the 1st, 2nd or 3rd option. Click ok and come out of settings.
Now whenever you extract the info from the taskcompleteddate property you will get the time as well.
I am too late to answer... i have joined recently. But I hope this will help someone else who might be looking for it.
Regards,
Premanshu
You cannot do that - Outlook only stores the date (in the UTC time zone). You can see the data on the MAPI level in OutlookSpy (I am its author - select the task, click IMessage button).
Related
I have tried the registry edit here: https://answers.microsoft.com/en-us/msoffice/forum/all/how-to-disable-hyperlink-warnings-for-office-365/9e96cae1-0960-4f20-898c-440cafd6cf7c
. I notice that my decimal 1 always reverts back to hexidecimal when I close. Upon restart nothing changes when I try to open the hyperlink in excel.
0 and 1 are exactly the same decimal and Hex, see here and here
The solution that is described in the link above (adding DisableHyperlinkWarning to the win registry) might not always work.
This solution should stop hyperlink warnings in Excel for Office 365:
Download Procmon (a monitoring tool for Windows that shows real-time process/thread activity):
https://technet.microsoft.com/en-us/sysinternals/processmonitor.aspx
Run Procmon.exe
Toggle Capture Events to off (File > Capture Events)
Clear the current events (Edit > Clear Display)
Toggle Capture Events on.
Click the desired hyperlink in Excel.
Turn Capture Events off.
Filter by Process=EXCEL.EXE (Filter > Filter, chose "Process" from the list, set field to "is", type "EXCEL.EXE" in the empty field, chose "Include" from the list and click "Add".)
Filter also by Operation=RegQueryValue and Result=NAME NOT FOUND
Find the first entry with "EditFlags" in the path (use the search icon to search the filtered list or CTRL+F)
Right click on that entry and select > Jump to (opens registry)
9 Add a new DWORD type named EditFlags with the hexadecimal value 10000.
In my case it was the key htmlfile_FullWindowEmbed
Modified from here
Is it changing back after restarting? if so, maybe you have some policy on your PC.
EDIT:
"The option to switch between the two is purely to allow entry in either format, it is always stored in Hex and for convenience the Decimal value is shown in brackets afterward in the field view
Selecting either option would have absolutely no effect on the program accessing the value and is the same either way."
Answer from here -> https://answers.microsoft.com/en-us/windows/forum/all/problem-with-regedit-fail-trying-to-modify-dword/c6cdf515-c517-4196-8d4a-582e942f9315
The simplest solution is to use Outlook. For example, if you want to cancel the reminder when opening the embedded pptx file, you can send yourself an email with the pptx file attachment in Outlook. After receiving it, double-click the attachment to open it, and a dialog box will pop up. The following There is a check box, "Always ask before opening this type of file", uncheck it, click Open, and there will be no warning when the embedded link of this type of file is opened in ppt or excel. This method also works for other types of files. There are some settings between office components that are related to each other.
Can we query the azure table in Azure Storage Explorer based on current day/date?
I am trying to fetch the records which are older than 90 days. I was able to filter based on given date, example:
UpdatedAtUtc lt datetime'2019-02-27T21:55:16.9605195Z'
But I would like to query it based on current day
You should be able to achieve this by doing the following:
Selecting the table that you wish to query.
Clicking on the query button above the table display.
Selecting the field you wish to query on (UpdatedAtUtc)
Checking the box to the left of the field
Deleting the row below the field you have selected (X button).
Clicking on the value dropdown.
Selecting 'Custom'.
Enter 90 days.
Check the UTC radio button.
Click ok.
Click the Text Editor button (under close query and next to query builder).
Change ge to lt or le depending on your requirements - supported syntax is available here.
Run the query by clicking the play button.
Refer to the suggestions mentioned by Gaurav Mantri.
Kindly let us know if the above helps or you need further assistance on this issue.
I'm developing an app for event calendar in android studio. But I want to mark a random date by taping on the date and then pressing the Mark Button. Again Unmark the date by clicking the Unmark Button.
N.B: I'm currently marking the current date.
Is there any effective solution for my desired criteria?
You will need to maintain your own data structure of which dates are selected. This can be in-memory, persisted via SQLite, etc. There is too little information in your question to give a better answer.
I am a newbie in sharepoint/infopath.
I am trying to edit an existing field in sharepoint which seems to be loaded from infopath.
The flow of the program is as follows:
I open a form (which is integrated using infopath) from sharepoint. The form has some multiple choice questions and at the end there is a submit button. After clicking "submit", I am transferred to a list view which displays the "number of correct answers" and "your percentage" columns (I can have multiple attempts and they are displayed in the list).
I am trying to edit the calculations of the percentage. When I open the infopath form, I can see that there is a field called "Your percentage". I displayed the setting and there is no formula.
Where can I edit that field?
Thanks!
Use the button Rule Inspector to check all the rules cotained on the form, the button is located on the data ribbon:
There you can see all the rules, just look up for the one that calculates the percentage.
Hope this helps.
I have an Excel sheet with the 'Microsoft date time picker control'.
The content in the control, by default, when the sheet initializes is the current date.
I wish to display some text in the control when the control is first initialized...something like "Please select a date".
Can this be done? If yes, how? Do we use a macro? Can we modify a property through code?
No, it's not possible (and not advisable). The Value property is of type date-time.