Data Warehousing (1107) Databases (3004) JAVA Related 2673) MainFrames (975) Microsoft Related (2296) Networking (553)
Operating Systems (919) Programming (3254) SAP (2318) Testing FAQS (1674) Testing Material (252) Web Related (994)

what is '1000 projects'?

'fullinterview.com' is a educational content website dedicated to finding and realizing final year projects for btech, be, mtech, mca students, here you can search, find your projects and get guidance from experts the below are the different technological projects.
visual Studio projects .net projects, asp projects, c & ds projects, c++ projects (all), cold fusion projects, delphi projects, java projects, perl projects, php projects, sql projects, vc++ projects, visual basic projects.

how it works?

well, everything on this site is submitted by the student and professional community. after you submit your project, it is being verified and approved by our administrator. after approval, other people can read/discuss it, save to favorites.

more number of projects?

here you can find morethan 1000 projects on different technologies, if u want to get more projects please visit our sister sites www.fullinterview.com & Chetanasprojects.com


Category Articles
Which controls have refresh method, clear method
Added on Thu, Jan 28, 2010
Datagrid,listbox,combobox,label,button have refresh methodand textbox has clear methodalmost all controls have refresh method Read More
What is the difference between Msgbox Statement and MsgboxQ function
Added on Thu, Jan 28, 2010
MsgBox is a built in VB function which displays a Message Box and MsgBoxQ is a function defined by the user. Read More
Which property of textbox cannot be changed at runtime and what?s the maximum size of a textbox?
Added on Thu, Jan 28, 2010
MultiLine Property No limits Read More
Explain about the security vulnerabilities for VBA?
Added on Thu, Jan 28, 2010
Microsoft Visual basic has its host of problems one such being macros, Macros can be created which can create a havoc for a programmer with good intentions. Also the security issue rests in the hands of the user and not the programmer as such. A... Read More
How do you use the Getsetting and Savesetting functions to read and write registry settings?
Added on Thu, Jan 28, 2010
A computer registry can be used to store configuration settings and application initialization. We can use Getsetting function to read registry settings and save settings function to write registry settings. Application name, section, key, setting,... Read More
State about the interpretation features of VBA?
Added on Thu, Jan 28, 2010
VBA is licensed to Microsoft and this compatible with and only Microsoft products. Code written is compiled by an intermediate language called P-code and this is stored in hosting applications such as Excel, Word and Access. The intermediate code is... Read More
How to register a component?
Added on Thu, Jan 28, 2010
To register component use run command prompt type: c: regsvr32 nameofcomp Read More
3 main differences between flexgrid control and dbgrid control
Added on Thu, Jan 28, 2010
1. Datagrid is Editable, flexgrid is Diplay only. 2. DBGrid allows full data binding while MSFlexGrid allows read-only binding 3. MSFlex grid is smaller and allows cell merging while Datagrid is larger and does not allow cell merging Read More
Type Library and what is its purpose
Added on Thu, Jan 28, 2010
Type libraries are files that explicitly describe some or all of the contents of components. This includes information about the methods, properties, constants, and other members exposed by the component. Development tools such as Visual Basic make... Read More
Benefit of wrapping database calls into MTS transactions
Added on Thu, Jan 28, 2010
If database calls are made within the context of a transaction, aborting the transaction will undo and changes that occur within that transaction. This removes the possibility of stranded or partial data. Read More
State the difference between visual basic, VB script and visual basic applications
Added on Thu, Jan 28, 2010
Visual basic is useful if you are planning to develop your programs from scratch. This language helps you in developing Active x controls, exe files, etc. Visual script is a powerful tool, through which you can create small scale applications on... Read More
Name the platforms through which visual basic applications are available
Added on Thu, Jan 28, 2010
Most of the visual basic applications are available on 32 bit Intel platforms. These applications also run on many of the windows software systems such as server 2003, XP, Vista, etc. Read More
Explain about function pointers?
Added on Thu, Jan 28, 2010
Visual basic applications have very rich and flexible applications but there is one limitation when using pointer function. Windows API has limited support for function pointers because it has the ability to use but not the functional support to call... Read More
How can we use data validation function in VBA?
Added on Thu, Jan 28, 2010
Data validation is an important concept in VBA. Application procedure and a custom dialog box can be used to correct input errors. You can assign an application procedure to the frame of a dialog box. Error message or custom dialog box can be... Read More
What do ByVal and ByRef mean and which is the default?
Added on Thu, Jan 28, 2010
If you pass an argument by reference when calling a procedure, the procedure access to the actual variable in memory. As a result, the variable's value can be changed by the procedure. If you pass an argument by value when calling a procedure,... Read More
What does Option Explicit refer to?
Added on Thu, Jan 28, 2010
Option Explicit makes the declaration of Variables Mandatory Read More
What are the ADO objects? Explain them.
Added on Thu, Jan 28, 2010
The ADO objects are: ? Command ? Connection ? Error ? Field ? Parameter ? Property ? Record ? RecordSet ? Stream Read More
To set the command button for ESC, Which property needs to be changed?
Added on Thu, Jan 28, 2010
set cancel property to true Ex: button1.cancel = true Read More
Which property of menu cannot be set at run time
Added on Thu, Jan 28, 2010
Name property cannot set at run time Read More
Which Property is used to compress a image in image control?
Added on Thu, Jan 28, 2010
strech Read More
VB and Object Oriented Programming
Added on Thu, Jan 28, 2010
VB do supports oops. Polymorphism - Yes , Encapsulation -Yes, Inheritance - NO Read More
Advantage of ActiveX Dll over Active Exe
Added on Thu, Jan 28, 2010
Advantages of ActiveX Dll 1) An in-process component shares its client?s address space, so property and method calls don?t have to be marshaled. This results in much faster performance. Disadvantages of ActiveX Dll 1) If an unhandled error... Read More
Name of the control used to call a windows application
Added on Thu, Jan 28, 2010
OLE is the control used to call a windows application. Read More
Constructors and distructors
Added on Thu, Jan 28, 2010
when we initialize the form at that time if we want to set any variable's value then we can set it by defining in constructor. constructor 's name always same as class name.and destructor is used to recover memory occupied by any variable... Read More
I would like to do the following. If cell A1 contains "Hello" and if the focus is on A1 and if the Enter key is pressed, then the focus should go to B2 and a MsgBox should appear. I think this can be done with key events, something like OnK
Added on Thu, Jan 28, 2010
Use KeyAscii and trap enter(32). Read More
What was introduced to Visual Basic to allow the use of Callback Functions?
Added on Thu, Jan 28, 2010
DTPicker Read More
What methods are called from the ObjectContext object to inform MTS that the transaction was successful or unsuccessful
Added on Thu, Jan 28, 2010
setabort and setcomplete Read More
What are the different compatibility types when we create a COM component?
Added on Thu, Jan 28, 2010
No compatibility - creates new GUIDproject compatibility binary compatibility - maintains the references Read More
Name the four different cursor and locking types in ADO and describe them briefly
Added on Thu, Jan 28, 2010
Cursor types:1. Forwardonly, 2. Static, 3. Keyset 4. Dyanmic Lock types : 1. lockpessimistic, 2. lockoptimistic,3. lockbatchoptimistic 4. lockreadonly Read More
Explain about visual basic and its importance?
Added on Thu, Jan 28, 2010
Microsoft holds license for Visual basic applications and it has been developing that language. Visual basic applications have an embedded programming environment which assists programmers in developing custom solutions by using almost all features... Read More
Define and explain about COM add-ins?
Added on Thu, Jan 28, 2010
COM add-ins are software program`s which are integrated into an application and they add already built in features to an existing application. They have common architecture across multiple applications which help in deploying applications much faster... Read More
Explain about line option explicit?
Added on Thu, Jan 28, 2010
Line explicit function makes the compiler to identify all the variables which are not specified by the dim statement. This command significantly reduces the problem of type errors. This is used extensively because VBA deals with information rich... Read More
Give technical reasons which made Microsoft withdraw its support for VBA in Mac?
Added on Thu, Jan 28, 2010
The reasons which made Microsoft drop its support to VBA are as follows, Microsoft visual basic relies heavily on machine code which was written for Power PC architecture. Also it would take another two years for developing VBA support for its... Read More
How can you format expressions by using VBA?
Added on Thu, Jan 28, 2010
Format functions can be used to format many of the expressions such as currency, time, date, percentages and numbers. These functions are much simpler to use in VBA. User defined date, numeric and string formats are present in many of the... Read More
What forms should be used for Complex user Input?
Added on Thu, Jan 28, 2010
Userforms should be used for complex user input. When an application input has non text as an input it is advisable to use Userforms rather than the input boxes. When you are using Userforms a user can give input any number of times which is not the... Read More
Explain about insert module and Goal Seek functions present in VBA
Added on Thu, Jan 28, 2010
The chief use of VBA is to make use of its special function which helps in repeated actions. Goal seek function helps to reduce manual entry of the code each and every time. This solves the problem of repeated function entry by automating functions... Read More
How can we dial a phone number
Added on Thu, Jan 28, 2010
Shell command present in VBA can be used to start the dialer present in windows operating system. Phone number can be used to connect to your modem. With the use of shell and sendkeys you can dial to your user. Shell starts windows application and... Read More
Which controls can not be placed in MDI?
Added on Thu, Jan 28, 2010
The Controls which do not have Align property can't be placed on MDI Form. E.g., Picturebox only has Align property in Standard Components of VB other controls dont have align property an hence can't be drawn on MDI Form. Read More
State some general uses for Visual basic applications in general context?
Added on Thu, Jan 28, 2010
Visual basic can be used within almost all Microsoft products such as Map point, Visio, Auto cad, Word perfect, ArcGIS, word, excel, etc. With VBA you can control many functions such as host application, menus, toolbars, user interface, import and... Read More





   copy right ® all rights reserved by www.fullinterview.com