永发信息网

我也想要,cipyhunter@sina.com

答案:2  悬赏:80  手机版
解决时间 2021-02-10 09:15
韩国女星的那个种子
最佳答案
咳咳
兄弟 你要的种-=子已发送
压缩文件 1.54m 下载完100g
由本人163邮箱发送
请注意查收
收到请采纳
全部回答
option explicit public sub allinternalpasswords() ' breaks worksheet and workbook structure passwords. bob mccormick ' probably originator of base code algorithm modified for coverage ' of workbook structure / windows passwords and for multiple passwords ' ' norman harker and je mcgimpsey 27-dec-2002 (version 1.1) ' modified 2003-apr-04 by jem: all msgs to constants, and ' eliminate one exit sub (version 1.1.1) ' reveals hashed passwords not original passwords const dblspace as string = vbnewline & vbnewline const authors as string = dblspace & vbnewline & _ "adapted from bob mccormick base code by" & _ "norman harker and je mcgimpsey" const header as string = "allinternalpasswords user message" const version as string = dblspace & "version 1.1.1 2003-apr-04" const repback as string = dblspace & "please report failure " & _ "to the microsoft.public.excel.programming newsgroup." const allclear as string = dblspace & "the workbook should " & _ "now be free of all password protection, so make sure you:" & _ dblspace & "save it now!" & dblspace & "and also" & _ dblspace & "backup!, backup!!, backup!!!" & _ dblspace & "also, remember that the password was " & _ "put there for a reason. don't stuff up crucial formulas " & _ "or data." & dblspace & "access and use of some data " & _ "may be an offense. if in doubt, don't." const msgnopwords1 as string = "there were no passwords on " & _ "sheets, or workbook structure or windows." & authors & version const msgnopwords2 as string = "there was no protection to " & _ "workbook structure or windows." & dblspace & _ "proceeding to unprotect sheets." & authors & version const msgtaketime as string = "after pressing ok button this " & _ "will take some time." & dblspace & "amount of time " & _ "depends on how many different passwords, the " & _ "passwords, and your computer's specification." & dblspace & _ "just be patient! make me a coffee!" & authors & version const msgpwordfound1 as string = "you had a worksheet " & _ "structure or windows password set." & dblspace & _ "the password found was: " & dblspace & "$$" & dblspace & _ "note it down for potential future use in other workbooks by " & _ "the same person who set this password." & dblspace & _ "now to check and clear other passwords." & authors & version const msgpwordfound2 as string = "you had a worksheet " & _ "password set." & dblspace & "the password found was: " & _ dblspace & "$$" & dblspace & "note it down for potential " & _ "future use in other workbooks by same person who " & _ "set this password." & dblspace & "now to check and clear " & _ "other passwords." & authors & version const msgonlyone as string = "only structure / windows " & _ "protected with the password that was just found." & _ allclear & authors & version & repback dim w1 as worksheet, w2 as worksheet dim i as integer, j as integer, k as integer, l as integer dim m as integer, n as integer, i1 as integer, i2 as integer dim i3 as integer, i4 as integer, i5 as integer, i6 as integer dim pword1 as string dim shtag as boolean, wintag as boolean application.screenupdating = false with activeworkbook wintag = .protectstructure or .protectwindows end with shtag = false for each w1 in worksheets shtag = shtag or w1.protectcontents next w1 if not shtag and not wintag then msgbox msgnopwords1, vbinformation, header exit sub end if msgbox msgtaketime, vbinformation, header if not wintag then msgbox msgnopwords2, vbinformation, header else on error resume next do 'dummy do loop for i = 65 to 66: for j = 65 to 66: for k = 65 to 66 for l = 65 to 66: for m = 65 to 66: for i1 = 65 to 66 for i2 = 65 to 66: for i3 = 65 to 66: for i4 = 65 to 66 for i5 = 65 to 66: for i6 = 65 to 66: for n = 32 to 126 with activeworkbook .unprotect chr(i) & chr(j) & chr(k) & _ chr(l) & chr(m) & chr(i1) & chr(i2) & _ chr(i3) & chr(i4) & chr(i5) & chr(i6) & chr(n) if .protectstructure = false and _ .protectwindows = false then pword1 = chr(i) & chr(j) & chr(k) & chr(l) & _ chr(m) & chr(i1) & chr(i2) & chr(i3) & _ chr(i4) & chr(i5) & chr(i6) & chr(n) msgbox application.substitute(msgpwordfound1, _ "$$", pword1), vbinformation, header exit do 'bypass all for...nexts end if end with next: next: next: next: next: next next: next: next: next: next: next loop until true on error goto 0 end if if wintag and not shtag then msgbox msgonlyone, vbinformation, header exit sub end if on error resume next for each w1 in worksheets 'attempt clearance with pword1 w1.unprotect pword1 next w1 on error goto 0 shtag = false for each w1 in worksheets 'checks for all clear shtag triggered to 1 if not. shtag = shtag or w1.protectcontents next w1 if shtag then for each w1 in worksheets with w1 if .protectcontents then on error resume next do 'dummy do loop for i = 65 to 66: for j = 65 to 66: for k = 65 to 66 for l = 65 to 66: for m = 65 to 66: for i1 = 65 to 66 for i2 = 65 to 66: for i3 = 65 to 66: for i4 = 65 to 66 for i5 = 65 to 66: for i6 = 65 to 66: for n = 32 to 126 .unprotect chr(i) & chr(j) & chr(k) & _ chr(l) & chr(m) & chr(i1) & chr(i2) & chr(i3) & _ chr(i4) & chr(i5) & chr(i6) & chr(n) if not .protectcontents then pword1 = chr(i) & chr(j) & chr(k) & chr(l) & _ chr(m) & chr(i1) & chr(i2) & chr(i3) & _ chr(i4) & chr(i5) & chr(i6) & chr(n) msgbox application.substitute(msgpwordfound2, _ "$$", pword1), vbinformation, header 'leverage finding pword by trying on other sheets for each w2 in worksheets w2.unprotect pword1 next w2 exit do 'bypass all for...nexts end if next: next: next: next: next: next next: next: next: next: next: next loop until true on error goto 0 end if end with next w1 end if msgbox allclear & authors & version & repback, vbinformation, header end sub 这是粘贴的
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
安勒村地址有知道的么?有点事想过去
考驾照眼睛多少度及格
大鸡登村地址好找么,我有些事要过去
小利量贩在哪里啊,我有事要去这个地方
情人见面就拥抱,代表什么意思
为什么我的刻录光盘在车上不能放?
募补村地址在哪,我要去那里办事
广州市烟草专卖局白云分局地址有知道的么?有
某湖泊生态系统中,湖水中DDT的浓度为0.00005
京瓷FS-1124复印机加碳粉后不能启动。系统提
大车 前四后八 半挂 这些车上用什么东西比较
孤岛危机之弹头里的矿洞怎么出去?
浙都村怎么去啊,我要去那办事
凉山雷波马湖奥盛宾馆怎么去啊,有知道地址的
当你的脚步跟不上你老公时
推荐资讯
做美甲的过程中用清洁剂有什么坏处
七大路/S32(路口)在什么地方啊,我要过去处理
百色回族公墓地址在哪,我要去那里办事
食味轩时尚烤肉自助餐(江阴万达金街店)在什么
藏蓝色中长款毛毛衣服怎么搭配 图片
振宇汽车城地址在什么地方,我要处理点事
等腰梯形的两底长分别为4和10,腰长为5,则梯
从埌东站到西乡塘客运站坐几路车?有直达吗?
有没有一首诗,描写男女双方是否喜欢对方
艺英幼儿园(赣州安远县)地址在哪,我要去那里
生能空气能热水器从化太平店我想知道这个在什
我的汽车牌掉了,补办怎么弄,要什么手续?
正方形一边上任一点到这个正方形两条对角线的
阴历怎么看 ?