| Back to Questions Page |
| |
| Question |
I have two combobox .. and i have some items in both combobox
now i need to check the item in both combobox if same item
is Present in both combobox i need to display that item in
message box |
Rank |
Answer Posted By |
|
Question Submitted By :: Baskar |
| This Interview Question Asked @ CSS , Wipro |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | For inti As Integer = 0 To ComboBox1.Items.Count - 1
For intj As Integer = 0 To ComboBox2.Items.Count - 1
If ComboBox1.Items(inti).ToString =
ComboBox2.Items(intj).ToString Then
MessageBox.Show(ComboBox1.Items(inti))
End If
Next
Next  |
| Usha |
| |
| |
| Question |
how barcode create in the report |
Rank |
Answer Posted By |
|
Question Submitted By :: Amarkavi |
| This Interview Question Asked @ Wipro |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Its very easy.
1-Take a barcode font like we used Arial, Time new Roman
2-Install this font at window fonts directory
3-Use Steric (*) at both ends of a field of Report with the
help of double/single commas
4.Change this field Font Like from Time new roman to
Barcode font
e.g Bar is field that contain digit from 1 to 8 as shown
below
*12345678*
After changing font these digit were converted into Black
Lines mean barcode
|||||||||||||||
5-Take print of barcode and enjoy.
If you feel any problem then email me at
salmansahb@hotmail.com and i will furhter send you font or
report.  |
| Muhammad Sulman Saeed |
| |
| |
| Question |
How insert recored in the database |
Rank |
Answer Posted By |
|
Question Submitted By :: Amarkavi |
| This Interview Question Asked @ Wipro |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | insert into <tablename> values (Parm1,parm2....)  |
| Sesu |
| |
| |
|
|
| |
| Question |
We are facing problem with the compatibilty of IE 7 and IE
6.We are calling a showModal window that is working fine in
IE6 but with IE7 it opens a new Window and Data is not
getting poputaled.In some pages it Gives an error "The
webpage you are viewing is trying to Close the window.Do
you want to close this window". |
Rank |
Answer Posted By |
|
Question Submitted By :: Kavita |
| This Interview Question Asked @ Wipro |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | <base target="_self"> is the only available fix. You can
delete all the cache & offline files from your browser.  |
| Sajid |
| |
| |
| Question |
What are the new events in textbox that has been included
in VB ? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Validate  |
| Sajid |
| |
| |
| Question |
what is the Difference between listbox and combo box? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | In List Box we have to choose one of the option from the
drop down list
In Combo just like radio button we have to choose any one  |
| Venkateswaran |
| |
| |
| Answer | ListBox is used to select one item out of diffenrent we
have.
But
ComboBox is used to enter an item at run time.  |
| Venkatesh_kumar |
| |
| |
| Answer | in ListBox u can select multiple items.
but in Combo box u can select only one item.  |
| Ashish Gupta |
| |
| |
| Answer | The listbox control is used to display a list of items to a
user.
Combobox control is used to display a drop- down list of
items . It is a combination of a text box in which a user
enter an items,and a drop-downlist from which the user
selects an item.  |
| Teepu |
| |
| |
| Answer | In listbox we can select more than one item.
but in case of combobox we dont have that chance,we have to
select only one item from the list of items.  |
| Sree |
| |
| |
| Answer | 1) Combo Box:
a. User should be able to enter text in it.
b. Pressing the arrow should give list of options available
to the user. List can be scrollable but user should not be
able to type in.
c. Pressing Ctrl-F4 should open the list box.
d. Pressing a letter should bring the first item in the list
starting with the same letter.
e. Items should be in alphabetical
order in any list.
f. Selected item should be displayed on the list.
g. There should be only one blank space in the
dropdown list.
2) List Boxes:
a. Should allow single select, either by mouse or
arrow keys.
b. Pressing any letter should take you to the first element
starting with that letter
c. If there are view/open button, double clicking on icon
should be mapped to these behaviour.
d. Make sure that all the data can be seen using
scroll bar.  |
| Shivanand G |
| |
| |
|
| |
|
Back to Questions Page |