由於我平時工作的時候總是在遠端桌面或者虛機裡邊,所以經常有新郵件或者reminder沒有能及時察覺,所以便寫了這麼乙個vba,在有新郵件或者reminder的時候使用主機板小喇叭來點動靜。關於outlook的程式設計可以參考這篇文章
option explicit
private declare function beep lib "kernel32" (byval dwfreq as long, byval dwduration as long) as long
const one_beep = 600
const half_beep = 300
const note_1 = 440
const note_2 = 495
const note_3 = 550
const note_4 = 587
const note_5 = 660
const note_6 = 733
const note_7 = 825
beep note_5, one_beep
beep note_3, half_beep
beep note_5, half_beep
beep note_1 * 2, one_beep * 2
end sub
beep note_3, one_beep
beep note_3, half_beep
beep note_2, half_beep
beep note_3, one_beep * 2
end sub
Outlook中自定義新郵件提醒
由於我平時工作的時候總是在遠端桌面或者虛機裡邊,所以經常有新郵件或者reminder沒有能及時察覺,所以便寫了這麼乙個vba,在有新郵件或者reminder的時候使用主機板小喇叭來點動靜。關於outlook的程式設計可以參考這篇文章 option explicit private declare f...
關於echarts自定義tooltip提示框內容
本文主要是對echarts的tooltip提示功能的乙個總結。tooltip的一些常用屬性 1 提示內容對其方式 textstyle。textstyle tooltip的align的值可以有 center left right,分別代表 居中對齊 左對齊 右對齊 2 提示框觸發方式 trigger ...
espcms自定義表單郵件字段
include inc replace mailtemplates.php 中增加一行就可以了。如 replacemail mailform array name 職位 title zhiwei content read zhiwei 職位是後台顯示的,zhiwei 是後台編輯郵件模版插入的,zhi...