java script : back ground Fade
posted by
mohamed basha
0
comment
إرسال بالبريد الإلكتروني
كتابة مدونة حول هذه المشاركة
المشاركة على X
المشاركة في Facebook
التسميات:
bg fade,
fade back ground,
java code,
java script
Java script - Scroll Background
posted by
mohamed basha
0
comment
إرسال بالبريد الإلكتروني
كتابة مدونة حول هذه المشاركة
المشاركة على X
المشاركة في Facebook
التسميات:
java script,
Scroll Background
c # How to write an Office Plug-In/Add-In Using C#.NET
There are many Win/Web applications where we would use Office...this
article throws light on how to add office plug-in/add-in using C#.NET
into your application.
Pls find more information about article here...
With Best Regards,
mohamed basha
posted by
mohamed basha
0
comment
إرسال بالبريد الإلكتروني
كتابة مدونة حول هذه المشاركة
المشاركة على X
المشاركة في Facebook
c # ESC key
ESC key
Do this
create a button on the same form where you have to get hold of ESC key!
in the form properties check out CancelButton and set its value to the the button designed right now. now write the routine for that button if it is clicked.
you can also assign it at runtime like this:
(C#) this.CancelButton=button24;
(VB.NET) Me.CancelButton=button24
With Best Regards,
mohamed basha
posted by
mohamed basha
0
comment
إرسال بالبريد الإلكتروني
كتابة مدونة حول هذه المشاركة
المشاركة على X
المشاركة في Facebook
التسميات:
ESC key
c # function to test HHMM
function to test HHMM -- HoursMins using regular expression (REGEX)
private string TestHHMM()
{
string InputString = DateTime.Now.ToString("HHmm"); // "2200";
if (InputString.Length >= 2)
InputString = InputString.PadLeft(4, '0');
Regex RegexObj = new Regex("^([0-1]\\d
2[0-3])([0-5][0-9])$");
if (RegexObj.IsMatch(InputString))
Console.WriteLine("true");
else
Console.WriteLine("false");
return RegexObj.Replace(InputString, "$1:$2");
}
}
posted by
mohamed basha
0
comment
إرسال بالبريد الإلكتروني
كتابة مدونة حول هذه المشاركة
المشاركة على X
المشاركة في Facebook
التسميات:
function to test HHMM


