Forum: VB.NET 9 Days Ago |
| Replies: 1 Views: 120 read TextFile Line by Line hey,I know the foll. Method to read the textfile line by line. & it is also working Fine. But I want to know that method which includes EOF(End Of File).
Can Somebody tell me that method.
sFilename... |
Forum: ASP.NET May 14th, 2008 |
| Replies: 4 Views: 624 Re: Simple DropDownLisT Example If I m using the Selected Item errore are there,if instead of item I use Selected Value,no errors are there,but when i select in any item in Dropdownlist3, in dropdownlist4 no item is displayed.... |
Forum: ASP.NET May 12th, 2008 |
| Replies: 4 Views: 624 Simple DropDownLisT Example There are two dropDownLists on my form. In one DropDownList items
are-
1)BE
2)Drawing
3)PG
I want if a user selects BE in dropdownlist3 then in dropDownlist4 items are
IT, CSE, MECH |
Forum: MS SQL Apr 30th, 2008 |
| Replies: 1 Views: 736 Types of JOINS 1) INNER JOIN---I know
2)OUTER JOIN--I know
3)CROSS JOIN--I know
4)THETA JOIN--????
5)SELF JOIN--?????? |
Forum: VB.NET Apr 29th, 2008 |
| Replies: 1 Views: 235 |
Forum: VB.NET Apr 24th, 2008 |
| Replies: 4 Views: 505 |
Forum: VB.NET Apr 23rd, 2008 |
| Replies: 4 Views: 505 |
Forum: Visual Basic 4 / 5 / 6 Apr 22nd, 2008 |
| Replies: 4 Views: 1,097 Re: Copy Items from one listbox to another hi.Jx_man, ur code is copying just 1 item, i want to copy multiple selected items.
I have tried the foll. code,Check it out where I m wrong-
Private Sub Command9_Click()
For i = List1.ListCount - 1... |
Forum: Visual Basic 4 / 5 / 6 Apr 22nd, 2008 |
| Replies: 4 Views: 1,097 Copy Items from one listbox to another I want to copy the selected items from listbox1 to listbox2.
I know how to copy all the items but not selected.
Private Sub Command3_Click()
For i = 1 To List1.ListCount
List2.AddItem i
Next
End... |
Forum: Visual Basic 4 / 5 / 6 Apr 21st, 2008 |
| Replies: 1 Views: 322 Debug & Debug.Print Can somebody tell me the diff b/w Debug & Debug.Print
If we write Debug.Print "i=" & i
It gives the o/p in the immediate window.
If we write print "i=" & i
It gives the normal o/p.
But what is the... |
Forum: MS SQL Apr 10th, 2008 |
| Replies: 2 Views: 537 Re: To pull all emails that contains +,^,*,&,! Thx,It worked.
Plz see the following query-
SELECT * FROM mail3
WHERE email NOT LIKE '%@%'
or email not like '%&%'
Instead of showing the particular records ,the above query is displaying all the... |
Forum: MS SQL Apr 9th, 2008 |
| Replies: 2 Views: 537 To pull all emails that contains +,^,*,&,! --Que-4)Create a Query to pull all emails that contains
--characters +,^,*,&,!
create table mail3(email varchar(50))
insert into mail3 values('mansi.sharma@yahoo.co.in')
insert into mail3... |
Forum: MS Access and FileMaker Pro Apr 8th, 2008 |
| Replies: 1 Views: 1,164 Selecting a value from a Drop Down list 1) open the table in desihn view.
2)Select the filed u want to alter.
3)Select LOOKUP tab.
4)In display control box,Select Combobox 0r listbox.
5)Under Row Sorce TYpe,SElect Value list.
I want to... |
Forum: Visual Basic 4 / 5 / 6 Apr 5th, 2008 |
| Replies: 6 Views: 427 Re: Dialog Box Private Sub Command2_Click()
Dim response As Integer
Response=MsgBox "Have a gala shopping", vbOKCancel + vbInformation + vbDefaultButton1, "welcome to the superMarket"
If response = vbYes... |
Forum: Visual Basic 4 / 5 / 6 Apr 5th, 2008 |
| Replies: 6 Views: 427 Dialog Box Private Sub Command2_Click()
MsgBox "Have a gala shopping", vbOKCancel, "welcome to the superMarket"
End Sub
Hey, 1) I want to know how to add icons in the message Box .
2) How To Set the Default... |
Forum: Visual Basic 4 / 5 / 6 Apr 5th, 2008 |
| Replies: 3 Views: 339 Re: Comments Ya , but there is any procedure to add the comment & unblock comment to the Standard toolbar..so we can do it quickly by clicking on it. |
Forum: Visual Basic 4 / 5 / 6 Apr 5th, 2008 |
| Replies: 3 Views: 339 Comments Single line Comments---?
Multi-Line Comments--?
I dont want the description, I want how to commnet the section of code.
Ex,
Line in C, Single Line Comments- //
Multi-Line Comments-/* */ |
Forum: Visual Basic 4 / 5 / 6 Apr 4th, 2008 |
| Replies: 1 Views: 587 Default case in Select Private Sub Command1_Click()
Select Case Me.Text1.Text
Case 1
MsgBox ("U Entered 1")
Case 2
MsgBox ("U entered 2")
Case 3
MsgBox ("u entered 3")
Case Default
MsgBox ("Default") |