How to use PrepareStatementAsync statement in windows phone development ?

Hi,
I am new in windows phone 8.1 development.
I want to use select query using PrepareStatementAsync.
Which namespace or directory i have to use.
Please help me.

Hi Ravi,
Based on search result, looks like this method belongs to a SQLite wrapper, you can add its package to your project using Nuget:
https://www.nuget.org/packages/Sqlite-Winrt/
For more information, I would suggest you referring to its official site.
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • How to use a multiselector in Windows Phone 8.1

    In Windows Phone 8.0, we have "LongListMultiSelector" to make a multiselect list.
    However, in Windows Phone 8.1, I cannot find any tool like "LongListMultiSelector" that can select two or more items.
    (It seems that ListView can only select a single item.)
    So is there any tool like "LongListMultiSelector" that can be used in WP8.1? Thx~

    Hi , Just modify ListView style you can create your own design. 
    Main style of ListView Item is as below
    <Style TargetType="ListViewItem" x:Key="ListViewItemExpanded">
    <Setter Property="FontFamily" Value="{ThemeResource ContentControlThemeFontFamily}" />
    <Setter Property="FontSize" Value="{ThemeResource ControlContentThemeFontSize}" />
    <Setter Property="Background" Value="Transparent"/>
    <Setter Property="TabNavigation" Value="Local"/>
    <Setter Property="IsHoldingEnabled" Value="True"/>
    <Setter Property="Margin" Value="0,0,18,2"/>
    <Setter Property="HorizontalContentAlignment" Value="Left"/>
    <Setter Property="VerticalContentAlignment" Value="Top"/>
    <Setter Property="Template">
    <Setter.Value>
    <ControlTemplate TargetType="ListViewItem">
    <Border x:Name="OuterContainer">
    <VisualStateManager.VisualStateGroups>
    <VisualStateGroup x:Name="CommonStates">
    <VisualState x:Name="Normal"/>
    <VisualState x:Name="PointerOver">
    <Storyboard>
    <DoubleAnimation Storyboard.TargetName="PointerOverBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="SelectionBackground"
    Storyboard.TargetProperty="Fill">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ListViewItemSelectedPointerOverBackgroundThemeBrush}" />
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="SelectedBorder"
    Storyboard.TargetProperty="Stroke">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ListViewItemSelectedPointerOverBorderThemeBrush}" />
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="SelectedEarmark"
    Storyboard.TargetProperty="Fill">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ListViewItemSelectedPointerOverBackgroundThemeBrush}" />
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <VisualState x:Name="Pressed">
    <Storyboard>
    <PointerDownThemeAnimation TargetName="ContentContainer" />
    </Storyboard>
    </VisualState>
    <VisualState x:Name="PointerOverPressed">
    <Storyboard>
    <PointerDownThemeAnimation TargetName="ContentContainer" />
    <DoubleAnimation Storyboard.TargetName="PointerOverBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="SelectionBackground"
    Storyboard.TargetProperty="Fill">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ListViewItemSelectedPointerOverBackgroundThemeBrush}" />
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="SelectedBorder"
    Storyboard.TargetProperty="Stroke">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ListViewItemSelectedPointerOverBorderThemeBrush}" />
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="SelectedEarmark"
    Storyboard.TargetProperty="Fill">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ListViewItemSelectedPointerOverBackgroundThemeBrush}" />
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <VisualState x:Name="Disabled">
    <Storyboard>
    <DoubleAnimation Storyboard.TargetName="contentPresenter"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="{ThemeResource ListViewItemDisabledThemeOpacity}" />
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    <VisualStateGroup x:Name="FocusStates">
    <VisualState x:Name="Focused">
    <Storyboard>
    <DoubleAnimation Duration="0" To="1" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="FocusVisual" />
    </Storyboard>
    </VisualState>
    <VisualState x:Name="Unfocused"/>
    <VisualState x:Name="PointerFocused"/>
    </VisualStateGroup>
    <VisualStateGroup x:Name="SelectionHintStates">
    <VisualState x:Name="VerticalSelectionHint">
    <Storyboard>
    <SwipeHintThemeAnimation TargetName="SelectionBackground" ToVerticalOffset="15" ToHorizontalOffset="0" />
    <SwipeHintThemeAnimation TargetName="ContentBorder" ToVerticalOffset="15" ToHorizontalOffset="0" />
    <SwipeHintThemeAnimation TargetName="SelectedBorder" ToVerticalOffset="15" ToHorizontalOffset="0" />
    <SwipeHintThemeAnimation TargetName="SelectedCheckMark" ToVerticalOffset="15" ToHorizontalOffset="0" />
    <DoubleAnimationUsingKeyFrames Storyboard.TargetName="HintGlyph"
    Storyboard.TargetProperty="Opacity"
    Duration="0:0:0.500">
    <DiscreteDoubleKeyFrame Value="0.5" KeyTime="0:0:0" />
    <DiscreteDoubleKeyFrame Value="0" KeyTime="0:0:0.500" />
    </DoubleAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <VisualState x:Name="HorizontalSelectionHint">
    <Storyboard>
    <SwipeHintThemeAnimation TargetName="SelectionBackground" ToHorizontalOffset="-23" ToVerticalOffset="0" />
    <SwipeHintThemeAnimation TargetName="ContentBorder" ToHorizontalOffset="-23" ToVerticalOffset="0" />
    <SwipeHintThemeAnimation TargetName="SelectedBorder" ToHorizontalOffset="-23" ToVerticalOffset="0" />
    <SwipeHintThemeAnimation TargetName="SelectedCheckMark" ToHorizontalOffset="-23" ToVerticalOffset="0" />
    <DoubleAnimationUsingKeyFrames Storyboard.TargetName="HintGlyph"
    Storyboard.TargetProperty="Opacity"
    Duration="0:0:0.500">
    <DiscreteDoubleKeyFrame Value="0.5" KeyTime="0:0:0" />
    <DiscreteDoubleKeyFrame Value="0" KeyTime="0:0:0.500" />
    </DoubleAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <VisualState x:Name="NoSelectionHint" />
    <VisualStateGroup.Transitions>
    <VisualTransition To="NoSelectionHint" GeneratedDuration="0:0:0.65"/>
    </VisualStateGroup.Transitions>
    </VisualStateGroup>
    <VisualStateGroup x:Name="SelectionStates">
    <VisualState x:Name="Unselecting">
    <Storyboard>
    <DoubleAnimation Storyboard.TargetName="HintGlyphBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    </Storyboard>
    </VisualState>
    <VisualState x:Name="Unselected">
    <Storyboard>
    <DoubleAnimation Storyboard.TargetName="HintGlyphBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    </Storyboard>
    </VisualState>
    <VisualState x:Name="UnselectedPointerOver">
    <Storyboard>
    <DoubleAnimation Storyboard.TargetName="HintGlyphBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="contentPresenter"
    Storyboard.TargetProperty="Foreground">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ListViewItemSelectedForegroundThemeBrush}" />
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <VisualState x:Name="UnselectedSwiping">
    <Storyboard>
    <DoubleAnimation Storyboard.TargetName="SelectingGlyph"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="0.5" />
    <DoubleAnimation Storyboard.TargetName="HintGlyphBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    </Storyboard>
    </VisualState>
    <VisualState x:Name="Selecting">
    <Storyboard>
    <DoubleAnimation Storyboard.TargetName="SelectionBackground"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <DoubleAnimation Storyboard.TargetName="SelectedBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <DoubleAnimation Storyboard.TargetName="SelectingGlyph"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <DoubleAnimation Storyboard.TargetName="HintGlyphBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="contentPresenter"
    Storyboard.TargetProperty="Foreground">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ListViewItemSelectedForegroundThemeBrush}" />
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <VisualState x:Name="Selected">
    <Storyboard>
    <DoubleAnimation Storyboard.TargetName="SelectionBackground"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <DoubleAnimation Storyboard.TargetName="SelectedBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <DoubleAnimation Storyboard.TargetName="SelectedCheckMark"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="contentPresenter"
    Storyboard.TargetProperty="Foreground">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ListViewItemSelectedForegroundThemeBrush}" />
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <VisualState x:Name="SelectedSwiping">
    <Storyboard>
    <DoubleAnimation Storyboard.TargetName="SelectionBackground"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <DoubleAnimation Storyboard.TargetName="SelectedBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <DoubleAnimation Storyboard.TargetName="SelectedCheckMark"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="contentPresenter"
    Storyboard.TargetProperty="Foreground">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ListViewItemSelectedForegroundThemeBrush}" />
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <VisualState x:Name="SelectedUnfocused">
    <Storyboard>
    <DoubleAnimation Storyboard.TargetName="SelectionBackground"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <DoubleAnimation Storyboard.TargetName="SelectedBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <DoubleAnimation Storyboard.TargetName="SelectedCheckMark"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="contentPresenter"
    Storyboard.TargetProperty="Foreground">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ListViewItemSelectedForegroundThemeBrush}" />
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    <VisualStateGroup x:Name="DragStates">
    <VisualState x:Name="NotDragging" />
    <VisualState x:Name="Dragging">
    <Storyboard>
    <DoubleAnimation Storyboard.TargetName="InnerDragContent"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="{ThemeResource ListViewItemDragThemeOpacity}" />
    <DragItemThemeAnimation TargetName="InnerDragContent" />
    <FadeOutThemeAnimation TargetName="SelectedCheckMarkOuter" />
    <FadeOutThemeAnimation TargetName="SelectedBorder" />
    </Storyboard>
    </VisualState>
    <VisualState x:Name="DraggingTarget">
    <Storyboard>
    <DropTargetItemThemeAnimation TargetName="OuterContainer" />
    </Storyboard>
    </VisualState>
    <VisualState x:Name="MultipleDraggingPrimary">
    <Storyboard>
    <!-- These two Opacity animations are required - the FadeInThemeAnimations
    on the same elements animate an internal Opacity. -->
    <DoubleAnimation Storyboard.TargetName="MultiArrangeOverlayBackground"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <DoubleAnimation Storyboard.TargetName="MultiArrangeOverlayText"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="1" />
    <DoubleAnimation Storyboard.TargetName="ContentBorder"
    Storyboard.TargetProperty="Opacity"
    Duration="0"
    To="{ThemeResource ListViewItemDragThemeOpacity}" />
    <FadeInThemeAnimation TargetName="MultiArrangeOverlayBackground" />
    <FadeInThemeAnimation TargetName="MultiArrangeOverlayText" />
    <DragItemThemeAnimation TargetName="ContentBorder" />
    <FadeOutThemeAnimation TargetName="SelectionBackground" />
    <FadeOutThemeAnimation TargetName="SelectedCheckMarkOuter" />
    <FadeOutThemeAnimation TargetName="SelectedBorder" />
    <FadeOutThemeAnimation TargetName="PointerOverBorder" />
    </Storyboard>
    </VisualState>
    <VisualState x:Name="MultipleDraggingSecondary">
    <Storyboard>
    <FadeOutThemeAnimation TargetName="ContentContainer" />
    </Storyboard>
    </VisualState>
    <VisualStateGroup.Transitions>
    <VisualTransition To="NotDragging" GeneratedDuration="0:0:0.2"/>
    </VisualStateGroup.Transitions>
    </VisualStateGroup>
    <VisualStateGroup x:Name="ReorderHintStates">
    <VisualState x:Name="NoReorderHint"/>
    <VisualState x:Name="BottomReorderHint">
    <Storyboard>
    <DragOverThemeAnimation TargetName="ReorderHintContent" ToOffset="{ThemeResource ListViewItemReorderHintThemeOffset}" Direction="Bottom" />
    </Storyboard>
    </VisualState>
    <VisualState x:Name="TopReorderHint">
    <Storyboard>
    <DragOverThemeAnimation TargetName="ReorderHintContent" ToOffset="{ThemeResource ListViewItemReorderHintThemeOffset}" Direction="Top" />
    </Storyboard>
    </VisualState>
    <VisualState x:Name="RightReorderHint">
    <Storyboard>
    <DragOverThemeAnimation TargetName="ReorderHintContent" ToOffset="{ThemeResource ListViewItemReorderHintThemeOffset}" Direction="Right" />
    </Storyboard>
    </VisualState>
    <VisualState x:Name="LeftReorderHint">
    <Storyboard>
    <DragOverThemeAnimation TargetName="ReorderHintContent" ToOffset="{ThemeResource ListViewItemReorderHintThemeOffset}" Direction="Left" />
    </Storyboard>
    </VisualState>
    <VisualStateGroup.Transitions>
    <VisualTransition To="NoReorderHint" GeneratedDuration="0:0:0.2"/>
    </VisualStateGroup.Transitions>
    </VisualStateGroup>
    <VisualStateGroup x:Name="DataVirtualizationStates">
    <VisualState x:Name="DataAvailable"/>
    <VisualState x:Name="DataPlaceholder">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="PlaceholderTextBlock"
    Storyboard.TargetProperty="Visibility"
    Duration="0">
    <DiscreteObjectKeyFrame KeyTime="0">
    <DiscreteObjectKeyFrame.Value>
    <Visibility>Visible</Visibility>
    </DiscreteObjectKeyFrame.Value>
    </DiscreteObjectKeyFrame>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="PlaceholderRect"
    Storyboard.TargetProperty="Visibility"
    Duration="0">
    <DiscreteObjectKeyFrame KeyTime="0">
    <DiscreteObjectKeyFrame.Value>
    <Visibility>Visible</Visibility>
    </DiscreteObjectKeyFrame.Value>
    </DiscreteObjectKeyFrame>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    </VisualStateManager.VisualStateGroups>
    <Grid x:Name="ReorderHintContent" Background="Transparent">
    <Path x:Name="SelectingGlyph" Opacity="0" Data="F1 M133.1,17.9 L137.2,13.2 L144.6,19.6 L156.4,5.8 L161.2,9.9 L145.6,28.4 z" Fill="{ThemeResource ListViewItemCheckSelectingThemeBrush}" Height="13" Stretch="Fill" Width="15" HorizontalAlignment="Right" Margin="0,9.5,9.5,0" VerticalAlignment="Top" FlowDirection="LeftToRight"/>
    <Border x:Name="HintGlyphBorder"
    Height="40"
    Width="40"
    HorizontalAlignment="Right"
    VerticalAlignment="Top"
    Opacity="0"
    Margin="4">
    <Path x:Name="HintGlyph" Opacity="0" Data="F1 M133.1,17.9 L137.2,13.2 L144.6,19.6 L156.4,5.8 L161.2,9.9 L145.6,28.4 z" Fill="{ThemeResource ListViewItemCheckHintThemeBrush}" Height="13" Stretch="Fill" Width="15" HorizontalAlignment="Right" Margin="0,5.5,5.5,0" VerticalAlignment="Top" FlowDirection="LeftToRight"/>
    </Border>
    <Border x:Name="ContentContainer">
    <Grid x:Name="InnerDragContent">
    <Rectangle x:Name="PointerOverBorder"
    IsHitTestVisible="False"
    Opacity="0"
    Fill="{ThemeResource ListViewItemPointerOverBackgroundThemeBrush}"
    Margin="1" />
    <Rectangle x:Name="FocusVisual"
    IsHitTestVisible="False"
    Opacity="0"
    StrokeThickness="2"
    Stroke="{ThemeResource ListViewItemFocusBorderThemeBrush}" />
    <Rectangle x:Name="SelectionBackground"
    Margin="4"
    Fill="{ThemeResource ListViewItemSelectedBackgroundThemeBrush}"
    Opacity="0" />
    <Border x:Name="ContentBorder"
    Background="{TemplateBinding Background}"
    BorderBrush="{TemplateBinding BorderBrush}"
    BorderThickness="{TemplateBinding BorderThickness}"
    Margin="4">
    <Grid>
    <ContentPresenter x:Name="contentPresenter"
    ContentTransitions="{TemplateBinding ContentTransitions}"
    ContentTemplate="{TemplateBinding ContentTemplate}"
    Content="{TemplateBinding Content}"
    HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
    VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
    Margin="{TemplateBinding Padding}" />
    <!-- The 'Xg' text simulates the amount of space one line of text will occupy.
    In the DataPlaceholder state, the Content is not loaded yet so we
    approximate the size of the item using placeholder text. -->
    <TextBlock x:Name="PlaceholderTextBlock"
    Opacity="0"
    Text="Xg"
    Foreground="{x:Null}"
    Margin="{TemplateBinding Padding}"
    IsHitTestVisible="False"
    AutomationProperties.AccessibilityView="Raw"/>
    <Rectangle x:Name="PlaceholderRect"
    Visibility="Collapsed"
    Fill="{ThemeResource ListViewItemPlaceholderBackgroundThemeBrush}"/>
    <Rectangle x:Name="MultiArrangeOverlayBackground"
    IsHitTestVisible="False"
    Opacity="0"
    Fill="{ThemeResource ListViewItemDragBackgroundThemeBrush}" />
    </Grid>
    </Border>
    <Rectangle x:Name="SelectedBorder"
    IsHitTestVisible="False"
    Opacity="0"
    Stroke="{ThemeResource ListViewItemSelectedBackgroundThemeBrush}"
    StrokeThickness="{ThemeResource ListViewItemSelectedBorderThemeThickness}"
    Margin="4" />
    <Border x:Name="SelectedCheckMarkOuter"
    IsHitTestVisible="False"
    HorizontalAlignment="Right"
    VerticalAlignment="Top"
    Margin="4">
    <Grid x:Name="SelectedCheckMark" Opacity="0" Height="40" Width="40">
    <Path x:Name="SelectedEarmark" Data="M0,0 L40,0 L40,40 z" Fill="{ThemeResource ListViewItemSelectedBackgroundThemeBrush}" Stretch="Fill"/>
    <Path Data="F1 M133.1,17.9 L137.2,13.2 L144.6,19.6 L156.4,5.8 L161.2,9.9 L145.6,28.4 z" Fill="{ThemeResource ListViewItemCheckThemeBrush}" Height="13" Stretch="Fill" Width="15" HorizontalAlignment="Right" Margin="0,5.5,5.5,0" VerticalAlignment="Top" FlowDirection="LeftToRight"/>
    </Grid>
    </Border>
    <TextBlock x:Name="MultiArrangeOverlayText"
    Text="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=TemplateSettings.DragItemsCount}"
    Foreground="{ThemeResource ListViewItemDragForegroundThemeBrush}"
    FontFamily="{ThemeResource ContentControlThemeFontFamily}"
    FontSize="26.667"
    IsHitTestVisible="False"
    Opacity="0"
    TextWrapping="Wrap"
    TextTrimming="WordEllipsis"
    Margin="18,9,0,0"
    AutomationProperties.AccessibilityView="Raw"/>
    </Grid>
    </Border>
    </Grid>
    </Border>
    </ControlTemplate>
    </Setter.Value>
    </Setter>
    </Style>
    shah

  • How to use trackpad gestures with Windows 8 Developer Preview?

    I have installed a Windows 8 Developer Preview on my MacBook via BootCamp Assistant. I found that it isn't support the trackpad gestures! (ex: two-fingers tap to right-click)
    So how can I use the trackpad gestures with Windows 8?
    Thank you for all reply.

    The BootCamp drivers that you can download and burn to a disc via the Boot Camp application in Mac OS can be installed in Windows 8 (run setup.exe from the disc while in Windows 8, preferably by right-clicking and choosing "Run as Administrator") and will allow you to use all of the current features of the touchpad (including two finger clicking/tapping).  Once you have installed the drivers as described above, you can then click on the arrow in the System Tray and right-click on the black triangle that is for the BootCamp control panel. In those settings you can change how the touchpad responds to your taps, clicks, etc.

  • How can i use shoutcast streams on windows phone?

    I have an idea to make an application but i don't know how to use shoutcast streams in windows phone ? Is there any API or something that i need to fallow?
    Alican

    At the moment Shoutcast audio streams are not supported natively in Windows Phone. You will need to write a self implementation of IMediaStreamSource to parse the audiostream and also handle the http connections to the streaming server.
    Another solution is to use a third party implementation such as www.jupitersdk.com.
    It offers a well documented API, is easy to integrate and use into your project and there is a trial version for testing purposes.
    Jupiter Sdk has successfully been used in several RadioStreaming apps which can be found in the Windows Phone Store. By the way, it allows not only to play Shoutcast and Icecast audiostreams in Windows Phone 8.1, but also to retrieve the stream metadata (i.e.
    current Title and Artist), among other interesting features.
    Disclaimer: I am a member of the Jupiter Sdk Development Team. For information and support you can use the contact form at www.jupitersdk.com

  • How to print a grid from windows phone 8.1 application

    Hello ,
    I want to print a grid from a windows phone application.
    For tablet I can print using this namespace:
    using Windows.Graphics.Printing;
    using Windows.UI.Xaml.Printing;
    But they are only for Tablet.
    Please suggest a solution of printing from windows 8.1 phone application.
    Thanks

    Hi waqar.haider.confiz,
    >>How to print a grid from windows phone 8.1 application                                 
    As far as I known, in Windows Phone 8.1 app it does not have such API for us to print a grid. I will recommand you submit this feature request on this
    UserVoice forum.
    Best Regards,
    Amy Peng
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to make backward compatibility of windows phone 8.1 app for windows phone 7?

    I developed windows phone 8.1 app which is in windows phone store. Now, i want to make this app compatible for windows 7 also. Is it possible, if yes then how?

    It may be that you are using non-backward compatible capabilities in your Windows Phone 8.1 app(s).
    Developers that want to develop for different OS's usually have platforms with the different OS's on them for developing applications so they work on each platform.
    I suppose you developed for Windows phone 8.1 rather than Windows phone 7. Therefore your app runs on a different framework than a Windows phone 7 has as well as probably newer hardware with greater capabilities.
    So you will probably need to purchase an older phone that came with Windows phone 7 in order to develop for. I couldn't find documentation like the last link below (App capabilities and hardware requirements for Windows Phone 8) for Windows phone 7
    from Microsoft but maybe you can.
    Windows Phone OS 7.1 - Developing a Windows Phone Application from Start to Finish
    Types of Applications
    The Windows Phone application platform provides two frameworks for developing applications:
    Silverlight
    The Silverlight framework supports event-driven, XAML-based application development.
    XNA
    The XNA Framework supports loop-based games.
    Silverlight and XNA can also be combined in a single application.
    The following table lists some of the criteria that you can use to determine whether you should use Silverlight or the XNA Framework for your Windows Phone application. With Windows Phone OS 7.1, you can combine Silverlight and XNA into one application. 
    For more information about Silverlight and XNA, see
    The Silverlight and XNA Frameworks for Windows Phone. For more information about the application platform, see
    Application Platform Overview for Windows Phone.
    What's New in Windows Phone 8.1
    Platform convergence with Windows Store apps
    Windows Phone 8.1 introduces an important change in the Windows Phone developer ecosystem. In this release, Windows Phone converges with the Windows Store apps platform into a single developer platform that runs the same types of apps—Windows Runtime apps.
    Platform convergence began in Windows Phone 8, which supports a small subset of Windows Runtime APIs, but which differs from Windows in many core areas. In Windows Phone 8.1, there’s so much more in common—a much larger API set, a similar app model
    and life cycle, a shared toolset, a common UI framework—Windows Phone and Windows Store app developer platforms truly have become one, single development platform.
    Of course there are still some small differences in behavior and supported features between Windows Phone and Windows Store apps. Some of these are the result of timing of the different product cycles, and they may not appear in future releases. Some differences
    are the result of the different natures of phones and computers, their sizes, and the way people use them. We encourage developers to think in terms of Windows app development—developing for a single Windows Runtime, but targeting two different platforms on
    phones and computers.
    Required Tools for Windows Phone Development
    App capabilities and hardware requirements for Windows Phone
    8
    La vida loca

  • How to use perform statements in sap scripts

    how to use perform statements in sap scripts . and pls send me one progam for this
    thnaks
    raja

    Hi Raja,
    <b>PERFORM</b> key work is used to include subroutine in sapscript form...
    But the processing is lttle bit different form the one we use in ABAP.
    Here the paramters passed to form is stored in internal table of name-value table. there are two table one for inbound parameter and other for outbound parameters.
    Check out the example below to see how this is used..
    <b>Definition in the SAPscript form:</b>
    /: PERFORM GET_BARCODE IN PROGRAM QCJPERFO
    /: USING &PAGE&
    /: USING &NEXTPAGE&
    /: CHANGING &BARCODE&
    /: ENDPERFORM
    / &BARCODE&
    <b>Coding of the calling ABAP program:</b>
    REPORT QCJPERFO.
    FORM GET_BARCODE TABLES IN_PAR STUCTURE ITCSY
    OUT_PAR STRUCTURE ITCSY.
    DATA: PAGNUM LIKE SY-TABIX, "page number
    NEXTPAGE LIKE SY-TABIX. "number of next page
    READ TABLE IN_PAR WITH KEY ‘PAGE’.
    CHECK SY-SUBRC = 0.
    PAGNUM = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY ‘NEXTPAGE’.
    CHECK SY-SUBRC = 0.
    NEXTPAGE = IN_PAR-VALUE.
    READ TABLE OUT_PAR WITH KEY ‘BARCODE’.
    CHECK SY-SUBRC = 0.
    IF PAGNUM = 1.
    OUT_PAR-VALUE = ‘|’. "First page
    ELSE.
    OUT_PAR-VALUE = ‘||’. "Next page
    ENDIF.
    IF NEXTPAGE = 0.
    OUT_PAR-VALUE+2 = ‘L’. "Flag: last page
    ENDIF.
    MODIFY OUT_PAR INDEX SY-TABIX.
    ENDFORM.
    Hope this is clear to understand...
    Enjoy SAP.
    Pankaj Singh.

  • How to use union statement with declare & set function?

    Hi Experts,
            i  have small query about how to use union statement with declare & set function?
    Example as below :
    DECLARE @name AS date
    Declare @name2  AS date
    /* SELECT FROM [2013].[dbo].[OINV] T0 */
    /* WHERE */
    SET @name = /* T0.DocDate */ '[%1]'
    SET @name2 = /* T0.DocDate */ '[%2]'
    select  '2013',t5.U_salmannm,t1.CardName,t2.sumapplied as CollectionAmount,t2.DcntSum ,t3.DocTotal as InvoiceTotal,
    datediff(dd,t3.DocDate,t1.Docdate) as Days
    from 2013.dbo.orct t1
    inner join 2013.dbo.RCT2 t2 on t1.DocNum = t2.DocNum
    left join 2013.dbo.oinv t3 on
    t3.docentry = t2.baseAbs
    inner join 2013.dbo.ocrd t4 on t1.Cardcode = t4.CardCode
    inner join [2013].[dbo].[@CQ_RTSM] t5 on t4.U_BeatCode = t5.U_RoutCode
    where t2.DcntSum <> 0.000000 and t3.DocDate between [%1] and [%2]
    Union
    /* SELECT FROM [2014].[dbo].[OINV] T0 */
    /* WHERE */
    SET @name = /* T0.DocDate */ '[%1]'
    SET @name2 = /* T0.DocDate */ '[%2]'
    select  '2014',t5.U_salmannm,t1.CardName,t2.sumapplied as CollectionAmount,t2.DcntSum ,t3.DocTotal as InvoiceTotal,
    datediff(dd,t3.DocDate,t1.Docdate) as Days
    from 2014.dbo.orct t1
    inner join 2014.dbo.RCT2 t2 on t1.DocNum = t2.DocNum
    left join 2014.dbo.oinv t3 on
    t3.docentry = t2.baseAbs
    inner join 2014.dbo.ocrd t4 on t1.Cardcode = t4.CardCode
    inner join [2014].[dbo].[@CQ_RTSM] t5 on t4.U_BeatCode = t5.U_RoutCode
    where t2.DcntSum <> 0.000000 and t3.DocDate between [%1] and [%2]

    You have to create stored procedure in SQL only .
    Like u must have create for Crystal .
    You can execute procedure in query manager but you have to enter parameter manually..
    example
    Exec @Test '20140101' '20140501'
    Every time user has to enter it manually in yyyymmdd format in case of date parameters.
    Example
    Create Proc [@Test]
    as begin
    DECLARE @name AS date
    Declare @name2  AS date
    /* SELECT FROM [2013].[dbo].[OINV] T0 */
    /* WHERE */
    select  '2013',t5.U_salmannm,t1.CardName,t2.sumapplied as CollectionAmount,t2.DcntSum ,t3.DocTotal as InvoiceTotal,
    datediff(dd,t3.DocDate,t1.Docdate) as Days
    from 2013.dbo.orct t1
    inner join 2013.dbo.RCT2 t2 on t1.DocNum = t2.DocNum
    left join 2013.dbo.oinv t3 on
    t3.docentry = t2.baseAbs
    inner join 2013.dbo.ocrd t4 on t1.Cardcode = t4.CardCode
    inner join [2013].[dbo].[@CQ_RTSM] t5 on t4.U_BeatCode = t5.U_RoutCode
    where t2.DcntSum <> 0.000000 and t3.DocDate between @Name and @Name2
    Union
    /* SELECT FROM [2014].[dbo].[OINV] T0 */
    /* WHERE */
    select  '2014',t5.U_salmannm,t1.CardName,t2.sumapplied as CollectionAmount,t2.DcntSum ,t3.DocTotal as InvoiceTotal,
    datediff(dd,t3.DocDate,t1.Docdate) as Days
    from 2014.dbo.orct t1
    inner join 2014.dbo.RCT2 t2 on t1.DocNum = t2.DocNum
    left join 2014.dbo.oinv t3 on
    t3.docentry = t2.baseAbs
    inner join 2014.dbo.ocrd t4 on t1.Cardcode = t4.CardCode
    inner join [2014].[dbo].[@CQ_RTSM] t5 on t4.U_BeatCode = t5.U_RoutCode
    where t2.DcntSum <> 0.000000 and t3.DocDate between
    between @Name and @Name2
    end

  • How to use CASE statement in WDA

    Hi All,
       Can any one Please expain me ' How to use CASE statement in Web dynpro ABAP? '
      Please give me an example also.
    Thanks in Advance !

    Hi,
    The usage of case statement in webdynpro is same as used in general ABAP.
    Data: l_id type string.
    l_id = wdevent->get_string( 'ID' ).
    case l_id.
    when 'BTN1'.
    when 'BTN2'.
    when 'OTHERS'.
    endcase.
    Regards,
    Radhika.

  • How to use collect statement for below

    data : begin of itab,
             n(3) type c,
          n1 type n,
          k(5) type c,
          end of itab.
    select n n1 from into itab table /zteest.
    *internal table has
    n      n1    k
    gar    100  uji
    hae    90   iou
    gar    90   uji
    hae    87   iou
    I want
    gar 190
    hae 177
    How to use collect statement as n1 is n ..?
    let me know..
    Thanks

    try this..
    DATA : BEGIN OF itab OCCURS 0,
    n(3) TYPE c,
    n1(3) TYPE p DECIMALS 2,
    k(5) TYPE c,
    END OF itab.
    itab-n = 'gar'.
    itab-n1 = 100.
    itab-k = 'uji'.
    COLLECT itab .CLEAR itab.
    itab-n = 'hae'.
    itab-n1 = 90.
    itab-k = 'iou'.
    COLLECT itab .CLEAR itab.
    itab-n = 'gar'.
    itab-n1 = 90.
    itab-k = 'uji'.
    COLLECT itab .CLEAR itab.
    itab-n = 'hae'.
    itab-n1 = 87.
    itab-k = 'iou'.
    COLLECT itab .CLEAR itab.

  • How to use multiple statements inside the "THEN" block of CASE statement?

    Below is the code:
    SET @strTempString = case @strKeyMode
    WHEN 'AUTO/CYCLE'
    THEN  @strRefID + '|' + @strRetID
    WHEN 'CYCLE'
    THEN  @strRefID + '|' + @strRetID
    WHEN 'COMMERCIAL'
    THEN  @strRefID + '|' + @strRetID
    WHEN 'ISNAP'
    THEN  set @strFName = ltrim(rtrim((Left(dbo.CleanTheStringAdv(@strFName + '  ', 2) + '  ', 2))))
    '' + @strRefID + '|' + @strLName + '|' + @strFName + '|' + @strZIPorPolType
    WHEN 'ASNAP'
    THEN  @strRefID + '|' + @strRetID
    WHEN 'MOAT'
    THEN  @strRefID + '|' + @strRetID
    else '0'
    end 
    The first 3 conditions are understandable. How to use multiple statements in 4th case?
    Here I first want to set the value as:
    set @strFName = ltrim(rtrim((Left(dbo.CleanTheStringAdv(@strFName + '  ', 2) + '  ', 2))))
    and then return the string '' + @strRefID + '|' + @strLName + '|' + @strFName + '|' + @strZIPorPolType to @strTempString. 
    Please help me remove the syntax errors.
    Thanks in advance.

    Try below SQL
    DECLARE @strKeyMode varchar(20) = 'ISNAP'
    DECLARE @SQL VARCHAR(MAX)
    DECLARE @strRefID int=1
    DECLARE @strRetID INT=2
    --FIRST WAY
    IF @strKeyMode ='AUTO/CYCLE'
    SELECT CAST(@strRefID as varchar(10))
    ELSE IF @strKeyMode ='CYCLE'
    SELECT @sql = CAST(@strRefID as varchar(10)) + '|' + CAST(@strRetID as varchar(10))
    ELSE IF @strKeyMode='ISNAP'
    SELECT @sql = CAST(@strRefID as varchar(10)) + '|' + CAST(@strRetID as varchar(10))+'test'+'abc'
    ELSE
    SELECT @SQL='ABC'
    print @sql
    ----SECOND WAY
    SELECT @SQL = CASE @strKeyMode
    WHEN 'AUTO/CYCLE' THEN CAST(@strRefID as varchar(10))
    WHEN 'CYCLE' THEN CAST(@strRefID as varchar(10)) + '|' + CAST(@strRetID as varchar(10))
    WHEN 'ISNAP' THEN CAST(@strRefID as varchar(10)) + '|' + CAST(@strRetID as varchar(10))+'test'+'abc'
    ELSE 'No Record'
    END
    PRINT (@SQL)
    --Prashanth

  • How to use " PERFORM ", STATEMENT WITH OFFSET

    hI,
    How we use Perform statement with offset, like
      Example:   " PERFORM READ_SEGRELEASE USING INT_EDIDC+11."
    My requirement is to use Perform with Automatic length declaration.
    Automatic length declaration in PERFORM statement
    Kindly Explain and Provide some Example programm written in this situation.
    Thanks,
    P.N.Kumar

    Hiere is an example of what you probably require:
    DATA:
    lv_offset        TYPE syoffi,
    lv_length        TYPE flength,
    lv_field          TYPE string.
    lv_field  = 'This is my value: hello world'.
    lv_length = 5.
    lv_offset = 18.
    PERFORM read_segrelease USING lv_field
                                                            lv_length
                                                            lv_offset.
    *&      Form  READ_SEGRELEASE
    *       text
    *      -->P_LV_FIELD  text
    *      -->P_LV_LENGTH  text
    *      -->P_LV_OFFSET  text
    FORM read_segrelease USING    p_lv_field         TYPE string
                                                         p_lv_length      TYPE flength
                                                         p_lv_offset      TYPE syoffi.
      DATA:
      lv_result    TYPE string.
      lv_result = p_lv_field+p_lv_offset(p_lv_length).
      WRITE: / lv_result.
    ENDFORM.                    " READ_SEGRELEASE

  • How to use collect statement

    hi everybody,
    how to use collect statement to get the total amount paid to different vendor payments 
    data : begin of wa occurs 0,
            bukrs type bsak-bukrs,
            lifnr type bsak-lifnr,
            land1 type lfa1-land1,
            name1 like lfa1-name1,
            dmbtr like bsak-dmbtr,
            count type i value 0,
            tot_vend  type i,
            vend type i.
    data :end of wa.
    data : itab like table of wa.
      select distinct bukrs lifnr waers from bsak into
    corresponding fields of wa
              where bukrs in s_bukrs
              and   lifnr in s_lifnr
              and   bschl in s_bschl.
    i want the total amount paid according to vendor i am  using this way but i am not getting
      loop at itab into wa.
    wa-dmbtr = bsak-dmbtr.
    collect wa-dmbtr into itab.
    modify itab from wa transporting dmbtr.
    i am unalbe to get it
    can anybody help me regarding this if possible with example.
    thanks in advance,
    regards,
    venu.

    Hi Venu,
    types: BEGIN OF ty,
            NAME(20),
            SALES TYPE I,
          END   OF ty.
    data : itab type standard table of ty,
    itab1 type standard table of ty,
    wa type ty,
    wa1 type ty.
    wa-NAME = 'Duck'.  wa-SALES = 10.
    append wa to itab.
    wa-NAME = 'Tiger'. wa-SALES = 20.
    append wa to itab.
    wa-NAME = 'Duck'.  wa-SALES = 30.
    append wa to itab.
    loop at itab into wa.
    wa1 = wa.
    collect wa1 into itab1.
    endloop.
    loop at itab1 into wa1.
    write : / wa1-name , wa1-sales.
    endloop.
    COLLECT is used to create unique or compressed datsets. The key fields are the default key fields of the internal table itab .
    If you use only COLLECT to fill an internal table, COLLECT makes sure that the internal table does not contain two entries with the same default key fields.
    <b>If, besides its default key fields, the internal table contains number fields (see also ABAP/4 number types ), the contents of these number fields are added together if the internal table already contains an entry with the same key fields.</b>
    If the default key of an internal table processed with COLLECT is blank, all the values are added up in the first table line.
    In the program you mentioned yesterday,I am not able to get the logic since many lines are commented.

  • How to solve this error from window phone 80073cf9 lumia 630.

    any one know how to solve this error from window phone 80073cf9  lumia 630.

    Hello Muhammad,
    We appreciate the post, but this forum is for Windows Store and Phone Developer related questions. Your question can best be answered through the
    Windows Phone support page.
    Thanks!
    -Jonathan
    Windows Store Developer Support
    Office Store Developer Support

  • How to deploy galileo app in windows phone

    Hi Everybody,
    Could you please suggest how to deploy galileo app in windows phone ? .
    I have built this app in C++
    Seeking your co-operation and support..
    Thanking you,

    Only Metro/Store style apps can be installed on Windows phones - unless you're an OEM
     -Brian
    Azius Developer Training www.azius.com Windows device driver, internals, security, & forensics training and consulting. Blog at www.azius.com/blog

Maybe you are looking for

  • Printer will no longer print PDF document--"no pages selected" although specific pages were selected?

    Brother printer will no longer print PDF document--"no pages selected" although I did specify pages.  Have reviewed and tried Adobe trouble shooting, not helpful.  Cannot print page as image.  Brother says to contact Adobe

  • ICS Provided timezone converting incorrectly in iCal

    I'm attempting to use a CalDav data source and the source application timezone doesn't seem to be arriving in iCal correctly. For example, a timezone of "US/Eastern" in the source application appears as "Eastern Standard Time" in iCal. Syncing the sa

  • "LabVIEW PDA - Palm OS Hardware?"

    I'd like to get some feedback on what Palm OS PDA's are being used in conjunction with the LabVIEW PDA software. I've been tasked with creating a very compact application for monitoring a system, and we're interested in doing this through a Palm PDA

  • HELP! Restore complete but missing settings, contacts, etc.!!!

    I had to swap out my iPhone at the Apple Store and backed up before I brought it in. Got a new iPhone (same model - 32 GB 3GS) and when I go to restore from the backup it says restore complete but EVERYTHING is missing - contacts, email, settings, et

  • Reguler expression - doubt

    hi, i have a doubt with "regular expression". My problem is, i have these words "int soma(int num,int num2 ){" i will need to catch a word "soma" using regular expression.. Anyone kown to do this??? Thanks..