Search found 10 matches

by Mounika
Mon Jul 09, 2018 6:20 am
Forum: Platform Related Issues
Topic: WxtextCtrl focux in LInux
Replies: 17
Views: 3413

Re: WxtextCtrl focux in LInux

Use wxpanel in place of wxminiframe , focus of the text control is working properly
by Mounika
Mon Jul 02, 2018 7:06 am
Forum: Platform Related Issues
Topic: WxtextCtrl focux in LInux
Replies: 17
Views: 3413

Re: WxtextCtrl focux in LInux

I don't think the new attachment uploaded. Certainly I can't see it here. But you don't need an attachment. You should reduce your code to the smallest amount that shows the problem, diff it with 'minimal', then paste the diff here, using 'Code' tags (the button that says 'Code' above your post). P...
by Mounika
Tue May 15, 2018 1:45 pm
Forum: Platform Related Issues
Topic: WxtextCtrl focux in LInux
Replies: 17
Views: 3413

Re: WxtextCtrl focux in LInux

Hi ,
Please Find Find the attachement, and paste in widgets project in Samples.


Go to button project and click the buton change ....
by Mounika
Tue May 15, 2018 4:20 am
Forum: Platform Related Issues
Topic: WxtextCtrl focux in LInux
Replies: 17
Views: 3413

Re: WxtextCtrl focux in LInux

Hi,

this is the code i am using,

pwxTextCtrlPanel -- wxPanel where txtx control is placeds

wxMiniframe::Show(true);
wxTextCtrl* txt = (wxTextCtrl*)FindWindowById(ID_SEARCH_TXTCTRL, m_pwxTextCtrlPanel);
txt->SetFocus();
by Mounika
Mon May 14, 2018 5:09 am
Forum: Platform Related Issues
Topic: WxtextCtrl focux in LInux
Replies: 17
Views: 3413

Re: WxtextCtrl focux in LInux

Hi ,
Text control is in mainfrom,
FindWindowbyid given text control, after that setfocus for that text control is not Working......
by Mounika
Mon May 14, 2018 5:06 am
Forum: Platform Related Issues
Topic: WxtextCtrl focux in LInux
Replies: 17
Views: 3413

Re: WxtextCtrl focux in LInux

Hi ,
by Mounika
Fri May 11, 2018 7:15 am
Forum: Platform Related Issues
Topic: WxtextCtrl focux in LInux
Replies: 17
Views: 3413

Re: WxtextCtrl focux in LInux

Hi,
Wx Version we are usinmg 3.0.2
GTK+ Version 2.0


Code::
//After Showing Miniframe frame without Destroying miniframe , i need to give focus to text ctrl

wxMiniframe::Show(true);
wxTextCtrl* txt = (wxTextCtrl*)FindWindowById(ID_SEARCH_TXTCTRL, m_pwxTextCtrlPanel);
txt->SetFocus();
by Mounika
Fri May 11, 2018 12:36 am
Forum: Platform Related Issues
Topic: WxtextCtrl focux in LInux
Replies: 17
Views: 3413

Re: WxtextCtrl focux in LInux

Hi ,
I tried with setFocus() function of wxTextctrl and EVT_ACTIVATE event.
its a GTK+ version.
by Mounika
Fri May 11, 2018 12:33 am
Forum: Platform Related Issues
Topic: WxtextCtrl focux in LInux
Replies: 17
Views: 3413

Re: WxtextCtrl focux in LInux

Hi , I tried with SetFocus() predefiend function and EVT_ACTIVATE.
Its a GTK+ Version.
by Mounika
Thu May 10, 2018 2:18 pm
Forum: Platform Related Issues
Topic: WxtextCtrl focux in LInux
Replies: 17
Views: 3413

WxtextCtrl focux in LInux

Hi,
SetFocus of wxtextctrl is not working when wxMIniframe is shown in linux.
Please Find attachement