What is a dialog based program
Answer / bhushan deshmukh
if u r using Visual Basic 6.0 or other GUI tool's like
Dveloper 200 / 2005 for Oracle front end. or any windows
Programming language like VC++
in Above GUI tooll's , Their are two types of Dialog Box..
those are :-............ Model and Modless dialog boxes are
their
like messege box, Font selection dialog box, Print Dialog
Box.. etc
So in vb form is also Dialog Box.. and VC++ (MFC).. Each
Form a dialog box..
so all applciation created by vb or vc++ all aplication are
dialog based..
Is This Answer Correct ? | 6 Yes | 2 No |
Diffrence between 2.0,3.0,3.5,4.0. versions of .net?
through which algorithm does the garbage collector works? how the garbage collector will understand that the object will going to be deleted?
how to data grid use in data bind?
code for connection from windows forms to sql server
What sysoption determines where the macro facility searches a specific catalog for complied macro?
if we want to move all the items that are already added in a combobox into an empty list box or vice-versa then how can it possible in vb or C# ?
suppose we have ten members of a physical file but we want the output of last 5 members only.how to achieve that?
purpose of abstraction and interface
SAS question: I have 50 fils a1,a2,...,a50. the primary key is upc. then if i want to merge all 50 files, the code is as follows, data test; merge a1 ... a50; by upc; run; we know that writing all 50 files name is time consuming, is there any standard format of this code?
Which language they use during interview?
0 Answers State Bank Of India SBI,
Given a set. Write the pseudo code to get all the subsets for the given set. Eg. Input : {1,2} Output : (),(1),(2),(1,2)
One boy has to climb steps. He can climb 1 or 2 steps at a time. Write a function that will returns number of way a boy can climb the steps. Int WaytoSteps(int n) (eg:- suppose number of steps is n=4 ,the function will return 5 (one-one-one-one ,one-one-two, one-two-one-,two-one-one, two-two)