Search results for query: *

  1. L

    Turning off hover effects in VS 2022?

    I've found all kinds of dated SO posts explaining how to do this in older versions, but it seems MS has completely forgotten about us Magnifier users. We move the mouse. A lot. To move the zoomed-in area of the screen that we're looking at. Not to trigger constant aggravating tooltips...
  2. L

    Image.Save creates empty/blank file

    Okay, so I got a real weirdo here, and web searches and MSDN haven't been much help. Here's a minimal version of my code: using System.Drawing; // Create an empty image var bmp = new Bitmap(156, 128); var graphics = Graphics.FromImage(bmp); // Draw on it var blue = new...
  3. L

    Word interop: how to gaet the name of an InlineShape object?

    Hey guys, happy Friday! :) As usual, Microsoft's propensity to create ultra-complex hierarchies of objects upon objects upon objects has me completely baffled. So in Word, there are 2 "shape" (picture) object types that I know of: Shapes and InlineShapes. Shapes have a "Name" property that...
  4. L

    UIA question (extremely bizarre lol)

    Hey there, I've been working on a project that automates the "Save As" dialog as part of an automated download process, and I thought it would be best to use UIA (a.k.a. "Microsoft UI Automation", in the System.Windows.Automation namespace) as opposed to simulating keystrokes AutoHotKey-style...
Back
Top Bottom