Click here to Skip to main content
15,868,090 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Questionhow to create a data report Pin
akosidandan16-Mar-09 23:57
akosidandan16-Mar-09 23:57 
AnswerRe: how to create a data report Pin
Eddy Vluggen17-Mar-09 0:03
professionalEddy Vluggen17-Mar-09 0:03 
AnswerRe: how to create a data report Pin
Steven J Jowett17-Mar-09 0:04
Steven J Jowett17-Mar-09 0:04 
QuestionRe: how to create a data report Pin
akosidandan17-Mar-09 1:43
akosidandan17-Mar-09 1:43 
AnswerRe: how to create a data report Pin
Steven J Jowett17-Mar-09 2:01
Steven J Jowett17-Mar-09 2:01 
QuestionRe: how to create a data report Pin
akosidandan17-Mar-09 2:15
akosidandan17-Mar-09 2:15 
AnswerRe: how to create a data report Pin
Anubhava Dimri17-Mar-09 19:10
Anubhava Dimri17-Mar-09 19:10 
Questioncannot get the value Pin
zaimah16-Mar-09 22:51
zaimah16-Mar-09 22:51 
hi... im trying to convert a code according to my list.. my list in a table are:
<folder> <portal>
C0014 SEJATI
BRT04 BRT01
MBS01 MBSB
MBS02 MBSB
C0015 SEJATI

when i call

convertCoop(coop, portal)

error "Value cannot be null.Parameter name: dataSet"

what does it mean?

Private Sub convertCoop(ByVal coop As String, ByVal portal As String)

        Dim conn1 As New SqlClient.SqlConnection("Data Source=10.0.0.70;User ID= sysadm;Password=sysadm;Initial Catalog=SPGA_Latihan;Persist Security Info=True;")
        Dim comm As SqlClient.SqlDataAdapter = Nothing
        Dim ds As DataSet = Nothing


        Try
            Dim strSQL2 As String = "SELECT folder, portal FROM kodPortal WHERE folder ='" & coop & "'"

            conn1.Open()
            comm = New SqlClient.SqlDataAdapter(strSQL2, conn1)
            comm.Fill(ds, "kodPortal")

            portal = ds.Tables(0).Rows(0).Item("portal")

            conn1.Close()

        Catch ex As Exception

            MsgBox(ex.Message)

        Finally
            If Not conn1 Is Nothing And conn1.State = ConnectionState.Open Then
              conn1.Close()
            End If
            conn1 = Nothing
            comm = Nothing
        End Try
    End Sub

AnswerRe: cannot get the value Pin
Christian Graus16-Mar-09 22:57
protectorChristian Graus16-Mar-09 22:57 
QuestionRe: cannot get the value Pin
zaimah17-Mar-09 17:35
zaimah17-Mar-09 17:35 
AnswerRe: cannot get the value Pin
Rupesh Kumar Swami16-Mar-09 23:19
Rupesh Kumar Swami16-Mar-09 23:19 
QuestionCustom properties Pin
udikantz16-Mar-09 22:08
udikantz16-Mar-09 22:08 
AnswerRe: Custom properties Pin
Dave Kreskowiak18-Mar-09 7:02
mveDave Kreskowiak18-Mar-09 7:02 
Questionfor each Pin
moonshaddow16-Mar-09 18:55
moonshaddow16-Mar-09 18:55 
AnswerRe: for each Pin
Christian Graus16-Mar-09 19:00
protectorChristian Graus16-Mar-09 19:00 
GeneralRe: for each Pin
moonshaddow16-Mar-09 19:04
moonshaddow16-Mar-09 19:04 
GeneralRe: for each Pin
Christian Graus16-Mar-09 19:12
protectorChristian Graus16-Mar-09 19:12 
GeneralRe: for each Pin
moonshaddow16-Mar-09 19:31
moonshaddow16-Mar-09 19:31 
GeneralRe: for each Pin
Christian Graus16-Mar-09 21:11
protectorChristian Graus16-Mar-09 21:11 
GeneralRe: for each Pin
moonshaddow16-Mar-09 21:15
moonshaddow16-Mar-09 21:15 
QuestionHow I create a signout code in asp.net 2 Pin
anilgokulam116-Mar-09 18:29
anilgokulam116-Mar-09 18:29 
AnswerRe: How I create a signout code in asp.net 2 Pin
Christian Graus16-Mar-09 18:41
protectorChristian Graus16-Mar-09 18:41 
QuestionHow to manipulate Windows forms? Pin
al200616-Mar-09 18:24
al200616-Mar-09 18:24 
AnswerRe: How to manipulate Windows forms? Pin
al200616-Mar-09 18:31
al200616-Mar-09 18:31 
AnswerRe: How to manipulate Windows forms? Pin
Kenny McKee16-Mar-09 18:38
Kenny McKee16-Mar-09 18:38 

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.