Click here to Skip to main content
16,010,673 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: how to list Windows Explorer title in running processes Pin
Dave Kreskowiak25-Nov-07 4:58
mveDave Kreskowiak25-Nov-07 4:58 
GeneralRe: how to list Windows Explorer title in running processes Pin
GuildfordG25-Nov-07 11:18
GuildfordG25-Nov-07 11:18 
GeneralRe: how to list Windows Explorer title in running processes Pin
GuildfordG25-Nov-07 13:21
GuildfordG25-Nov-07 13:21 
GeneralRe: how to list Windows Explorer title in running processes Pin
Dave Kreskowiak25-Nov-07 16:13
mveDave Kreskowiak25-Nov-07 16:13 
GeneralRe: how to list Windows Explorer title in running processes Pin
GuildfordG25-Nov-07 23:47
GuildfordG25-Nov-07 23:47 
QuestionHow to transfer data from sql server 2005 databases to foxpro database(dbf source type) Pin
Y Kesava Rao23-Nov-07 16:11
Y Kesava Rao23-Nov-07 16:11 
AnswerRe: How to transfer data from sql server 2005 databases to foxpro database(dbf source type) Pin
nishkarsh_k24-Nov-07 5:27
nishkarsh_k24-Nov-07 5:27 
QuestionSqlConnection Class Pin
AAGTHosting23-Nov-07 13:34
AAGTHosting23-Nov-07 13:34 
I was on the MSDN web site and found a function that is useful to me. Here is the function.

Public Function SelectRows(ByVal dataSet As DataSet, ByVal connectionString As String, ByVal queryString As String) As DataSet<br />
        Using connection As New SqlConnection(connectionString)<br />
            Dim adapter As New SqlDataAdapter()<br />
            adapter.SelectCommand = New SqlCommand(queryString, connection)<br />
            adapter.Fill(dataSet)<br />
            Return dataSet<br />
        End Using<br />
    End Function


Is the SqlConnection function a function that is in VB.NET or is this something I have t6o write?

When I was on the MSDN site I saw a Sql Connection Class, but am not sure if it is a class that the VB.NET program will write for me. Is it possible that it did write the function for me but it is called something different or is it in a namespace?

Here is the url where I got the code. I am getting the blue line under the SqlConnection function call. How do I fix this?
AnswerRe: SqlConnection Class Pin
Paul Conrad23-Nov-07 14:16
professionalPaul Conrad23-Nov-07 14:16 
GeneralRe: SqlConnection Class Pin
AAGTHosting23-Nov-07 17:12
AAGTHosting23-Nov-07 17:12 
GeneralRe: SqlConnection Class Pin
Paul Conrad23-Nov-07 17:24
professionalPaul Conrad23-Nov-07 17:24 
QuestionData Grid After Sort Pin
auguy23-Nov-07 11:04
auguy23-Nov-07 11:04 
QuestionTextbox validation...accept a...z and space only Pin
nosiller23-Nov-07 9:31
nosiller23-Nov-07 9:31 
AnswerRe: Textbox validation...accept a...z and space only Pin
pmarfleet23-Nov-07 11:50
pmarfleet23-Nov-07 11:50 
GeneralRe: Textbox validation...accept a...z and space only Pin
nosiller23-Nov-07 12:03
nosiller23-Nov-07 12:03 
GeneralRe: Textbox validation...accept a...z and space only Pin
Luc Pattyn23-Nov-07 13:18
sitebuilderLuc Pattyn23-Nov-07 13:18 
AnswerRe: Textbox validation...accept a...z and space only Pin
Christian Graus23-Nov-07 14:01
protectorChristian Graus23-Nov-07 14:01 
AnswerRe: Textbox validation...accept a...z and space only Pin
nlarson1124-Nov-07 3:51
nlarson1124-Nov-07 3:51 
QuestionApp.Config file... in .NET 2.0... Please HELP!!! Pin
sunsilk1023-Nov-07 7:32
sunsilk1023-Nov-07 7:32 
AnswerRe: App.Config file... in .NET 2.0... Please HELP!!! Pin
Jason Lepack (LeppyR64)23-Nov-07 8:12
Jason Lepack (LeppyR64)23-Nov-07 8:12 
GeneralRe: App.Config file... in .NET 2.0... Please HELP!!! Pin
sunsilk1023-Nov-07 8:16
sunsilk1023-Nov-07 8:16 
GeneralRe: App.Config file... in .NET 2.0... Please HELP!!! Pin
Jason Lepack (LeppyR64)23-Nov-07 8:44
Jason Lepack (LeppyR64)23-Nov-07 8:44 
GeneralRe: App.Config file... in .NET 2.0... Please HELP!!! Pin
sunsilk1023-Nov-07 12:10
sunsilk1023-Nov-07 12:10 
AnswerRe: App.Config file... in .NET 2.0... Please HELP!!! Pin
MohammadAmiry24-Nov-07 1:07
MohammadAmiry24-Nov-07 1:07 
QuestionCommand Button Controll Array Visual Basic 2005 Pin
DCAUB23-Nov-07 6:45
DCAUB23-Nov-07 6:45 

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.