0

I want create a DeskBand application for Windows 7 64bit in VB2013. I found two helpful sites:

  1. Band Object Basics
  2. Extending Explorer with Band Objects Using .NET

My problem is, if I want activate my toolbar, drop the popup window that say this: "**** toolbar isn't compatible with this version of Windows."

I write this on Win x64 with VB.NET Target Platform\CPU: x64

My VB.NET project files: http://s000.tinyupload.com/index.php?file_id=01064589043620484857

What could be the problem?

Please help me. Thank you.

Will Marcouiller
  • 23,773
  • 22
  • 96
  • 162
ZsUser
  • 1
  • Codeproject.com projects chronically lack the "only works on my machine" disclaimer. Do not target .NET 2.0, very important to use 4.0 today so you can survive the CLR version injection problem. And use the correct version of regasm.exe, the 4.0 64-bit version. – Hans Passant Jun 02 '15 at 10:02
  • I created a new project with .NET 4.0 x64 but the result was the same. – ZsUser Jun 02 '15 at 10:32

1 Answers1

0

You DeskBand must implement IDeskBand2 interface. And IDeskBand2.CanRenderComposited method must set CanRenderComposited to TRUE.

Denis Anisimov
  • 3,297
  • 1
  • 10
  • 18