Movement of a user control that is on an image

I have a Windows 8 app and a user control. The user control moves along my finger in the right left and bottom movements. When I try to move up , the body of User control is there and unless I move out of it , its not moving up.
as u can see in the image that my pointer is on the user control and I am trying to move up but its not happenning. The condition is like , I can click anywhere , the user control appears I can move it anywhere and even if my finger is on the user control
, it should keep moving
Apoorv Kumar Upadhyay

Hi Apoorv,
How did you place your Usercontrol on that image? How did you implement the moveable UserControl? Could you provide some code snippets?
In my experience, we can place a Usercontrol and Image control into Canvas control, to make a moveable Usercontrol, we can handle
ManipulationDelta event and use Transform, here is my sample:
UserControl:
<Grid>
<Rectangle Width="100" Height="100" Fill="Red"
ManipulationMode="TranslateX,TranslateY"
ManipulationDelta="Rectangle_ManipulationDelta" />
</Grid>
private void Rectangle_ManipulationDelta(object sender, ManipulationDeltaRoutedEventArgs e)
var _Rectangle = sender as Windows.UI.Xaml.Shapes.Rectangle;
var _Transform = (_Rectangle.RenderTransform as CompositeTransform)
?? (_Rectangle.RenderTransform = new CompositeTransform()) as CompositeTransform;
_Transform.TranslateX += e.Delta.Translation.X;
_Transform.TranslateY += e.Delta.Translation.Y;
MainPage.xaml:
<Canvas Name="cv">
<Image Width="{Binding ActualWidth,ElementName=cv}" Source="Assets/1.jpg" Stretch="Fill" />
<local:MyUserControl1 />
</Canvas>
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

  • Generic custom control that can display an image or swf?

    Hi,
    I want to create a custom control that can take an image or swf as an argument and display it in the same way.
    If the programmer uses this control (which essentially is a button with custom display) I want him to be able to just state the source and the text that is to be shown. Like this:
       <myControls:myButtonControl descriptionText="swf object" symbolObject="{Application.application.shape01swf}">
    or
       <myControls:myButtonControl descriptionText="img object" symbolObject="{Application.application.shape01img}">
    where shape01swf and shape01swf are embeded objects as follows:
       [Embed("../assets/swf/Shape01.swf")]
        public var shape01swf:Class;
       [Embed("../assets/images/Shape01img.jpg")]
       public var shape01img:Class;
    Which kind of object should I create in my custom control that can display this?
    Right now I have created a Class that extends VBox so that I can display the image/swf above the descriptionText.
    (I am using Flex 3.)

    Aha, so the Image control can use an swf as a source as well?
    I just assumed that it could not and I would have to use the SWFLoader to do it.
    So, this is my solution:
            override protected function createChildren():void{
                iconField = new Image();
                addChild(DisplayObject(iconField));
                textField = new Text();
                addChild(DisplayObject(textField));
                super.createChildren();
            private function init(e:Event):void{
                iconField.source = symbolObject;
                textField.text = descriptionText;
    Thanks!

  • I cannot get a WindowsForms user control hosted in WPF/C# to show() PDF please help

    I have a WPF C# .NET 4.0. solution in VS2010 on Windows 7.   It contains a WPF hosting project and a WindowsFormsControl project where I've created a UserControl that should display an Acrobat CAcroAVDoc object from the Interop.Acrobat SDK com object (latest).
    The WPF Project contains this code to open a file which actually creates a new WindowsFormsUserControl (PDFViewerControl) that in turns opens the file, the UserControl is then added to a WindowsFormHost object in WPF main form.
    private void OpenFile(FileItem file)
    if (file.Extension.ToLower() == ".pdf")
      System.Windows.Forms.Integration.WindowsFormsHost host = new System.Windows.Forms.Integration.WindowsFormsHost();
      WindowsFormsControls.PDFViewerControl viewer = new WindowsFormsControls.PDFViewerControl();
      viewer.Show();
      Boolean result = viewer.OpenFile(file.Path);
      if (!result)
       MessageBox.Show("Error opening document");
      host.Child = viewer;
      this.pdfViewWpf.Children.Add(host);
      viewer.Show();
    The PDFViewerControl OpenFile method contains this code and returns True when opening a PDF document via OpenInWindowEx.
    public Boolean OpenFile(String filename)
    CAcroAVDoc doc = Activator.CreateInstance(Type.GetTypeFromProgID("AcroExch.AVDoc")) as CAcroAVDoc;
    bool res = doc.OpenInWindowEx(filename, this.Handle.ToInt32(), 2, 1, 0, (short)Acrobat.PDViewMode.PDUseBookmarks, (short)Acrobat.AVZoomType.AVZoomFitWidth, 0, 0, 0);
    return res;
    Unfortunately though the PDF cannot be seen in WPF Host object.  If I place a LABEL on the windows forms user control, the label will show in WPF.  It seems the OpenInWindowEx is not loading a PDF object onto the user control.  Perhaps I need a resize method and event?
    I cannot locate any object on the PDFViewerControl user control that resembles a PDF document through debug.
    Any help/pointers much appreciated.
    this.Handle.ToInt32() does have a seemingly valid value (ie window handle).
    this.pdfViewWpf is a XAML <Grid>
    Dominic

    On further testing, I found the above code does actually work, BUT the HOST or the VIEWER or the DOC object disappear after the routine is finished.  I placed a label on the UserControl and noticed a flicker on the crseen draw which I capture on camtasia the result can be viewed here.  http://www.screencast.com/t/Z49gUTb3Xt
    Given the label is still around after the file open routine completes suggests the HOST and VIEWER objects are still exposed, just the DOC object resizes to zero height and width or just plain gone.
    Without the Label, same result.
    Any thoughts on how to retain the display of the CAcroAVDoc object would be much appreciated.

  • Creating top navigation using user control

    I want to create a custom user control that will display my own top navigation in my publishing site's master page.  
    I know another option is to use sharepoint's own top navigation and then customize it using CSS etc. but I have tried this thing and can't get my head around it. I mean it seems so difficult and very limited in functionality so I am trying to make top navigation
    using user control.  
    Is there some API that will give me all links in navigation in SharePoint? Like for e.g. SPNavigation which I can call and iterate through all elements including parent or child?  
    What are the drawbacks of making top navigation as user control in master page?
    Will end user be still be able to use Navigation options in SharePoint Administration?

    Hi,
    You can customize global navigation at two levels. You can customise the display (how the menu is rendered) but utilize out-of-the-box navigation providers. It'll work if you just want to modify the way navigation is rendered. You can use delegate control
    to replace sharepoint control with your own custom user control. In the user control you can access navigation data using SPNavigationProvider(s). However, if you want to customize navigation data - for exmaple, you want to apply some custom logics to show/hide
    some navigation link - you need to write your own custom navigation providers.
    What I've found, for static menu, managed metadata based navigation will be suffice for most of the scenario - so you don't need to customize the navigation. However for dynamic navigation, you need to write your own navigation control and provider. Reference:
    http://blogs.msdn.com/b/gauravbadhan/archive/2013/04/02/creating-a-custom-navigation-for-sharepoint-2010.aspx.
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com

  • InteropForm Toolkit User Control deployment dependencies

    I have built an InteropForm User Control which I have successfully tested in .NET and, as desired, in VB6. I would like to deploy this VB6 (legacy) application but regardless of which DLL's I include in the installer, running the app always generates error
    339:
    It is referring to the User Control that I built and, yes, MediaGunUserControlLibrary.tlb is in the same folder as the .exe - along with all other possible DLL and dependencies I can track down.
    Perhaps I'm not smart enough, but I read this and frankly I don't understand it:
    http://blogs.msdn.com/b/vbteam/archive/2007/06/04/deploying-applications-with-the-interopforms-2-0-toolkit.aspx
    Could someone please distill this into simpler language or at least provide a working example that does deploy? Just a simple list of required DLL's would be very helpful indeed. If, it turns out, that I have all the required DLL's and it still does not
    work then at least I can be sure it is something I'm using in addition that is causing the problem.

    Still no joy.
    Using WordProcessor from Toolkit SDK Samples on W7 x64 virgin VM.
    Iinstalled the Toolkit redist but still getting error:
    Here is what the folder looks like on the test machine:
    Process Monitor shows no unsuccessful image loads:
    "Time of Day","Process Name","PID","Operation","Path","Result","Detail"
    "8:34:41.9714101 PM","WordProcessor.exe","1328","Load Image","C:\Users\Administrator\Desktop\WordProcessor\WordProcessor.exe","SUCCESS","Image Base: 0x400000, Image Size: 0x9000"
    "8:34:41.9715318 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\ntdll.dll","SUCCESS","Image Base: 0x76e00000, Image Size: 0x13c000"
    "8:34:41.9721159 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\kernel32.dll","SUCCESS","Image Base: 0x75970000, Image Size: 0xd4000"
    "8:34:41.9723103 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\KernelBase.dll","SUCCESS","Image Base: 0x75050000, Image Size: 0x4b000"
    "8:34:41.9734196 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\msvbvm60.dll","SUCCESS","Image Base: 0x72940000, Image Size: 0x153000"
    "8:34:41.9736075 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\user32.dll","SUCCESS","Image Base: 0x76d30000, Image Size: 0xc9000"
    "8:34:41.9737420 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\gdi32.dll","SUCCESS","Image Base: 0x75db0000, Image Size: 0x4e000"
    "8:34:41.9738705 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\lpk.dll","SUCCESS","Image Base: 0x76f70000, Image Size: 0xa000"
    "8:34:41.9740046 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\usp10.dll","SUCCESS","Image Base: 0x75cb0000, Image Size: 0x9d000"
    "8:34:41.9740989 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\msvcrt.dll","SUCCESS","Image Base: 0x758c0000, Image Size: 0xac000"
    "8:34:41.9745801 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\advapi32.dll","SUCCESS","Image Base: 0x75eb0000, Image Size: 0xa0000"
    "8:34:41.9751203 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\sechost.dll","SUCCESS","Image Base: 0x75180000, Image Size: 0x19000"
    "8:34:41.9753008 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\rpcrt4.dll","SUCCESS","Image Base: 0x75e00000, Image Size: 0xa2000"
    "8:34:41.9755752 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\ole32.dll","SUCCESS","Image Base: 0x751a0000, Image Size: 0x15c000"
    "8:34:41.9758232 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\oleaut32.dll","SUCCESS","Image Base: 0x75580000, Image Size: 0x8f000"
    "8:34:41.9784196 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\imm32.dll","SUCCESS","Image Base: 0x76f50000, Image Size: 0x1f000"
    "8:34:41.9787334 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\msctf.dll","SUCCESS","Image Base: 0x754b0000, Image Size: 0xcc000"
    "8:34:42.0004868 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\cryptbase.dll","SUCCESS","Image Base: 0x74d40000, Image Size: 0xc000"
    "8:34:42.0012378 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\uxtheme.dll","SUCCESS","Image Base: 0x73ae0000, Image Size: 0x40000"
    "8:34:42.0032400 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\sxs.dll","SUCCESS","Image Base: 0x74d50000, Image Size: 0x5f000"
    "8:34:42.0065598 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\clbcatq.dll","SUCCESS","Image Base: 0x75c20000, Image Size: 0x83000"
    "8:34:42.0089497 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\mscoree.dll","SUCCESS","Image Base: 0x70ef0000, Image Size: 0x4a000"
    "8:34:42.0105476 PM","WordProcessor.exe","1328","Load Image","C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscoreei.dll","SUCCESS","Image Base: 0x6ed40000, Image Size: 0x7b000"
    "8:34:42.0147898 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\shlwapi.dll","SUCCESS","Image Base: 0x75f50000, Image Size: 0x57000"
    "8:34:42.0186396 PM","WordProcessor.exe","1328","Load Image","C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorwks.dll","SUCCESS","Image Base: 0x68be0000, Image Size: 0x5ae000"
    "8:34:42.0203225 PM","WordProcessor.exe","1328","Load Image","C:\Windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4940_none_d08cc06a442b34fc\msvcr80.dll","SUCCESS","Image Base: 0x6b5b0000, Image Size: 0x9b000"
    "8:34:42.0380716 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\shell32.dll","SUCCESS","Image Base: 0x75fb0000, Image Size: 0xc4a000"
    "8:34:42.0397372 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\profapi.dll","SUCCESS","Image Base: 0x74e60000, Image Size: 0xb000"
    "8:34:42.0434235 PM","WordProcessor.exe","1328","Load Image","C:\Windows\assembly\NativeImages_v2.0.50727_32\mscorlib\38bf604432e1a30c954b2ee40d6a2d1c\mscorlib.ni.dll","SUCCESS","Image Base: 0x66fc0000, Image Size: 0xaf9000"
    "8:34:42.0500993 PM","WordProcessor.exe","1328","Load Image","C:\Windows\assembly\GAC_MSIL\Microsoft.InteropFormTools\1.0.0.0__b03f5f7f11d50a3a\Microsoft.InteropFormTools.dll","SUCCESS","Image Base: 0x72be0000, Image Size: 0xe000"
    "8:34:42.0501160 PM","WordProcessor.exe","1328","Load Image","C:\Windows\assembly\GAC_MSIL\Microsoft.InteropFormTools\1.0.0.0__b03f5f7f11d50a3a\Microsoft.InteropFormTools.dll","SUCCESS","Image Base: 0x560000, Image Size: 0xe000"
    "8:34:42.0509012 PM","WordProcessor.exe","1328","Load Image","C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorsec.dll","SUCCESS","Image Base: 0x580000, Image Size: 0x13000"
    "8:34:42.0520925 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\wintrust.dll","SUCCESS","Image Base: 0x74fe0000, Image Size: 0x2e000"
    "8:34:42.0522316 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\crypt32.dll","SUCCESS","Image Base: 0x74ec0000, Image Size: 0x120000"
    "8:34:42.0523894 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\msasn1.dll","SUCCESS","Image Base: 0x74e50000, Image Size: 0xc000"
    "8:34:42.0533939 PM","WordProcessor.exe","1328","Load Image","C:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7601.18201_none_ec80f00e8593ece5\comctl32.dll","SUCCESS","Image Base: 0x71c00000, Image Size: 0x84000"
    "8:34:42.0551571 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\riched20.dll","SUCCESS","Image Base: 0x6e100000, Image Size: 0x76000"
    "8:34:42.0569999 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\cryptsp.dll","SUCCESS","Image Base: 0x74860000, Image Size: 0x16000"
    "8:34:42.0636055 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\rsaenh.dll","SUCCESS","Image Base: 0x74600000, Image Size: 0x3b000"
    "8:34:42.0815075 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\imagehlp.dll","SUCCESS","Image Base: 0x76f80000, Image Size: 0x2b000"
    "8:34:42.0888979 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\ncrypt.dll","SUCCESS","Image Base: 0x74990000, Image Size: 0x38000"
    "8:34:42.0895824 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\bcrypt.dll","SUCCESS","Image Base: 0x74970000, Image Size: 0x17000"
    "8:34:42.0903967 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\bcryptprimitives.dll","SUCCESS","Image Base: 0x74540000, Image Size: 0x3d000"
    "8:34:42.0969152 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\userenv.dll","SUCCESS","Image Base: 0x74ea0000, Image Size: 0x17000"
    "8:34:42.1083597 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\gpapi.dll","SUCCESS","Image Base: 0x74440000, Image Size: 0x16000"
    "8:34:42.1408909 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\cryptnet.dll","SUCCESS","Image Base: 0x72450000, Image Size: 0x1c000"
    "8:34:42.1411374 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\Wldap32.dll","SUCCESS","Image Base: 0x75830000, Image Size: 0x45000"
    "8:34:42.1423134 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\SensApi.dll","SUCCESS","Image Base: 0x6df60000, Image Size: 0x6000"
    "8:34:42.1532369 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\winhttp.dll","SUCCESS","Image Base: 0x73220000, Image Size: 0x58000"
    "8:34:42.1539739 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\webio.dll","SUCCESS","Image Base: 0x73010000, Image Size: 0x4f000"
    "8:34:42.1544509 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\ws2_32.dll","SUCCESS","Image Base: 0x75880000, Image Size: 0x35000"
    "8:34:42.1546288 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\nsi.dll","SUCCESS","Image Base: 0x75170000, Image Size: 0x6000"
    "8:34:42.1574669 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\sspicli.dll","SUCCESS","Image Base: 0x74cd0000, Image Size: 0x1b000"
    "8:34:42.1590392 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\credssp.dll","SUCCESS","Image Base: 0x74500000, Image Size: 0x8000"
    "8:34:42.1660798 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\mswsock.dll","SUCCESS","Image Base: 0x74820000, Image Size: 0x3c000"
    "8:34:42.1671349 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\wshqos.dll","SUCCESS","Image Base: 0x724a0000, Image Size: 0x6000"
    "8:34:42.2031064 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\WSHTCPIP.DLL","SUCCESS","Image Base: 0x74390000, Image Size: 0x5000"
    "8:34:42.2038510 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\wship6.dll","SUCCESS","Image Base: 0x74810000, Image Size: 0x6000"
    "8:34:42.2047250 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\IPHLPAPI.DLL","SUCCESS","Image Base: 0x72630000, Image Size: 0x1c000"
    "8:34:42.2054123 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\winnsi.dll","SUCCESS","Image Base: 0x72b30000, Image Size: 0x7000"
    "8:34:42.2063761 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\dhcpcsvc6.dll","SUCCESS","Image Base: 0x5c0000, Image Size: 0xd000"
    "8:34:42.2560131 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\dhcpcsvc.dll","SUCCESS","Image Base: 0x72840000, Image Size: 0x12000"
    "8:34:42.2876159 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\cfgmgr32.dll","SUCCESS","Image Base: 0x75010000, Image Size: 0x27000"
    "8:35:06.2412618 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\dnsapi.dll","SUCCESS","Image Base: 0x746e0000, Image Size: 0x44000"
    "8:35:06.2713023 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\rasadhlp.dll","SUCCESS","Image Base: 0x6f570000, Image Size: 0x6000"
    "8:35:07.2103236 PM","WordProcessor.exe","1328","Load Image","C:\Windows\assembly\GAC_MSIL\Microsoft.InteropFormTools\1.0.0.0__b03f5f7f11d50a3a\Microsoft.InteropFormTools.dll","SUCCESS","Image Base: 0x72be0000, Image Size: 0xe000"
    "8:35:07.2144422 PM","WordProcessor.exe","1328","Load Image","C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorjit.dll","SUCCESS","Image Base: 0x6ece0000, Image Size: 0x5b000"
    "8:35:07.2415846 PM","WordProcessor.exe","1328","Load Image","C:\Windows\assembly\NativeImages_v2.0.50727_32\System\95854f4f1f37b8eab1b1e3d7103b48ef\System.ni.dll","SUCCESS","Image Base: 0x66810000, Image Size: 0x7a2000"
    "8:35:07.2437036 PM","WordProcessor.exe","1328","Load Image","C:\Windows\assembly\NativeImages_v2.0.50727_32\Microsoft.VisualBas#\d941c7e0001a4d98e39785da42b57341\Microsoft.VisualBasic.ni.dll","SUCCESS","Image Base: 0x6a3d0000, Image Size: 0x19b000"
    "8:35:07.2674085 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\RpcRtRemote.dll","SUCCESS","Image Base: 0x74db0000, Image Size: 0xe000"
    "8:35:07.2759971 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\dwmapi.dll","SUCCESS","Image Base: 0x737b0000, Image Size: 0x13000"
    "8:36:00.6718147 PM","WordProcessor.exe","1328","Load Image","C:\Windows\System32\version.dll","SUCCESS","Image Base: 0x74300000, Image Size: 0x9000"

  • Trying to download a movie on a laptop.  tellls me i can't play it on that computer because my apple account has too many users.  how do i see who is listed as a user so that i can delete one if it's not needed

    trying to download a movie on a laptop.  tellls me i can't play it on that computer because my apple account has too many users.  how do i see who is listed as a user so that i can delete one if it's not needed
    please help
    [email protected]

    The list you saw that shows what drivers are available from Apple Software Update is based on what drivers are supplied by the vendor to Apple. So it would appear that HP has not provided Apple with a scanner driver for 10.9 (known as an ICA driver), or provided an update if one was available for a previous version of OS X, so that you can scan from Image Capture.
    I checked the HP web site for your model and they don't show any scanner driver or scanning software. If there was a scanner driver, you would be able to use Vuescan.
    As for the Scan button not working, the following is documented by HP
    Scanning to the computer from the printer control panel is not available when you scan with Preview, Image Capture, or Printer browser methods. You must use HP Scan software to scan from the printer.
    But there does not appear to be any version of HP Scan software available for 10.9. So unless someone else has some workaround, it seems that you won't be able to scan with this model of HP.

  • Horizontal strip that moves with the users mouse.

    Basically, I have a photo gallery, on a long horizontal
    strip. I want the user to navigate this strip by simply moving
    their mouse to the right to make it move right, and moving their
    mouse to the left to make it move left.
    I know that there is a way to do this where you track the
    mouse whereever it is on the stage...but I'd only like it to be
    only active when it is over this particular strip.
    Also, each thumbnail on this strip has a rollover effect. I
    would like to have that roll over effect stay active...
    Any help would be appreciated.
    Thanks.

    I'm no professional but i was kinda looking for a tutorial
    for something like that..this is what i found..
    http://www.webwasp.co.uk/tutorials/b31-panorama/index.php
    the button part won't work with Action Script 3.0, but for
    the slip part, maybe add a restriction like only onClipEvent when
    _xmouse and _ymouse is over this area. or make that slip an object
    or a movieclip and put the panorama code on that. The roll over is
    simple, that's not related to the frame script but a seperate code
    for each thumbnail... That my idea, and most probably wrong.

  • User control ActiveX cannot move between objects using TAB

    I created a simple ActiveX control with 3 text boxes.
    I added it as an ActiveX object to a SAP form.
    It apears good on the screen but it seems like SAP is "stealing" the TAB keypress and therefore I cannot move between the ActiveX controls accrdinf to their Tabindex property
    It happed both in VB6 and VB.NET user control
    How it can be solved ?
    Tx Yaron

    I'm assuming you're not using a BusinessObjects reporting solution, which would mean you're posting to the wrong forum.
    Sincerely,
    Ted Ueda

  • Talking to C# based WinRT components that contain UI features like XAML based user controls from a JavaScript based Windows Store app

    Can you create a WinRT component written in C# that consists of a library of XAML based controls and then used those controls within a Windows Store app using WinJS or via a JS Cordova plugin for Windows 8.1 & WP8.1? 
    Is this possible or can you only use a C# based WinRT component that contains a library of XAML controls in XAML/C# based Windows Store apps? 
    My understanding is that a C# based WinRT component containing non-UI code (i.e. no XAML controls) can be used in a Windows Store app written C#, VB.NET, JavaScript or VC++, but not sure if that principle would work with XAML controls
    wrapped via WinRT types. In theory a XAML control is a C# class, so could work, but not sure how would JS code read that and then launch for example a page or user control from/into its HTML based UI?
    Sandip Ahluwalia

    Right. The code in your app is C# code, but the actual Xaml controls (like the rest of the Windows Runtime) are native code. They are projected into each language (C#, VB, C++ in the case of Windows.UI.Xaml) in a way that appears natural for that
    language and the interop layer is hidden.
    You could expose a Xaml control in a Windows Runtime Component written in any of C#, VB, and C++ to an app written in any of C#, VB, and C++, and the control would appear as a normal C#, VB, or C++ runtime class. This won't
    work for Xaml controls in JavaScript, since the HTML window doesn't have the Xaml hosting infrastructure, but for non-UI code you can write a WRC in C#, VB, or C++ and it will appear as a normal JavaScript class to a JavaScript app.

  • RH8 WebHelp "Can't Move Focus to the Control..." Error

    While testing my help (primary layout is WebHelp) on my local
    machine, the help books/topics freeze after a series of clicking
    them open and closed. I'm not doing this rapidly or in a manner
    unlike a regular user would. IE 6 gives me a page error. The
    description reads "can't move focus to the control b/c it is
    invisible, not enabled, or of a type that does not accept the
    focus." The URL points to the whtdhtml.htm file.
    I've searched the forum and when this problem came up before,
    an answer was in a tech note. I read the TechNote rb_95432 on this
    issue and it suggested editing the webhelp4.js file; however, I
    don't think this file is generated by RoboHelp 8, as it doesn't
    appear in my generated help files.
    Is there a different file I should be looking at? Is this a
    problem with my HTML that I should seek or an Adobe compilation
    issue with IE 6? I recently upgraded my help project from RoboHelp
    6 to RoboHelp 8 and am on a Windows XP machine.

    While testing my help (primary layout is WebHelp) on my local
    machine, the help books/topics freeze after a series of clicking
    them open and closed. I'm not doing this rapidly or in a manner
    unlike a regular user would. IE 6 gives me a page error. The
    description reads "can't move focus to the control b/c it is
    invisible, not enabled, or of a type that does not accept the
    focus." The URL points to the whtdhtml.htm file.
    I've searched the forum and when this problem came up before,
    an answer was in a tech note. I read the TechNote rb_95432 on this
    issue and it suggested editing the webhelp4.js file; however, I
    don't think this file is generated by RoboHelp 8, as it doesn't
    appear in my generated help files.
    Is there a different file I should be looking at? Is this a
    problem with my HTML that I should seek or an Adobe compilation
    issue with IE 6? I recently upgraded my help project from RoboHelp
    6 to RoboHelp 8 and am on a Windows XP machine.

  • User Control screwed up but unable to click on icons with Mouse on OSX 10.8

    I dont know what has happened, but today user control with mouse and trackpad on my macbookpro is screwed up.
    I rebooted twice, it made no difference.
    The trackpad moves the cursor okay, but I cannot get tapping or clicking the trackpad have any effect.
    With my mouse I can access menubars, but the left and right buttons are swapped round, or it might be that the right button is acting as both left and right button.
    I then went to the System Preferences screen to try and fix the mouse preferences, but clicking on any icon with left or right button has no effect.
    I then found no icons of that type seem to work, I thought Id try and just update OSX with any updates available hoping that would fix anything that has got corrupted. But although I can get to the Appstore Update screen and there are two updates available I cannot get the updates installed. Clicking with the left button does nothing, clicking with right button changes the colour of the button slightly so the bottom half is in gray but nothing else happens.
    As there is no menu option to install the updates I thought I tried and install the updates using the keyboard but I cannot work out how to do this.
    Does this sound like a hardware or software problem
    Help Please !

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • User Control Settings in Windows 7

    I want to change the user control settings in Windows 7. I can move the control setting, but when I click OK, the change isn't implemented. It doesn't matter what user account I'm in.
    Is this a simple fix?
    Thank you.
    Dan

    Satellite L505D-S5983 
    Not a simple fix known to me, Dan.
    Something like this occurs when you install Office 97 (KB978591). Maybe that fits? If not, try the "Fix it" anyway. It won't hurt anything.
    -Jerry

  • Administrator can not move reports from users' favourites folder

    Hi,
    I am using BO XIR2. With the Administrator account, I am not able to move the reports from favourites folders of users.
    I tried giving all the rights to administrator for the favourites folder, but still the move option is disabled for reports.
    I can move the folders inside favourites, but not individual reports inside that folder.
    Any suggestions?
    Thanks and Regards

    As for as i know, we can not move reports of users favorites folder. To control that remove the favorites options for users. So that they can save reports in folders only.
    Thanks,
    Anil

  • Using Excel with Visual C++ 6.0 (need a graph control that behaves as much like the one in CVI as possible)

    I hate to beat this to death but I was unable to find a
    clear answer to this question.  Does NI provide Excel control from within
    Visual C++ 6.0? 
    I read that NI supports the ANSI-C library only for Visual C++ 6.0 users:
    Thread : "Re: Benifits of using measurment
    studio for VC++ 6.0?"
    NI REP : drohacek
    Quote  : "we made the decision to support Visual
    C++ 6.0 users only through the ANSI-C interface and not through the Measurement
    Studio MFC-based class libraries."
    If there is a suggested way of controlling Excel from within Measurement Studio
    for Visual C++ 6.0 then I’d love to know it. 
    If not, can a plain statement be made basically stating that if you want
    to control Excel you can’t use a Visual C++ 6.0 environment even with Measurement
    Studio support?
    With .NET of course you can just decide to have Excel support added during
    project creation.  CVI can act as an ActiveX server and easily control
    Excel just by building off the examples shipped with CVI.  I see that
    there is support, using the Measurement Studio for Visual C++ 6.0 Project Wizard,
    for taking existing CVI projects and converting them to Visual C++ 6.0 projects
    or for calling CVI libraries from a .dll from within Visual C++ 6.0.  I suppose I could do the work
    in CVI and then convert the project but I'm so deeply tied into all my MFC calls that I don't see
    how I can cleanly include the CVI libraries into my existing VC++ 6.0 projects.
    What I'm really after here is a visual graph control like the one in CVI that I
    can use from Visual C++ 6.0.  I purchased a 3rd party graph control for use
    in VC++ 6.0 that works well but isn't really visual.  I mean you can't
    enter any values in it until you run the program and fill it out programmatically. 
    Then you can see which columns are two narrow, quit the program, adjust the
    column width of your now empty control, and repeat, until you get the thing
    looking the way you want.  If I could call into Excel from within Visual
    C++ 6.0  the way I do from within .NET
    then I could use Excel to hold the table and just read in the values into my table
    control at run time.  Basically I'd use Excel as a visual development tool
    for all my tables.
    I do all my coding from within CVI and Measurement Studio for Visual C++
    6.0.  I'd use CVI for everything if I didn't depend so heavily on certain
    outside controlled C++ .dll's.  Could you please suggest then what I can
    do to get Excel support for Visual C++ 6.0?
    Last question :
    Is there any plan to ever have a NI table control like the CVI table control for
    use in Visual Studio?  One that you can
    completely set up before you do any compiling? 
    I imagine that the way Microsoft sets up their environment makes this idea impossible.  Otherwise someone would
    have come up with a truly “visual” table control before now.
    Thanks,
    Grant
    Grant M. Johnson
    Project Engineer
    LECO Corporation

    Hello Grant
    You can most certainly use Excel with VC++ 6.0. Measurement Studio won't provided you with any classes to talk to Excel in VC++ 6.0. This is because Excel allows control via Automation and you can use its automation API to do anything you need with Excel. This is what CVI uses as well.
    You can see this MSDN article on how to set this up. This mentions VC.NET, but it should work the same way.
    Here is one that talks about VC 6.0 and Excel.
    Here is a code project article about this.
    Even with .NET, you have to do thru the Excel Automation support. Excel started shipping with Primary Interop Assemblies (PIA) which are .NET wrappers about the Excel Automation object model. C++ Automation is definetely not as nice as .NET, BTW
    See this document for more information about the Excel object model.
    I would not recommend using the CVI Excel libraries if all you want to use them for is Excel automation. You will end up creating un-necessary dependencies and go through extra layers that way. You can make calls straight to Excel from VC++ without requiring CVI.
    One quick observation about your excel approach. If you decide to use Excel as your table, you might be requiring everyone who uses your application to have Excel installed on their machines. Just wanted to make sure this was acceptable to you.
    Have you looked at the Datagrid Activex control, which is one of the common controls that ships with Visual Studio? You can add it to Visual Studio by right-clicking and picking it from the list of installed activex control. If you have not already, you should check it out.
    Microsoft has made significant improvements in the number of controls they provide with .NET. They have a Datagrid control that seems to be what you need.
    Measurement Studio did add some high level classes for Excel and Word Automation that simplify some common tasks, but these exists for VS 2003 C++ and VS 2005 C++, not for VC 6.0. Underneath, we end up using the same Excel automation classes, so you can easily setup something similar for VC 6.0. Plus you can find alot of references online on how to use the Excel Automation object model with C++.
    We currently have no plans in Measurement Studio to create a table control unfortunately. I am assuming when you said graph, you actually meant table, since Measurement Studio already  provides a ActiveX graph controls for VC++ 6.0 that is very similar to the CVI graph.
    On a side note, VC++ 6.0 is really really old. Have you considered upgrading?
    To summarize
    - Yes, you can use Excel with Vc++ 6.0 without mstudio.
    - Try using the Datagrid Activex control if you just need a table.
    - Measurement Studio provides high-level excel and word classes for VC++ 6.0
    - Measurement Studio provides a graph control for VC++ 6.0 which is very similar to the CVI graph.
    - Measuremnt Studio does not have a table control.
    - VC++ 6.0 is really really old. Have you considered upgrading?
    Bilal Durrani
    NI

  • Windows Phone - Cannot bind custom user controll with listview item source property

    It is Windows Phone 8.1 (runtime)
    I have some problem of binding custom user controll with list of data. I'll make it simple as I can.
    My problem is that somehow if I use DataBind {Binding Something} inside my custom controll it will not work.
    I need to transfer binded data (string) to custom controll.
    It is strange that if I do not use DataBind, it will work normally. Eg MyCustomControllParameter = "some string" (in my example 'BindingTextValue' property)
    Does anyone Know how to bind custom user controll with inside ListView with DataTemplate.
    Assume this:
    XAML Test-Main page
    <Grid  Background="Black">        <ListView x:Name="TestList" Background="#FFEAEAEA">                    <ListView.ItemTemplate>                <DataTemplate>                    <Grid Background="#FF727272">                        <local:TextBoxS BindingTextValue="{Binding Tag, FallbackValue='aSource'}" local:TextBoxS>                    </Grid>                </DataTemplate>            </ListView.ItemTemplate>        </ListView>    </Grid>
    XAML Test-Main page c#
    public sealed partial class MainPage : Page    {        List<TTag> tags = new List<TTag>();        public MainPage()        {            this.InitializeComponent();            this.NavigationCacheMode = NavigationCacheMode.Required;        }        public class TTag        {            public string Tag { get; set; }        }        private void InitializeAppData()        {            TTag tag = new TTag() { Tag = "hello world" };            tags.Add(tag);            tags.Add(tag);            tags.Add(tag);            TestList.ItemsSource = tags;        }             protected override void OnNavigatedTo(NavigationEventArgs e)        {            InitializeAppData();        }           }
    User Control XAML:
      <UserControl    x:Class="CustomControllTest.TextBoxS"    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"    xmlns:local="using:CustomControllTest"    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"    mc:Ignorable="d"    d:DesignHeight="300"    d:DesignWidth="400">      <Grid x:Name="LayoutRoot" Background="#FF4F4F4F"   >        <RichTextBlock x:Name="MyTestBlock">        </RichTextBlock>    </Grid></UserControl>
    User Control c#
    public TextBoxS()       {            this.InitializeComponent();            LayoutRoot.DataContext = this;        }        public static readonly DependencyProperty BindingTextValueProperty = DependencyProperty.Register(                                         "BindingTextValue",                                         typeof(string),                                         typeof(TextBoxS),                                         new PropertyMetadata(default(string)));        public string BindingTextValue        {            get            {                return GetValue(BindingTextValueProperty) as string;            }            set            {                SetValue(BindingTextValueProperty, value);                //This method adds some custom logic into RichTextBlock, pointed correctly                SetupBox(value);            }        }
    Thanks for helping ;)

    If you use a built-in control rather than your custom control, does binding work? You should verify that first.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

Maybe you are looking for

  • STOCK REPORT FIFO wise

    Hello to ALL I want stock report FIFO WISE my Item valuation method is FIFO & Purchase & sale by batch wise,i want report to show that which quantity is remaining & what is the cost for that item Suppose i purchase I01 qty 2 Price 10 & after i purcha

  • Match resolutions/aspect ratio of two different cameras

    I shot a short video with an iPad 3 and a Sony DCR-DVD-403 NTSC. The video from the iPad is fuller and wider than the footage I shot with the Sony Cam. 1. I just need them to be the same size as I edit.  So that I can produce this project with all vi

  • Adobe PDF Printer crashes since Update to 10.4.6 (Intel)

    When I try to print to the Adobe PDF Printer (Acrobat Pro 7.07) the system freezes constantly; I can then only succesfully reboot into the single user mode. Complete optimization AND cache cleaning has to be performed then (I use Onyx 1.7); otherwise

  • IPhone 5 connection issue

    Suddenly, today, my iPhone 5 began giving me a problem. Out of the blue, I hear the person I called but they can't hear me. Tried cleaning out the headphone jack. Did a reset. iTunes works in that I can hear music from the speaker. I can hear the per

  • Is Camera Raw 7.1 compatible with CS5? [was: question]

    Is camera raw plugin 7.1 able to be installed in photoshop CS5?