Hi,
Few suggestions for your questions;
i would like my button display to - out put all the values of the arrayList.
-- Sorry, not much clear to me.
i would very much like some information about key pressing so when the use presses the key enter return ( char 13).
i did try - but my key press_ down just does not work.
-- Use from KeyDown event, Keys.Enter
here is a piece of code
private void Form1_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
{
switch (e.KeyCode)
{
case Keys.Enter:
SendKeys.Send("{Tab}");
break;
case Keys.Escape:
btnCancel_Click(this,e);
break;
}
finally i would like someone to show me how to format a number into dollars or pounds and how to round a decimal to two points
Please have a look at
http://blog.stevex.net/?page_id=33
finally i need some help with dates and the addition of dates
any help or refrencing to other material would be greatly apprechiated.
DateTime dt1 = new DateTime();
dt1.AddDays(1);
The above code will add a day to the date. similarly it provide multiple options to add time, month,...etc. Did this solve your problem?
Good luck