Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
642 views

Windows API Codepack Backwards Compatibility on Window XP

I don't have an XP machine handy. If I use the Windows API Codepack to do something new to Vista/Win7 (e.g. "TaskDialog") in C#, how does it cope with running on Windows XP machines? If I use the ...
2
votes
2answers
116 views

How can I make CommonOpenFileDialog select folders only, but still show files?

I am using Microsoft's CommonOpenFileDialog to allow users to select a Folder, but no files are visible when the dialog comes up. Is it possible to show files as well as folders when IsFolderPicker is ...
1
vote
1answer
90 views

Microsoft's CopyFileEx error

I am using Microsoft's CopyFileEx method to copy files. I am coping from one server to another and the file located in share folder and i am using UNC. i get an error 999. I was able to find the ...
1
vote
0answers
76 views

Screenshot for video files

I am trying to create screenshots of a powerpoint presentation using mij application. This is not the biggest issue. I have managed to do so with the following code Bitmap memoryImage = new ...
1
vote
1answer
87 views

How to convert WicImagingBitmap to Gdi+ Bitmap or a stream?

I'm a .net developer and I'm using WindowsAPICodePackage WIC to render images. I want to convert WIC ImagingBitmap to a gdi+ bitmap or to a MemoryStream instead using its own method "SaveToFile". Is ...
1
vote
1answer
139 views

IShellItemImageFactory Icon\Thumbnails different from Windows 7 Desktop

I am using IShellItemImageFactory to get icons and thumbnails for files and directories. In most cases this works great, but in some cases I get an image that is quite different from the one in ...
1
vote
1answer
185 views

How to use ilMerge to merge dll’s into an exe file?

I tried: C:\Windows\System32>ilmerge /target:winexe /out:c:\output.exe c:\MyProgram.exe c:\Microsoft.WindowsAPICodePack.dll But got: 'ilmerge' is not recognized as an internal or external ...
1
vote
1answer
338 views

TaskDialog default button

stackoverflow just works faster :) I'm using the Windows® API Code Pack for Microsoft® .NET Framework to access Windows 7 API and I want to change my old MessageBox to TaskDialog. One thing I cannot ...
0
votes
1answer
34 views

Strange issue with shell extesnsions.File returns after delete

I am having a strange problem.I am using the Windows API Code Pack for Microsoft .NET Framework for displaying custom thumbnails for my custom file extensions.I have used the ...
0
votes
0answers
21 views

Removing items from Custom Category - Jumplist

How to dynamically remove items from custom category in Jumplist (without deleting the jumplist itself). Here is how i am creating jumplist and customcategory: // Creating jumplist list = ...
0
votes
0answers
60 views

Trying to use WindowsAPICodePack source-code but getting error: Could not load file or assembly…or one of its dependencies. – Why?

I’m trying to use the WindowsAPICodePack without referencing its dll’s, rather using the source code that came with it. (How do I find which of the WindowsAPICodePack source files I need?) I copied ...
0
votes
0answers
35 views

How do I find which of the WindowsAPICodePack source files I need?

I’m using ShellFile and ShellThumbnail to retrieve thumbnails. I get them via WindowsAPICodePack.Shell. Currently, I’m referencing the WindowsAPICodePack.Shell assembly, but the codepack comes with ...
0
votes
0answers
151 views

Use a ShellFile object using Windows API Code Pack for Microsof

Windows API Code Pack for Microsoft can be downloaded from here. That is a really nice library and it has great examples. For example if I open the solution WindowsAPICodePack10 that comes in the zip ...
0
votes
2answers
107 views

how to get file properties?

I want an application which displays the some file properties of a mediafile if available, like (don't know the exact english words used in windows for it) FileName, Length/Duration, FileType(.avi ...
0
votes
0answers
54 views

Unable to call Close on Window using a ThumbnailToolBarButton

I am trying to close a Window in a brand new WPF application (no changes to the default generated xaml) via button click of a ThumbnailToolBarButton. When I try to do so, I am presented with the ...
0
votes
0answers
105 views

How to remove background color of ShellFile “icons”, but not of “real” thumbnails

I’m using WindowsAPICodePack, getting ShellFile’s Thumbnail’s. But some of those which look like the generic icons – have a black background. I therefore make it a Bitmap and set Black as transparent. ...
0
votes
0answers
34 views

How to implement the outline effect on text with WindowsAPICodePack?

I'm still struggling on this issue after our other requirements are finished. I found we can use GeometrySink alike classes to implement the outline effect; but I'm not familiar with c++; see this ...
0
votes
1answer
52 views

is there a Windows API to unmount a mount point

I am writing a virtual file system using dokan.lib. This lib do not have unmountPoint function, it has unmountDrive. Either I am looking for a dokan lib which will support unmountpoint call or ...
0
votes
0answers
111 views

Windows API Code Pack ExplorerBrowser Cant Rename Copied Folder

Using "Windows API Code Pack 1.1" "ExplorerBrowser" Copy a folder containing a .jpg file/s to the same directory. e.g. "c:\Folder" copied to "c:\Folder - Copy" It is important that the copied folder ...
0
votes
0answers
55 views

An exception when creating CompatibleRenderTarget from DcRenderTarget

I’m using the .Net Direct2D API in “Windows API Code Pack for .NET” to improve the drawing performance, it always throws the “Exception from HRESULT: 0x88982F80” when creating the ...
0
votes
1answer
35 views

Halo effect with WindowsAPICodePack library

Does any one have any experience on how to implement the halo(outline) effect for text with Direct 2D using the WindowdsAPICodePack? I searched for its API with google, but could not find any result ...
0
votes
1answer
150 views

Error showing TaskDialog with both ProgressBar and Custom Button

I am using the TaskDialog within WindowsAPICodePack. When I try to create a TaskDialog without just a TaskDialogProgressBar and TaskDialogButton it throws the follow exception. ...
0
votes
2answers
101 views

What is a Null value for a Long variable type in a Windows API call?

Stupid question. I think this should be 0, but I can't seem to find it. So, if I want to pass a Null value to a Windows API call (this happens to be in VB6), what value would I use? I think 0, but I ...