小编Rob*_*Rob的帖子

无法获取未定义或空引用的属性"createRange"

以下代码在我升级到Windows 8.1/Internet Explorer 11之前一直运行良好,现在抛出错误:"无法获取未定义或空引用的属性'createRange'"

var SelectedData = window.external.menuArguments.document.selection.createRange().text;
Run Code Online (Sandbox Code Playgroud)

有没有修复/解决这个问题?

*问题更新如下更新的代码仍然无效....

<html><head><title>-</title><script type="text/JScript">
function Launch()
{
var TheSelection = document.getSelection();
if(TheSelection != null)
{

.... do  a bunch of stuff

}
window.close();
}
</script></head><body onload="Launch();" </body></html>
Run Code Online (Sandbox Code Playgroud)

我也尝试过window.getselection; window.getselection(); .window.getselection()的ToString();

这些似乎都不起作用...... ???

javascript

9
推荐指数
1
解决办法
3万
查看次数

如何获取和设置通用Windows应用程序的音量级别

标题说明了一切,我想获得并设置通用Windows(iot)应用程序的音量级别.

它可以是与我的特定应用相关的声级 - 这是理想的; 或者它可以是系统声级 - 如果必要/可能.

我正在使用visual studio 2015

我一直在寻找示例/样品,但已经干了.

任何帮助,将不胜感激.

(注意这不是一个重复的问题 - 我想获取和设置通用Windows应用程序的音量级别 - 这不能通过uwp中的COM对象完成 - uwp应用程序也不使用VBScript或JScript)

.net vb.net audio iot uwp

7
推荐指数
1
解决办法
3943
查看次数

摆脱选项卡控件的该选项卡下的行

使用xaml(wpf)我试图摆脱下面"插图A"中显示的选项卡控件下的行,使其最终看起来像"插图B":

插图A.

http://www.arulerforwindows.com/images/peskylinea.png

图B

http://www.arulerforwindows.com/images/peskylineb.png

当我定义选项卡项但显示附加到选项卡控件时,该行显示,因此更改选项卡项或选项卡控件之一或两者上的BorderThickness似乎不会产生所需的结果.

我需要在透明背景上执行此操作,其中不能使用实心填充矩形来掩盖问题.

这是代码:

<!--Tab Control-->
<Style  TargetType="{x:Type TabControl}">
    <Setter Property="OverridesDefaultStyle" Value="True" />
    <Setter Property="SnapsToDevicePixels" Value="True" />
     <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type TabControl}">
                <Grid KeyboardNavigation.TabNavigation="Local">
                    <Grid.RowDefinitions>
                        <RowDefinition Height="Auto"/>
                        <RowDefinition Height="*"/>
                    </Grid.RowDefinitions>
                    <TabPanel Name="HeaderPanel" Grid.Row="0" Panel.ZIndex="1" Margin="0,0,0,-1" IsItemsHost="True" KeyboardNavigation.TabIndex="1" Background="Transparent" />
                    <Border 
                        Name="Border" 
                        Grid.Row="1" 
                        Background="{StaticResource WindowBackgroundBrush}" 
                        BorderBrush="{StaticResource DefaultSystemBrush}" 
                        BorderThickness="1,1,1,1" 
                        Margin="0,0,0,0"
                        CornerRadius="4" 
                        KeyboardNavigation.TabNavigation="Local"
                        KeyboardNavigation.DirectionalNavigation="Contained"
                        KeyboardNavigation.TabIndex="2" >
                        <ContentPresenter 
                             Name="PART_SelectedContentHost"
                             Margin="4"
                             ContentSource="SelectedContent" />
                    </Border>                                         
                </Grid>
                <ControlTemplate.Triggers>
                    <Trigger Property="IsEnabled" Value="False">
                        <Setter Property="Foreground" Value="{StaticResource DisabledForegroundBrush}" />
                        <Setter TargetName="Border" Property="BorderBrush" Value="{StaticResource DisabledBorderBrush}" /> …
Run Code Online (Sandbox Code Playgroud)

wpf tabcontrol border

6
推荐指数
1
解决办法
6222
查看次数

从输出中删除路径

Select-String在PowerShell中使用以下命令:

Select-String -Path E:\Documents\combined0.txt -Pattern "GET /ccsetup\.exe" -AllMatches > E:\Documents\combined3.txt
Run Code Online (Sandbox Code Playgroud)

创建一个输出文件,每行以路径和文件名开头,后跟冒号.例如:

E:\Documents\combined0.txt:255:255.255.255 - - [31/Dec/2014:04:15:16 -0800] "GET /ccsetup.exe HTTP/1.1" 301 451 "-" "Mozilla/5.0 (compatible; SearchmetricsBot; http://www.xxxx.com/en/xxxx-bot/)"
Run Code Online (Sandbox Code Playgroud)

如何在结果中删除输出文件路径名,输出文件名和冒号?

powershell select-string

6
推荐指数
2
解决办法
1万
查看次数

标签 统计

.net ×1

audio ×1

border ×1

iot ×1

javascript ×1

powershell ×1

select-string ×1

tabcontrol ×1

uwp ×1

vb.net ×1

wpf ×1