The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
117 views
+50

Pinned Instances for GC - Not traceable from my managed code

So I am using WPF 3.5 with MVVM + DataTemplate method to load 2 views on the GUI. I have observed while memory profiling that items generated as part of items container of items controls are pinned ...
6
votes
4answers
1k views

Pinning an updateble struct before passing to unmanaged code?

I using some old API and need to pass the a pointer of a struct to unmanaged code that runs asynchronous. In other words, after i passing the struct pointer to the unmanaged code, the unmanaged code ...
5
votes
3answers
321 views

Do I need to pin an anonymous delegate?

I am calling CopyFileEx from a C# application with an anonymous delegate being passed into the LPPROGRESS_ROUTINE parameter in order to get notifications on the file copy progress. My question is, ...
4
votes
2answers
69 views

@ at start of WP7 tile title replaced by path: known issue?

I'm using the ShellTile.Create method to create a secondary tile. Users of the app I've developed have noticed that if the entity they are pinning has a name that starts with "@" (which is then used ...
4
votes
3answers
271 views

Indexing into arrays of arbitrary rank in C#

I need to iterate over an array of arbitrary rank. This is for both reading and writing, so GetEnumerator will not work. Array.SetValue(object, int) doesn't work on multidimensional arrays. ...
3
votes
3answers
2k views

GCHandle, Marshal, managed and unmanaged memory : To pin or Not To Pin

As Hans Passant wishes here is the scenario of mine. I have a mixed mode application in which the native code does all the hard work while respecting the performance and managed code is responsible ...
2
votes
1answer
165 views

How to prevent an app from being pinned in Windows 7?

I am trying to prevent the user from pinning my .NET app to the taskbar. I've found some code on the Old New Thing that does just that. However, it is in C++. #include <shellapi.h> #include ...
2
votes
2answers
239 views

In visual studio 2010 what is/how to set the hotkey to pin and unpin an active pane?

I often run tests and need the test-result pane to be pinned. In other time, I mostly work with writting codes and compile - I prefer to have the output pane (which shared the same space with ...
2
votes
2answers
1k views

GridSplitter with button for pinning like behavior

I'm looking to extend the GridSplitter in some way to add a button which when click expands or collapses the control to one of the specified sides of the splitter. I've found a solution that works ...
2
votes
5answers
2k views

c# pin a form to the deskop

I am trying to pin a form to the desktop, like the gadget sidebar. It should not be affected by Win+D and Show desktop buttons. Which is the best methode for this? I can find the Progman and set ...
1
vote
1answer
468 views

Manually unpinning a byte[] in C#?

In the following code, it seems that the client.Connect.Receive is pinning the "byte[] result" permanently, causing the memory to never be freed (as it's always pinned). I'm looking for a way to tell ...
1
vote
1answer
331 views

pinned memory opencl, has anybody successfully used it?

I used the CL_MEM_ALLOC_HOST_PTR flag with my clCreateBuffer calls, but the Compute Profiler shows all my "host mem transfer type" as being Pageable. I tried it in two different kernel setups, but the ...
0
votes
0answers
20 views

Information on how to do Server Pinning

There was a thread on here someone mentioned a few different options to fixing the session variables for web farm servers. They said that server pinning is one option. I would like to know how to go ...
0
votes
2answers
125 views

Storing a reference to a object in C#

I'm currently working on a VariableWatcher class in C#. What I want to do, is to raise a event every time a variable is changed to a specific value. For example: I have a bool a , which is false. I ...
0
votes
2answers
814 views

Windows 7, VB6, Launcher App and Pinning to the Taskbar

We have an application that has a "launcher" app that sits there with a pretty UI while the main app loads in the background. Both of these apps are written in VB6 (sigh). In Windows 7, if user's ...