Click here to Skip to main content
15,911,891 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Treeview question Pin
KreativeKai7-Sep-06 9:20
professionalKreativeKai7-Sep-06 9:20 
AnswerRe: Treeview question Pin
salysle7-Sep-06 13:15
salysle7-Sep-06 13:15 
Questioneditable datagrid column Pin
vidhu raj7-Sep-06 5:03
vidhu raj7-Sep-06 5:03 
AnswerRe: editable datagrid column Pin
KreativeKai7-Sep-06 8:30
professionalKreativeKai7-Sep-06 8:30 
Questionprocedure working fine with oracle is not working when i call from vb Pin
Mohamed nishar7-Sep-06 4:48
Mohamed nishar7-Sep-06 4:48 
QuestionFunction to reverse a number Pin
dcomf7-Sep-06 4:24
dcomf7-Sep-06 4:24 
AnswerRe: Function to reverse a number Pin
aniskhan7-Sep-06 5:04
aniskhan7-Sep-06 5:04 
AnswerRe: Function to reverse a number Pin
aniskhan7-Sep-06 5:35
aniskhan7-Sep-06 5:35 
[code]Public Function clean(ByVal str1 As String, ByVal str2 As String) As String
Dim temp As String = ""
Dim f As Boolean

For i As Integer = 0 To str1.Length - 1
f = True

For j As Integer = 0 To str2.Length - 1
If str1.Chars(i) = str2.Chars(j) Then
f = False
End If

Next

If f Then
temp += str1.Chars(i)
End If

Next

Return temp
End Function
[/code]
AnswerRe: Function to reverse a number Pin
Guffa7-Sep-06 8:28
Guffa7-Sep-06 8:28 
QuestionHow to update a table Pin
cstrader2327-Sep-06 2:17
cstrader2327-Sep-06 2:17 
AnswerRe: How to update a table Pin
Nikhil Bandekar7-Sep-06 23:30
Nikhil Bandekar7-Sep-06 23:30 
GeneralRe: How to update a table Pin
cstrader2328-Sep-06 2:58
cstrader2328-Sep-06 2:58 
AnswerRe: How to update a table Pin
Dave Kreskowiak8-Sep-06 3:18
mveDave Kreskowiak8-Sep-06 3:18 
GeneralRe: How to update a table Pin
cstrader2328-Sep-06 3:27
cstrader2328-Sep-06 3:27 
GeneralRe: How to update a table Pin
cstrader2328-Sep-06 3:31
cstrader2328-Sep-06 3:31 
GeneralRe: How to update a table Pin
Dave Kreskowiak8-Sep-06 6:41
mveDave Kreskowiak8-Sep-06 6:41 
QuestionThe source file has changed Pin
KreativeKai7-Sep-06 2:12
professionalKreativeKai7-Sep-06 2:12 
AnswerRe: The source file has changed Pin
_mubashir7-Sep-06 21:31
_mubashir7-Sep-06 21:31 
AnswerRe: The source file has changed Pin
A*****11-Sep-06 13:51
A*****11-Sep-06 13:51 
GeneralRe: The source file has changed Pin
KreativeKai12-Sep-06 1:25
professionalKreativeKai12-Sep-06 1:25 
Questionlist view Pin
Hasan Jaffal7-Sep-06 1:59
Hasan Jaffal7-Sep-06 1:59 
AnswerRe: list view Pin
H@is@here7-Sep-06 11:14
H@is@here7-Sep-06 11:14 
GeneralRe: list view [modified] Pin
Hasan Jaffal7-Sep-06 13:43
Hasan Jaffal7-Sep-06 13:43 
GeneralRe: list view Pin
Hasan Jaffal7-Sep-06 14:11
Hasan Jaffal7-Sep-06 14:11 
GeneralRe: list view Pin
H@is@here9-Sep-06 16:29
H@is@here9-Sep-06 16:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.