-
problem with iframe is that you can't always predict the size of the content and eventually you'd end up with a scrollbar or even less convenient: a hidden part of the Iframe content this is a straight forward, easy way to make sure that the IFrame...
-
Google have disclosed that they're going to release a new browser called Chrome. this is big news here is the link ,these are comics that google released to explain about the browser.
-
var OneDay = 1000*60*60*24; function subtractDates (firstDate,secondDate){ return Math.ceil(( new Date(firstDate).getTime() - new Date(secondDate).getTime())/(OneDay)); } function addDays (dateToAdd,amountInDays){ return new Date(dateToAdd.valueOf() ...
-
Android 0.9 has just launched it has major UI updates Download it here http://code.google.com/android/download_list.html
-
you can make your application respond with a different behavior based on requested URL, This can be as simple as showing a different logo or as sophisticated as filtering data by that requested domain this is not such a big implementation problem, but...
-
on the 24th of march in Egypt register here
-
here is the link download it if u need to do testing on ur web applications, be ready.
-
there's a lot of ways to measure size of code, and Complexity of code, but up till this post there's nothing to measure the qualit of the code it was always subjective to meaure the quality of code but after this. sorry i had to post it, immediately...
-
i've been trying to explain the keyword yield to a friend of mine for more than an hour and he did not get it. but finally when i typed in this example he finally did 1: class enu :IEnumerable 2: { 3: public IEnumerator GetEnumerator() 4: { 5: yield...
-
it's normal to pass data to a function just thow in a parameter of the type of data you want to pass and ur set public int add ( int i, int u ){ return i+u; } now think in a different way, u now want to build a set of operations that the user can...
-
i didn't do this the right way i didn't go through documentation or consult with forums, i just wanted to do this the quick and easy way, what i do is i keep a sepparate theme for my blog sepparate from other bloggers so i can change whatever...
-
well it's not inheritable by default so you can not extend it. that used to be the case before c# 3.0 now you can specify all the functionality that you need in an Extension Method. problem lies in that the extension method needs to access the instance...
-
well there's an easy solution if need something urgently and u need to kick someone (close his session) mstsc -v:[UrServerNameOrIP] /console
-
well also one of the nicest features in c# 3.0 is the object initializers well we used to do this 1: Employee emp = new Employee(); 2: emp.FirstName= "Amir" ; 3: emp.LastName= "Magdy" ; 4: emp.Title = "Mr." ; i actually hated...
-
C# 3 comes with a very nice feature (not undermining the power of lambda expressions and Linq), just this one shows how nice the language has evolved into 1: class Employee 2: { 3: public string firstName { get; set; } 4: } you see the previous code will...