comp.os.mswindows.programmer.controls
  Home FAQ Contact Sign in
comp.os.mswindows.programmer.controls only
 
Advanced search
February 2008
motuwethfrsasuw
    123 5
45678910 6
11121314151617 7
18192021222324 8
2526272829   9
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007    
total
comp.os ... controls Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  ListView control insists on displaying "label tip"?         


Author: diandaolly
Date: Feb 18, 2008 21:15

I've never set LVS_EX_LABELTIP for my listview control, but for all
item
labels that need unfolding (in all views including icons, list,
report, ...), the label tip is always displayed - even if I manually
clear this ex-style as following:

SetExtendedListViewStyle(0, LVS_EX_LABELTIP);

I don't want label tip, since I already have "info tip".
So how to remove this "label tip" feature? Thanks

---
My codes (note: the following definitions are required and can't be
changed):

#define WINVER 0x0500
#define _WIN32_WINNT 0x0501O
#define _WIN32_IE 0x0501
...

LRESULT CMyListViewCtrl::OnCreate(....)
{
LRESULT lRes = DefWindowProc(uMsg, wParam, lParam);
Show full article (0.99Kb)
no comments
  title bar context menus         


Author: you can call me al
Date: Feb 7, 2008 14:27

Hello,

I have been using an application called PowerMenu (http://
www.abstractpath.com/powermenu/) for a while now and am interested in
writing something similar myself. This program adds items to the
title bar (and taskbar) context menu of all running applications. The
added options allow you to set priority, window transparency, and
toggle the "always on top" state for the particular window.

I would like to know how I can create my own program (using visual
studio preferably) that is able to extend the title-bar context menus
of other running applications as well as interface with those
applications to manipulate their window properties.

Any information or leads would really be helpful and very much
appreciated. I mostly do console programming and part of the problem
I'm having is that I don't know the technical terms I should be
searching for to get started.

Thanks,
M
no comments