|
| |
|
|
|
|
|
|
|
|
|
|
| |
|
|
|
|
| FireFox Web Browser
Why we should give a try to this new browser? Some of the cool facts
about it.
- It's cross platform, with versions for Windows, Mac and Linux
- It's small. (4.7 MB download)
- Firefox is very customizable. In addition to options available
through the user interface, many more options can be customized using
text files.
- Alternative to Internet Explorer it offers better security and
richer features
Download Firefox |
|
|
Yesterday I was giving training on 3rd part control True
DBGrid Pro6,0 in classic VB 6.0. ooops its too boring to give training
on vb6.. anyways in those controls we have option to configure a key when
pressed transfer focus to next control. Application demand was to use enter key
to go to next control.. again I wonder why not people use tab keys as windows
does. Well if you want to configure enter key to move to next control in .NET
then use following technique.
Set KeyPreview property of the form to "True"
Trap Key_down event of form and check if enter key was pressed. if then pass
the focus to next control. code looks like below.
private void Form1_KeyDown ( object sender,
KeyEventArgs e )
{
if ( e.KeyCode == Keys.Return )
{
Control c = GetNextControl ( ActiveControl,
true ) ;
c.Focus( ) ;
}
}
.The ActiveControl property returns the reference of the control that
is currently selected. The GetNextControl( ) method returns the control
next to the specified control in tab order. The focus is set on the next control
using the Focus( ) method.
|
| Mozilla Firefox Infinite Array Sort
Denial Of Service Vulnerability,
Mozilla Firefox is prone to a vulnerability that may result in a browser
crash. This issue is exposed when the browser performs an infinite
JavaScript array sort operation. It is conjectured that this will only
result in a denial of service and is not further exploitable to execute
arbitrary code, though this has not been confirmed.
It is not known if other Mozilla products or Gecko-based browsers are
affected by this vulnerability.
http://www.securityfocus.com/bid/11752/ |
|
|
|
|
|
|
|
|
|
|