The three types of DAO dynaset,snapshot,table
What are the three ADO objects?? --connection,command, recordset
The objects of ADO are 1.connection object-It is used for ADOs connection to a data store via OLE DB. 2.command object-It helps in sending SQL queries to the provider through the CommandText property,...
Define query interface,adref,release
QueryInterface is used for determining if a known component supports a specific interface.It is a mechanism in COM (microsofts Component Object Model).It uses the current interface pointer ( IUnknown)...
Font Size is the attribute of font tag in dhtml where as Fontsize is the property of font styles.
The three file types in NT ? Ntfs,macintosh(hpfs), fat
The file types in NT are
1.FAT 16
2.FAT32 and
3.NTFS
There are two methods to retrieving Sql
1) Select statement.
2) Cursor.
Is the question "Two Methods of retrieving using SQL"??
Answer -> SELECT statement, cursors
How do you declare an object in vbscript? Dim object
when you have made your object, you have to make a variable for that objectyou have made an object and called it newformnow you created a variable for your object calledvarformnow you have to wr...
Hai,
Dim obj as new class-name()
Answered by nitin sharma on 2005-05-12 02:52:10: marshalling is the process of gathering data from one or more applications or non-contiguous sources in computer storage, putting the data pieces into a message buffer, and organizing or converting the data into a format that is prescribed for a particular...
Marshalling is the process of packing/encapsulating the data when sending across the network so that the data gets transmitted without being lost. Marshalling is necessary bcoz the format in which data exists in a particular process may not be the same as existant in the network.
Hai,
Marshalling is nothing but gathering or packaging the information into message for transferring across the network requird in distributed environment .
Explain how to share outlook calendars and the type of permissions you need to assign.
What is the use of sam file?What will you do if sam file is corrupted?
there are two ways to resolve this issue,1- rebbot the system ,use F8 and start with command prompt option ,go to c:windowsrepair folder copy the sam file from there ,then go to C:WindowsSystem3...
It stores administrator password
If its get corrupted attach the hard disk to another computer and replace.
What will happen when a new asssembly is put on an old one.
When new assembly is put on an old one the versioning of the assemblies take place.It happens in this order <Major Revision>,<Minor Revision>,<Revision>,<Build version>.For exa...
C# code is the top code .cs
C# is the top code
How do you create virtual root in iis
To mark an existing virtual directory in InetpubWwwroot as a Web application using IISOpen IIS Manager and browse to the Default Web Site as shown in the previous procedures. Expand the Default Web Si...
To create a virtual directory by using IIS Manager1.In IIS Manager, expand the local computer, expand the Web Sites or FTP Sites folder, right-click the site or folder within which you want to create ...
What are the two tags for framesets
Answer #1<FRAMESET cols="33%,33%,33%"> <FRAMESET rows="*,200"> <FRAME src="contents_of_frame1.html"> &nbs...
(Active Server Page) A Web server technology from Microsoft that allows for the creation of dynamic, interactive sessions with the user. -An ASP is a Web page that contains HTML and embedded programmi...
Try using Page.loadControl(virtualpath)virtualpath=path of the2 nd user control.then add the user control to the placeholder control that u have declared on the formsomething like;protected void btn1_...
If not mistaken i guss u should put 2 countrols in the page load and one in the form load.If my answer is wrong forgive me.
Rahul
What is iunknown and what are its three parts?
IUnknown is common interfacec supported by all COM objects.The 3 member functions are
1.QueryIntrface
2.Addref
3.Release.
The COM interface class from which all other interface classes are derived. This interface allows all COM objects to manage their own lifetime, ie, to release themselves from memory when they are no longer connected to any clients.
What cursor type do you use to retrieve multiple recordsets?
Explicit cursor can be used to retrieve and return the multiple records. Ref cursor also do the same job.
What is the tag code base and why do we use it?
CODEBASE indicates the path to the directory of the applet class. CODEBASE is used for telling how to find the class file when it is not in the same directory as the web page. Do not use CODE to indicate the path, use CODEBASE.
What is the difference between webservice and webapplication?
Webservices can be implimented at any client or server place to make data secure because even programmer can not find that data while web services are used on server side. webservices use soap protocol while web application http protocol, 80% coding of banking is done by using webservices.
web services are mechanism to acess remote programmeble logical unit by using http and xml combinly called SOAP(simple object access protocol)Soap has some methods to access programmeble application l...
The DAO types are
1.dynaset-type recordset,which results through a query.
2.table-type recordsets, it represents a table in a .MDB database.
3.Snapshot-type recordset,comprises of a static copy of a set of records.