Click here to Skip to main content
16,006,341 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Filewatcher VB2005 Pin
Kschuler14-Jul-06 8:46
Kschuler14-Jul-06 8:46 
GeneralRe: Filewatcher VB2005 Pin
RookieThomas14-Jul-06 23:23
RookieThomas14-Jul-06 23:23 
GeneralRe: Filewatcher VB2005 Pin
Dave Kreskowiak15-Jul-06 3:49
mveDave Kreskowiak15-Jul-06 3:49 
QuestionApplication.Restart, a better way? Pin
J Liang14-Jul-06 5:37
J Liang14-Jul-06 5:37 
AnswerRe: Application.Restart, a better way? Pin
Dave Kreskowiak14-Jul-06 6:08
mveDave Kreskowiak14-Jul-06 6:08 
AnswerRe: Application.Restart, a better way? Pin
Jun Du14-Jul-06 6:13
Jun Du14-Jul-06 6:13 
QuestionUpdate dataset Pin
ravihd14-Jul-06 3:12
ravihd14-Jul-06 3:12 
AnswerRe: Update dataset Pin
George B Gilbert14-Jul-06 6:10
George B Gilbert14-Jul-06 6:10 
'** Creat a dataview of the table in the dataset
Dim tableView As DataView = New DataView(dataSet.Tables("TableName"))

'** Filter the dataview to isolate the one row being updated
Dim sb As New StringBuilder
With sb
.Length = 0
.Append("TableColumnName")
.Append("= '")
.Append("ValueOfData")
.Append("'")
tableView.RowFilter = .ToString
End With
sb = Nothing

'** Do the update
If tableView.Count > 0 Then

'** Create a view of the row being updated
Dim tr As DataRowView
tr = tableView.Item(0)

'** Update the columns being changed
tr.Item("NameOfColumnBeingChanged") = "NewValue"
tr = Nothing

End If
tableView = Nothing

Questionhow to put a file in DLL or in any resource file ( ver 2003 ) Pin
Rizwan Bashir14-Jul-06 2:21
Rizwan Bashir14-Jul-06 2:21 
QuestionLDAP edit attribute "member" [modified] Pin
Uli N.14-Jul-06 0:26
Uli N.14-Jul-06 0:26 
AnswerRe: LDAP edit attribute "member" Pin
Uli N.21-Jul-06 12:52
Uli N.21-Jul-06 12:52 
QuestionCustom Control Pin
microuser_200013-Jul-06 22:24
microuser_200013-Jul-06 22:24 
AnswerRe: Custom Control Pin
Paul Conrad21-Jul-06 12:35
professionalPaul Conrad21-Jul-06 12:35 
QuestionProcess ID [modified] Pin
Sinchan Nikam13-Jul-06 22:21
Sinchan Nikam13-Jul-06 22:21 
AnswerRe: Process ID [modified] Pin
Dave Kreskowiak14-Jul-06 0:55
mveDave Kreskowiak14-Jul-06 0:55 
AnswerRe: Process ID Pin
Dave Kreskowiak14-Jul-06 3:59
mveDave Kreskowiak14-Jul-06 3:59 
QuestionConnection Pulling Pin
Sinchan Nikam13-Jul-06 22:14
Sinchan Nikam13-Jul-06 22:14 
AnswerRe: Connection Pulling Pin
Dave Kreskowiak14-Jul-06 0:53
mveDave Kreskowiak14-Jul-06 0:53 
GeneralRe: Connection Pulling Pin
Chris Maunder14-Jul-06 1:45
cofounderChris Maunder14-Jul-06 1:45 
GeneralRe: Connection Pulling [modified] Pin
Dave Kreskowiak14-Jul-06 3:46
mveDave Kreskowiak14-Jul-06 3:46 
QuestionAccessing CD Drives Pin
The ANZAC13-Jul-06 22:07
The ANZAC13-Jul-06 22:07 
AnswerRe: Accessing CD Drives [modified] Pin
Dave Sexton14-Jul-06 1:46
Dave Sexton14-Jul-06 1:46 
GeneralRe: Accessing CD Drives [modified] Pin
The ANZAC14-Jul-06 2:03
The ANZAC14-Jul-06 2:03 
GeneralRe: Accessing CD Drives Pin
Dave Sexton14-Jul-06 3:13
Dave Sexton14-Jul-06 3:13 
GeneralRe: Accessing CD Drives Pin
The ANZAC14-Jul-06 12:18
The ANZAC14-Jul-06 12:18 

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.