Implement Bug-Report feature into Application,...
Fri, 12 Sep 2008 05:39:06 +0200
Hi,
i would like to implement a bug report feature
into my application, if possible via email, but
it is obvious that i cant rely on MAPI settings
of the user and i cant store any connection
data into the binary like smtp server address
passwords, etc. The point is that i want to give
the user the chance to ...
|
?? Changing Event Listeners But Allowing GC ??
Thu, 11 Sep 2008 11:10:36 -0500
Hi everyone,
I have a class (let's call it "X") that listens for Resize events on a
single Control (let's call it "C"). X should receive Resize events from
exactly one Control (not multiple Controls).
I have something like this in X:
C.Resize += delegate(object sender, EventArgs e) {
Control myCont ...
|
DOTNET - Jobs, Interview Questions, Certification
Wed, 10 Sep 2008 09:39:26 -0700 (PDT)
Hi,
In the very fast moving IT Industry, there is a need for the people
to keep a note of what is happening in the field, what are the latest
Jobs available and in which technologies they are available and what
companies and also in which cities.
And also when applying for Jobs, it is obvious for people t ...
|
Setting an individual node in a tree view to have strikeout.
Wed, 10 Sep 2008 12:31:19 -0400
How can I set the text for a specific node to be strikeout? It's there but
it's read only.
TIA - Jeff.
...
|
ImageList overlays
Wed, 10 Sep 2008 08:34:08 -0700
Is there a method for creating overlayed images using the .Net (C#) version
of the ImageList class?
I have a set of bitmaps in an ImageList. I would like to create an overlaid
image by combining one of the images over another. This was possible with
the Win32API, but I do not see a method to do a similar ...
|
Listview Tooltips not showing
Wed, 10 Sep 2008 03:57:57 -0700 (PDT)
I've got a listview being filled with a bunch of objects which I am
trying to display a tooltip for.
I am setting it up like so:
ListViewItem item;
foreach (Field f in listoffields)
{
item = new ListViewItem(f.ToString());
item.ToolTipText = f.ToopTip;
listView1.Items.Add(ite ...
|
Anchoring/overlaying control issue
Tue, 9 Sep 2008 17:42:18 -0400
VS 2008, C#, .NET 3.5.
I'm maintaining code - a form that has numerous controls, including a text
box on the left side and a check box on the right side. The text box is
anchored Top/Left, and the check box is anchored Top/Right. When the form
is sized down (narrowed left to right), the text box moves to ...
|
|
|
Unable to detect WM_VSCROLL in C#
Tue, 9 Sep 2008 16:11:08 -0400
Hello,
I need to detect WM_VSCROLL on a ListView. I am able to see the messages
on "Microsoft Spy++', but when I use the below code, I do not see
WM_VSCROLL.
I am using VS2008 SP1 on XP SP3.
protected override void WndProc(ref Message message)
{
const int WM_VSCROLL = ...
|
Dispose managed resources
Mon, 8 Sep 2008 22:46:01 -0700
Hi,
When I create a Windows Form in VS 2005 I get the Dispose method created for
me in the Form.Designer.cs file. Some of the code that I get inside that
method takes care of cleaning up managed resources this way:
if (disposing && (components != null))
{
components.Dispose();
}
The question is whether ...
|
FileSystemWatcher rename parent folder
Mon, 8 Sep 2008 22:28:09 -0700 (PDT)
Hi,
I am watching for file system events in a folder "D:\Watcher\Watch"
folder which is working perfectly fine. However, this prevents user
from renaming the parent folder (in this case "d:\watcher" folder).
Now customer wants the ability that the user should be able to rename
the parent folder. Does anyone h ...
|