Click here to Skip to main content
16,010,392 members
Home / Discussions / C#
   

C#

 
GeneralRe: Fast ListView Pin
eytan levit9-Feb-03 2:25
eytan levit9-Feb-03 2:25 
GeneralRe: Fast ListView Pin
Stephane Rodriguez.9-Feb-03 2:50
Stephane Rodriguez.9-Feb-03 2:50 
GeneralAdding the contents of a Graphics class to another Graphics Class..... Pin
Jon Newman8-Feb-03 6:34
Jon Newman8-Feb-03 6:34 
Generalzeroing a byte array Pin
monrobot137-Feb-03 11:30
monrobot137-Feb-03 11:30 
GeneralRe: zeroing a byte array Pin
Nnamdi Onyeyiri7-Feb-03 11:54
Nnamdi Onyeyiri7-Feb-03 11:54 
GeneralRe: zeroing a byte array Pin
monrobot137-Feb-03 12:37
monrobot137-Feb-03 12:37 
GeneralRe: zeroing a byte array Pin
David Stone7-Feb-03 18:45
sitebuilderDavid Stone7-Feb-03 18:45 
GeneralThe correct way Pin
leppie7-Feb-03 21:51
leppie7-Feb-03 21:51 
From MSDN:

Array.Clear Method [C#]

Sets a range of elements in the Array to zero, to false, or to a null reference (Nothing in Visual Basic), depending on the element type.

public static void Clear(
Array array,
int index,
int length
);

Parameters
array
The Array whose elements need to be cleared.
index
The starting index of the range of elements to clear.
length
The number of elements to clear.

Also from MSDN:
Form.AcceptButton Property [C#]

Gets or sets the button on the form that is clicked when the user presses the ENTER key.

public IButtonControl AcceptButton {get; set;}

Property Value
An IButtonControl that represents the button to use as the accept button for the form.

Remarks
This property allows you to designate a default action to occur when the user presses the ENTER key in your application. The button assigned to this property must be an IButtonControl that is on the current form or located within a container on the current form.

You can use this property to allow the user to quickly navigate a simple form by allowing them to simply press the ENTER key when they are finished instead of manually clicking the accept button with their mouse.

The accept button may not be activated if the currently selected control on the form intercepts the ENTER key and processes it. For example, a multiline text box control allows the ENTER key to be pressed when it is selected to insert a new line character in the control.

MyDUMeter: a .NET DUMeter clone
GeneralRe: The correct way Pin
monrobot138-Feb-03 10:21
monrobot138-Feb-03 10:21 
GeneralChanging the Cursor hotspot at run-time Pin
draco_iii7-Feb-03 7:28
draco_iii7-Feb-03 7:28 
GeneralRe: Changing the Cursor hotspot at run-time Pin
Jeff J7-Feb-03 8:58
Jeff J7-Feb-03 8:58 
GeneralRe: Changing the Cursor hotspot at run-time Pin
draco_iii9-Feb-03 11:39
draco_iii9-Feb-03 11:39 
GeneralProblems displaying Xml Contents Pin
jtmtv187-Feb-03 6:44
jtmtv187-Feb-03 6:44 
GeneralWhen i override OnKeyDown... Pin
Nnamdi Onyeyiri7-Feb-03 6:29
Nnamdi Onyeyiri7-Feb-03 6:29 
GeneralRe: When i override OnKeyDown... Pin
leppie7-Feb-03 6:45
leppie7-Feb-03 6:45 
GeneralRe: When i override OnKeyDown... Pin
Nnamdi Onyeyiri7-Feb-03 6:48
Nnamdi Onyeyiri7-Feb-03 6:48 
GeneralRe: When i override OnKeyDown... Pin
leppie7-Feb-03 7:02
leppie7-Feb-03 7:02 
GeneralRe: When i override OnKeyDown... Pin
Nnamdi Onyeyiri7-Feb-03 7:04
Nnamdi Onyeyiri7-Feb-03 7:04 
GeneralRe: When i override OnKeyDown... Pin
Paresh Gheewala7-Feb-03 8:32
Paresh Gheewala7-Feb-03 8:32 
GeneralRe: When i override OnKeyDown... Pin
Nick Parker7-Feb-03 9:48
protectorNick Parker7-Feb-03 9:48 
GeneralRe: When i override OnKeyDown... Pin
Nnamdi Onyeyiri7-Feb-03 9:57
Nnamdi Onyeyiri7-Feb-03 9:57 
GeneralRe: When i override OnKeyDown... Pin
Nick Parker7-Feb-03 19:53
protectorNick Parker7-Feb-03 19:53 
QuestionRemoting a MFC object? Pin
Nish Nishant7-Feb-03 3:33
sitebuilderNish Nishant7-Feb-03 3:33 
AnswerRe: Remoting a MFC object? Pin
leppie7-Feb-03 7:54
leppie7-Feb-03 7:54 
AnswerRe: Remoting a MFC object? Pin
Nick Parker7-Feb-03 8:31
protectorNick Parker7-Feb-03 8:31 

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.