Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > ActiveX COM > Report Control
  New Posts New Posts RSS Feed - Report Control will disable the tab key feature
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Report Control will disable the tab key feature

 Post Reply Post Reply
Author
Message
cybeh View Drop Down
Groupie
Groupie
Avatar

Joined: 27 December 2005
Location: Malaysia
Status: Offline
Points: 76
Post Options Post Options   Thanks (0) Thanks(0)   Quote cybeh Quote  Post ReplyReply Direct Link To This Post Topic: Report Control will disable the tab key feature
    Posted: 02 February 2007 at 3:58am
uploads/20070202_035511_RpcProblem.zip


Hi,

Please find attached file for the issue as I mentioned in the subject.
During the text box got focus, I code the reportcontrol.visible = true
when i try to press the tab key on my keyboard, it seems like can't detect the tab key anymore, until I manually set a "lost focus" by using my mouse, then only the tab feature will functioning back.

Please advice.

Thanks.

Back to Top
sserge View Drop Down
Moderator Group
Moderator Group


Joined: 01 December 2004
Status: Offline
Points: 1297
Post Options Post Options   Thanks (0) Thanks(0)   Quote sserge Quote  Post ReplyReply Direct Link To This Post Posted: 03 February 2007 at 5:22pm
Better solution - use this code in Form2:


Dim m_bSkipFocusEvent As Boolean
 
Private Sub Form_Initialize()
        m_bSkipFocusEvent = False
End Sub
 
Private Sub Text1_GotFocus(Index As Integer)
 
    If m_bSkipFocusEvent Then
        Exit Sub
    End If
   
    If Index = 0 Then
        m_bSkipFocusEvent = True
       
        ReportControl1.Visible = True
       
        ReportControl1.SetFocus
        DoEvents
        Text1(0).SetFocus
        DoEvents
       
        m_bSkipFocusEvent = False
    End If
End Sub


--
WBR,
Serge
Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.140 seconds.