1
vote
1answer
203 views
Removing Outlook AddIn Sidebar Header
Hello,
I am working on a sidebar AddIn for Microsoft Outlook using Visual Studio Tools for Office. However, I can't figure out how to get rid of the header outlook puts on my sidebar when I show i …
0
votes
2answers
151 views
WPF Hyperlink Child
Hi, I have a WPF Hyperlink that I am able to click and get it's NavigateUri property just fine. However, I want to be able to bundle some additional information with the Hyperlink so I can process …
0
votes
2answers
233 views
WebClient multi-threaded response
Hi,
I am performing two parallel requests to my web service using WebClient and multithreading them with ThreadPool. However, I'm having an issue in one of the threads where I get this WebExceptio …
0
votes
4answers
297 views
WPF Sort ListView by Date
Hi. I have a WPF ListView with a column that has dates in it. I would like a way to custom sort the dates (by date value, rather than string value). Is there a way to do this? Right now I am us …
1
vote
1answer
196 views
WPF TextBox Not Accepting Delete Key
Hello. I have a WPF application embedded in a Microsoft Outlook 2003 window. Everything is working fine, except none of my TextBox controls accept the backspace key. I've done some research, and …
1
vote
1answer
79 views
Parent window intercepting accelerator
Hi,
I have a window that I've placed into another application. In this case, I have a custom application that I injected into a Outlook 2003 Window.
I'm having an issue where the parent wi …
0
votes
1answer
213 views
WPF ListView not rendering templates
Hello,
I have a ListView that I am populating with items from an ObservableCollection. All was working well until I decided to add a second list view to filter some of the items.
What I ha …
0
votes
1answer
128 views
Alternatives to NativeWindow for subclassing
I am subclassing a Win32 window in managed code using NativeWindow. However, I'm encountering a bug in either my code or with NativeWindow that throws an exception when the parent is closed. The …
0
votes
2answers
259 views
WPF Popup ZOrder
Hi,
I am using a WPF Popup, but it popups up above every single window on my desktop, even when my application is minimized. How can I make it stay only on the window it originated? The same thin …
0
votes
2answers
282 views
WPF Trigger on TextBlock Inlines
Hi.
I have a TextBlock that I want to display a user name, and email like this:
Firstname Lastname (Email)
However, I don't want to put the (Email) part in …
0
votes
1answer
157 views
Detect when WPF listview scrollbar is at the bottom?
Is there a way to detect if the scrollbar from the ScrollViewer in a ListView has reached the bottom of the virtual scroll space? I would like to detect this to fetch more items from the server to …
2
votes
2answers
55 views
Replacing DLL in Windows Installer Project
Hi,
I have a Windows Installer project built for my VSTO add-in. However, I have to run one of my DLLs through an obfuscator at the end, but if I try to build the setup project with the modified D …
0
votes
Removing Outlook AddIn Sidebar Header
No way to do this using the Office 2007 CustomTaskPanes. You have to shove your window into outlook like this: …
2
votes
Why is this WebRequest code slow?
I noticed that an HttpWebRequest hangs on the first request. I did some research and what seems to be happening is that the request is configuring or auto-detecting proxies. If you set Proxy = nu …
0
votes
WebClient multi-threaded response
I fixed my issue by adding
request.ServicePoint.Expect100Continue = false;
before making my POST call. What was happening according to wireshark was my HttpWebReq …
