refer

VBA Refer to worksheet vs chart sheet

南楼画角 提交于 2019-11-30 20:41:47
I'm trying to write a small function that takes in a filepath (where the workbook was saved at), targetpath (where the pdf will be saved to), and a string of tab names (pipe (|) delimited) in excel. The user of the function doesn't have to input a string of tab names (it's optional) and if they don't, I want to select all of the visible tabs and print them. This would be in the case if the user has 50 charts in separate worksheets and don't want to write a string like "Chart1|Chart2|...." Code: For Each WSO.Name In WBO.Worksheets strSheets = strSheets & WSO.Name & "|" Next WSO strSheets = Left

VBA Refer to worksheet vs chart sheet

﹥>﹥吖頭↗ 提交于 2019-11-30 05:19:55
问题 I'm trying to write a small function that takes in a filepath (where the workbook was saved at), targetpath (where the pdf will be saved to), and a string of tab names (pipe (|) delimited) in excel. The user of the function doesn't have to input a string of tab names (it's optional) and if they don't, I want to select all of the visible tabs and print them. This would be in the case if the user has 50 charts in separate worksheets and don't want to write a string like "Chart1|Chart2|...."

Redirect based on referrer URL

倖福魔咒の 提交于 2019-11-28 11:07:27
In my site I have a password protected page containing some links to other sites also operated by myself that cannot be password protected. I would like to place a HTML code onto one of the other sites I operate that checks that the person arriving at the page has been referred from the URL of the 'Links Page' . (I understand that this is not a secure option) Summary: If Referrer = 'Links Page URL' *then* Do nothing *Else* Redirect: www.google.com. Does anyone know a simple HTML/ Javascript code that I can copy and paste into my site? if (document.referrer !== "http://www.stackoverflow.com") {

Redirect based on referrer URL

蹲街弑〆低调 提交于 2019-11-27 05:55:41
问题 In my site I have a password protected page containing some links to other sites also operated by myself that cannot be password protected. I would like to place a HTML code onto one of the other sites I operate that checks that the person arriving at the page has been referred from the URL of the 'Links Page' . (I understand that this is not a secure option) Summary: If Referrer = 'Links Page URL' *then* Do nothing *Else* Redirect: www.google.com. Does anyone know a simple HTML/ Javascript