بيتيّة " محفوظ

مواد في ال يبرمج صنف

رسم بيانيّ, يبرمج [&رقوو]

إن أنت يكون تفتّش بسيطة غير أنّ برمجيّة فعّالة أن يحوّل? رماديّة مقياس ([بلك ند وهيت]) يفحص صور داخل يلوّن صور, خارجا الصورة تحويل رمز @ [كدبلإكس].? His idea of converting gray scale to colored image is
رماديّة? =خضّرت * 0.59+اللون الأزرق * 0.30+أحمر * 0.11 و [...]

يبرمج [&رقوو]

حالة:
أنا استعملت [دتست] أن يخطّط إلى ي منفذة قاعدة معطيات. ما إن [دتست] خلق نحن يستطيع استعملت هو مع [لينق] مثل نحن نستعمل [لينق] إلى [سقل] أو [لينق] إلى ذاتية.
مشكلة:
سمح قاعدت معطياتي أن يتلقّى أعمدة مع [دب] [نولّ] خصوصا [إين كس] مع تاريخ. مع ذلك ه لا قد ألغى فكرة جيّدة أن في تاريخ عمود [...]

نقطة شبكة [&رقوو]

هذا تطوير ممتعة أيّ يعرض ال [إسّنتيل] من? كيف [لينق] مزود يستطيع كنت بنيت ل يربط إلى [تويتّر] [أبي] يستعمل [لينق] هيكل.
عمل أنا تلقّى يكون على [لينق] منذ 6 شهور المفهوم يكون مروّعة. أنا مروحة كبيرة [لينق] و [تويتّر] الاجتماعيّة شبكة من العلاقات منصة أنا أستعمل وأيّ شيء [...]

يبرمج [&رقوو]

أنا كنت قد عملت يوما ما على تطبيق في أيّ نحن اضطرّ حوّلت سيدة منفذة قاعدة معطيات إلى [سقل] 2005 و2008. أنا بالأحرى قلت كان هو هجرة من تحويل. سيدة يأتي منفذة مع خيار [إينبويلت] أن يهاجر إلى أيّ [سقل] نادلة 2005 قاعدة معطيات غير أنّ هو لا يخلق أيّ علاقة وفهرسة [...]

يبرمج [&رقوو]

There are lot of scenarios where a programmer is required to convert HTML code rendered using Javascript instead of using it directly over the page. HTML2JS is one such online tool which convert well formed HTML code into javascript DOM code and coder can direcly embed in their applications.
Just add your well formed HTML into [...]

Programming »

Recently we underwent training for Microsoft Silverlight and we needed? to install Silverlight tools for Visual Studio 2008. We downloaded Silverlight Tools for Visual Studio installer and started installing but it halted on my machine as I don’t have internet connection availble on my machine. This was a problem because anybody who wants to do [...]

Programming »

If you are programmer this can be a really good tool for you. ErroKey is an online tool which supports languages like Oracle, Sybase, Apple, Cisco6400, UnixSolaris, DB2, MySQL, PostgreSQL, SAPDB, BorlandC, Python, HTTP, Symbian, Mozilla and WindowsNT. All you need is to key in the error code in the search box and get to [...]

Dot Net »

Visual Basic does not?support control or special or escape sequences like ?\n? ( new line ) or ?\t? which forces VB programmers to use constants like ControlChars.Crlf and ConrolChars.Tab. The biggest disadvantage of this is , it makes your code ugly or in technical language less readable. So this is the way we use it [...]

Dot Net »

It is one of the common mistake that people compare a string with ?? or String.Empty in VB.Net or C# to find its empty. Here are few examples.
// C# Wrong Ways

if ( s == ?? )
if ( s == string.Empty )
if ( s.Equals(?”) )
if ( s.Equals ( String.Empty)
if ( string.Equals(s,?”)
if ( string.Equals ( [...]

Dot Net »

Its a good idea to check for null object reference to prevent NullReferenceException when it comes to objects but in case of Strings sometimes you get a string without any value or called as Empty string. I have faced this a lot of time when I handle exceptions and the error message ( which is [...]