Link to home
Start Free TrialLog in
Avatar of nvms
nvms

asked on

How can I avoid focus rectangle appearing on click ?

I have an application with small buttons which look wrong when the focus rectangle is also visible. I have seen somewhere an API call (or something) which prevents this being shown

Any ideas?

Stewart
ASKER CERTIFIED SOLUTION
Avatar of JonFish85
JonFish85

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of shlomof
shlomof

If it is an web application, you can do the following:

<a href="a.htm" Onfocus="blur()">Click</a>

or if it is a button:

<input type="button" value="Click" Onfocus="blur()">

enjoy it.
Avatar of nvms

ASKER

It is a VB 6.0 application, sorry for not clarifying that...  thanks also Jon, I shall hunt down the DrawFocusRect() call unless someone beats me to it !
Public Declare Function DrawFocusRect Lib "user32" Alias "DrawFocusRect" (ByVal hdc As Long, lpRect As RECT) As Long
Public Type RECT
        Left As Long
        Top As Long
        Right As Long
        Bottom As Long
End Type

I cant find the KillWindowFocus function :-/
use the Public Declare Function DrawFocusRect Lib "user32" Alias "DrawFocusRect" (ByVal hdc As Long, lpRect
As RECT) As Long
with a 0,0,0,0 rectangle to remove the focus.
Avatar of nvms

ASKER

Hi

I think John Fish has got cloest, but I am a little vague on how to actually employ this function on specific (small) buttons on my form.

Public Declare Function DrawFocusRect Lib "user32" Alias "DrawFocusRect" (ByVal hdc As Long, lpRect
As RECT) As Long
Public Type RECT
       Left As Long
       Top As Long
       Right As Long
       Bottom As Long
End Type

looks good, and I take Integam's comment to specify 0,0,0,0 which seems logical but where does this fit ? In the Click sub of the button ? or when the form is loaded ? I don't mind losing ALL rectangles on this particular form

Stewart
p.s. sorry for the delay, this project was on the shelf for a few weeks
try in the GotFocus() procedure... Also, if you dont want to bother, you can use this:

Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long
Private Const WM_KILLFOCUS = &H8

And in form_load:

Private Sub Form_Load()
  Me.Show
  SendMessage ControlName.hWnd, WM_KILLFOCUS, 0, 0
  '... for each control
End Sub

Now, the controls will never receive focus, as far as I can see anyway. No need for code in any other procedure I dont think...

Hope this helps!
There has been no activity in this question in quite some time, and it looks like it has been abandoned. As part of our ongoing mission to clean up the topic areas, a Moderator will finalize this question within the next seven (7) days. At that time, either I or one of the other Moderators will force/accept the comment of JonFish85.

DO NOT ACCEPT THIS COMMENT AS AN ANSWER. If you have further comments on this question or the recommendation, please leave them here.

Thanks,

Netminder
Community Support Moderator
Experts Exchange
nvms,

You last logged in on 1/14/2002, and you have disregarded our requests for you to clean up your open questions. I am therefore force/accepting a comment to close this question.

Netminder
Community Support Moderator
Experts Exchange