<< < 6 7 8 9 10 11 12 13 14 15 16 > >>   Sort: Date

How can we format data inside DataGrid
How can we format data inside DataGrid? Use the DataFormatString property.
2007-10-24, 6854👍, 0💬

Does .NET support UNICODE and how do you know it supports
Does .NET support UNICODE and how do you know it supports? Yes .NET definitely supports UNICODE. Try to see sizeof (char), you will see 2 bytes. Char type data type stores only one character which needs only 8 bits but because .NET has to support UNICODE it uses 16 bits to store the same.
2007-11-01, 6847👍, 0💬

What is ISO?
What is ISO? ISO 9000 is a family of standards for quality management systems. ISO 9000 is maintained by ISO, the International Organization for Standardization and is administered by accreditation and certification bodies. Some of the requirements in ISO 9001 (which is one of the standards in the I...
2008-04-14, 6840👍, 0💬

How To Download and install PSP Evaluation
How To Download and install PSP Evaluation? - PSP Tutorials - Fading Images to Background Colors with PSP Go to http://www.jasc.com/ Download an evaluation copy of Paint Shop Pro 6.0 Evaluation - psp602ev.exe (about 14,580KB) Run psp602ev.exe and install it at \psp Run \psp\psp.exe. If you see this ...
2007-05-12, 6840👍, 0💬

Using Tables to Structure Forms
How can I use tables to structure forms Small forms are sometimes placed within a TD element within a table. This can be a useful for positioning a form relative to other content, but it doesn't help position the form-related elements relative to each other. To position form-related elements relativ...
2007-03-03, 6833👍, 0💬

What is the method to customize columns in DataGrid
What is the method to customize columns in DataGrid? Use the template column.
2007-10-24, 6825👍, 0💬

How Is the Width a Parent Element Related to Child Elements
How Is the Width a Parent Element Related to Child Elements? - CSS Tutorials - Understanding Multiple Element Formatting Rules If child block elements are enclosed in a parent block element, the width of the parent element is related to child block elements based on the following rules: The full wid...
2007-05-11, 6823👍, 0💬

J2SDK 1.5 and J2SDK 5.0
What's the difference between J2SDK 1.5 and J2SDK 5.0? There is no difference, Sun Microsystems just re-branded this version.
2007-03-03, 6820👍, 0💬

What Is Finalization
What is the purpose of finalization? The purpose of finalization is to give an unreachable object the opportunity to perform any cleanup processing before the object is garbage collected.
2007-03-03, 6814👍, 0💬

How do I debug thread
How do I debug thread ? This window is only seen when the program is running in debug mode. In windows one of the window is “Threads”.
2007-10-22, 6812👍, 0💬

How To Control Table Widths
How To Control Table Widths? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells Usually, browsers will calculate the table width based on the content widths of table cells. If you want to control the width of a table, you need to use the "width" attribute, which allows you to set the table...
2007-05-11, 6806👍, 0💬

How To Create an Add-to-NewsGator Button on Your Website
How To Create an Add-to-NewsGator Button on Your Website? - RSS FAQs - Adding Your Feeds to RSS News Readers and Aggregators If you like the "Add to NewsGator" button showing on this site, you can create one for your own Web site by following the tutorial exercise below: 1. Create an RSS Atom 1.0 fe...
2007-05-12, 6804👍, 0💬

What are types of compatibility in VB6?
.NET INTERVIEW QUESTIONS - What are types of compatibility in VB6? There are three possible project compatibility settings: * No Compatibility * Project Compatibility * Binary Compatibility No Compatibility With this setting, new class ID’s, new interface ID’s and a new type library ID will be gener...
2010-01-26, 6798👍, 0💬

What is shadowing
What is shadowing ? When two elements in a program have same name, one of them can hide and shadow the other one. So in such cases the element which shadowed the main element is referenced. Below is a sample code, there are two classes “ClsParent” and “ClsShadowedParent”. In “ClsParent” there is a...
2007-10-23, 6795👍, 0💬

If locking is not implemented what issues can occur
If locking is not implemented what issues can occur? IFollowing are the problems that occur if you do not implement locking properly in SQL SERVER. Lost Updates Lost updates occur if you let two transactions modify the same data at the same time, and the transaction that completes first is lost. You...
2007-10-25, 6793👍, 0💬

Clone of Map Objects
Jack developed a program by using a Map container to hold key/value pairs. He wanted to make a change to the map. He decided to make a clone of the map in order to save the original data on side. What do you think of it? If Jack made a clone of the map, any changes to the clone or the original map w...
2007-03-03, 6793👍, 0💬

mysql_fetch_object() and mysql_fetch_array() Functions
What is the difference between mysql_fetch_object() and mysql_fetch_array() functions in PHP? mysql_fetch_object() fetches the current row of data from the query result associated with the specified result identifier. The row is returned as an object. See the example code: &lt;?php $result = mys...
2007-02-27, 6792👍, 0💬

What is the concept of XPOINTER
What is the concept of XPOINTER? XPOINTER is used to locate data within XML document. XPOINTER can point to a particular portion of a XML document, for instance address.xml#xpointer(/descenda nt::streetnumber[@id=9])So the above XPOINTER points streetnumber=9 in “address.xml”.
2007-10-31, 6786👍, 0💬

What Is the Difference between Formal Parameters and Actual Parameters
What Is the Difference between Formal Parameters and Actual Parameters? - Oracle DBA FAQ - Creating Your Own PL/SQL Procedures and Functions Formal parameter and actual parameter are two different terms related parameters used in the procedures and functions: A formal parameter is a term used to ref...
2007-04-25, 6785👍, 0💬

What is normalization? What are different types of normalization
What is normalization? What are different types of normalization? It is set of rules that have been established to aid in the design of tables that are meant to be connected through relationships. This set of rules is known as Normalization. Benefits of normalizing your database will include: 1. Avo...
2007-10-25, 6783👍, 0💬

Is There Any XSD File to Validate Atom Feed Files
Is There Any XSD File to Validate Atom Feed Files? - RSS FAQs - Atom Feed Introduction and File Generation A XSD (XML Schema Definition) file contains a set of definitions of XML elements and attributes to form a new XML based language. The same DTD file can be used to validate XML files that comply...
2007-05-12, 6781👍, 0💬

How To Use SELECT Statement to Count the Number of Rows
How To Use SELECT Statement to Count the Number of Rows? - Oracle DBA FAQ - Understanding SQL SELECT Query Statements If you want to count the number of rows, you can use the COUNT(*) function in the SELECT clause. The following select statement returns the number of rows in the "department" table: ...
2007-04-20, 6777👍, 0💬

Shift Operators
What will be printed as the result of the operation below: main() { int x=5; printf("%d,%d,%d\n",x,x&lt ;&lt;2,x&gt;&gt;2) ;} As x = 5 = 0x0000,0101; so x &lt;&lt; 2 -&lt; 0x0001,0100 = 20; x &gt;&gt; 2 -&gt; 0x0000,0001 = 1. Therefore, the answer is 5, 20, 1.
2007-02-26, 6777👍, 0💬

What Happens to Your Transactions When ERROR 1213 Occurred
What Happens to Your Transactions When ERROR 1213 Occurred? - MySQL FAQs - Transaction Management: Commit or Rollback If your transaction receives the "Deadlock found when trying to get lock" - ERROR 1213, MySQL server automatically terminates your transaction and rolls back your data changes of the...
2007-05-11, 6771👍, 0💬

<< < 6 7 8 9 10 11 12 13 14 15 16 > >>   Sort: Date