Click here to Skip to main content
15,915,702 members
Home / Discussions / C#
   

C#

 
GeneralRe: user32.dll Pin
Stefan Troschuetz24-Jan-05 3:30
Stefan Troschuetz24-Jan-05 3:30 
GeneralRe: user32.dll Pin
Dave Kreskowiak24-Jan-05 4:15
mveDave Kreskowiak24-Jan-05 4:15 
General[newbie] using legacy dll Pin
bluish23-Jan-05 23:00
bluish23-Jan-05 23:00 
GeneralRe: [newbie] using legacy dll Pin
Mike Dimmick24-Jan-05 2:17
Mike Dimmick24-Jan-05 2:17 
Generalreport generator like jasper reports under .net Pin
Alexander Roos23-Jan-05 18:54
sussAlexander Roos23-Jan-05 18:54 
GeneralIE Toolbar Backspace problem Pin
Adnan Siddiqi23-Jan-05 18:02
Adnan Siddiqi23-Jan-05 18:02 
GeneralRe: IE Toolbar Backspace problem Pin
Andy Brummer23-Jan-05 18:05
sitebuilderAndy Brummer23-Jan-05 18:05 
GeneralRe: IE Toolbar Backspace problem Pin
Adnan Siddiqi23-Jan-05 23:52
Adnan Siddiqi23-Jan-05 23:52 
Thanks for reply Andy

after revieing source file from the proejct
http://www.codeproject.com/csharp/dotnetbandobjects.asp[^]

i found the following mehtods in Bandojectlib.cs file


public virtual void UIActivateIO(Int32 fActivate, ref MSG Msg)
{
if( fActivate != 0 )
{
Control ctrl = GetNextControl(this,true);//first
if( ModifierKeys == Keys.Shift )
ctrl = GetNextControl(ctrl,false );//last

if( ctrl != null ) ctrl.Select();
this.Focus();
}
}

protected override void OnGotFocus(System.EventArgs e)
{
base.OnGotFocus(e);
BandObjectSite.OnFocusChangeIS(this as IInputObject, 1);
}

protected override void OnLostFocus(System.EventArgs e)
{
base.OnLostFocus(e);
if( ActiveControl == null )
BandObjectSite.OnFocusChangeIS(this as IInputObject, 0);
}


How can i cal these methods so that it can enable BACKSPACE key in the toolbar?

kindly guide me please

Thanks
GeneralRe: IE Toolbar Backspace problem Pin
Andy Brummer24-Jan-05 3:18
sitebuilderAndy Brummer24-Jan-05 3:18 
GeneralRe: IE Toolbar Backspace problem Pin
Adnan Siddiqi24-Jan-05 7:58
Adnan Siddiqi24-Jan-05 7:58 
GeneralProblem with WebResponse Pin
xdavidx23-Jan-05 16:53
xdavidx23-Jan-05 16:53 
GeneralRe: Problem with WebResponse Pin
Andy Brummer23-Jan-05 17:52
sitebuilderAndy Brummer23-Jan-05 17:52 
GeneralRe: Problem with WebResponse Pin
xdavidx24-Jan-05 2:24
xdavidx24-Jan-05 2:24 
GeneralProblem in Return DataReader from a ServicedComponent object Pin
kianboo23-Jan-05 15:04
kianboo23-Jan-05 15:04 
GeneralRe: Problem in Return DataReader from a ServicedComponent object Pin
Andy Brummer23-Jan-05 18:02
sitebuilderAndy Brummer23-Jan-05 18:02 
GeneralVideo encryption Pin
Christian Graus23-Jan-05 11:00
protectorChristian Graus23-Jan-05 11:00 
GeneralRe: Video encryption Pin
Andy Brummer23-Jan-05 11:13
sitebuilderAndy Brummer23-Jan-05 11:13 
GeneralRe: Video encryption Pin
Christian Graus23-Jan-05 11:36
protectorChristian Graus23-Jan-05 11:36 
GeneralRe: Video encryption Pin
Andy Brummer23-Jan-05 13:37
sitebuilderAndy Brummer23-Jan-05 13:37 
GeneralRe: Video encryption Pin
Dennis C. Dietrich23-Jan-05 12:14
Dennis C. Dietrich23-Jan-05 12:14 
GeneralRe: Video encryption Pin
Christian Graus23-Jan-05 12:22
protectorChristian Graus23-Jan-05 12:22 
GeneralRe: Video encryption Pin
Dennis C. Dietrich23-Jan-05 12:43
Dennis C. Dietrich23-Jan-05 12:43 
GeneralRe: Video encryption Pin
Christian Graus23-Jan-05 12:47
protectorChristian Graus23-Jan-05 12:47 
GeneralListView BeginEdit problem Pin
Newbie_Toy23-Jan-05 0:35
Newbie_Toy23-Jan-05 0:35 
GeneralREGULAR_EXP Pin
Bedevian22-Jan-05 23:16
Bedevian22-Jan-05 23:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.