If we can make more than one MDI Form in VB then How? I need to make 2 MDI Forms in my project.
2 6663Post New HST Interview Questions
Explain bluetooth.
What is a join?
What do you mean by named – sql query?
If the PMON is not working then how do you identify and monitor all the processes, resources and sessions ?
what is mean by traditional accounting ?
how could you increase the speed of ontape/onbar backups ?
I seek information in starting up a radio station of my own. could you please provide me with the step by step procedure for such a mammoth-sounding task.where do i start from, copyright issues/formalities, registration and the cost approximations fo r the same..
Explain the uses of
What is the difference between iter and do? We know both are used to execute set of statements repeatedly, but what is the main difference?
how to make and display a form without title bar?
How to update a function in javascript?
In electrical locomotive engines, the DC series motors is being used as traction motor. But in new engines like in WAP7 & WAG9 the 3-phase squiral cage induction motors has replaced them. So can someone tell me the advantages of induction motor over dc seris motor in engines points of view....???
What is Online View?
What are the different points where weaving can be applied?
write a program that reads in a file and counts the number of lines, words, and characters. Your program should ask the user to input a filename. Open the file and report an error if the file does not exist or cannot be opened for some other reason. Then read in the contents of the file and count the number of lines, words, and characters in the file. Also print additional information about the file, such as the longest and shortest words, and longest and shortest lines. For simplicity, we define a word to be one or more characters ending with white space (a space, tab, carriage return, etc.). Functions for checking the types of characters can be found in the ctype.h header file, so you want to include this header file in your program. For example, the sentence below could be all that is in a file. This sentence IT 104 is taught in C++. has 32 characters, one line, and six words. The shortest line is 32 characters. The longest line is 32 characters. The shortest word is 2 characters. The longest word is 6 characters