Click here to Skip to main content
15,923,789 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Create ActiveX control with .net 4.0 Pin
awu2523-Jun-10 4:41
awu2523-Jun-10 4:41 
GeneralRe: Create ActiveX control with .net 4.0 Pin
Not Active23-Jun-10 5:22
mentorNot Active23-Jun-10 5:22 
GeneralRe: Create ActiveX control with .net 4.0 Pin
awu2523-Jun-10 16:57
awu2523-Jun-10 16:57 
GeneralRe: Create ActiveX control with .net 4.0 Pin
Pete O'Hanlon23-Jun-10 21:56
mvePete O'Hanlon23-Jun-10 21:56 
GeneralRe: Create ActiveX control with .net 4.0 Pin
Pete O'Hanlon23-Jun-10 7:39
mvePete O'Hanlon23-Jun-10 7:39 
AnswerRe: Create ActiveX control with .net 4.0 Pin
Dave Kreskowiak23-Jun-10 3:13
mveDave Kreskowiak23-Jun-10 3:13 
QuestionXML Import Failing on XMLDocument.Load: Unexpected end of file has occurred. Pin
D.Dubya22-Jun-10 4:07
D.Dubya22-Jun-10 4:07 
QuestionDifferent query but get same result Pin
Naunt21-Jun-10 23:05
Naunt21-Jun-10 23:05 
Dear all,

Please help me ...

I want to add two datatable in dataset. I did as below code. when adatapter fill to 2nd table. It fill with first query statement.
So both table get same result.
Want to know how to get different result.
Dim acon As New SqlConnection(ConfigurationManager.ConnectionStrings("DOCDBDWHConnectionString").ConnectionString)
            Dim acmd As New SqlCommand()
            Dim sSql As String
            acon.Open()
            sSql = "select distinct vessel_code,vessel_desc from D4A_RAW_BLP"
            acmd.Connection = acon
            acmd.CommandText = sSql

            'Pull vessel code
            Dim dataset As New DataSet
            Dim adpvsl As New SqlDataAdapter
            Dim adpvoy As New SqlDataAdapter
            adpvsl.SelectCommand = acmd
            adpvsl.Fill(dataset, "Vessel")

            'Pull voyageno
            sSql = ""
            sSql = "select distinct voyage_no,vessel_code from D4A_RAW_BLP where vessel_code in (select distinct vessel_code from D4A_RAW_BLP where vessel_code<>'') order by vessel_code"

            adpvoy.Fill(dataset, "voyage")


Thanks and best Regards
AnswerRe: Different query but get same result Pin
Pete O'Hanlon21-Jun-10 23:28
mvePete O'Hanlon21-Jun-10 23:28 
GeneralRe: Different query but get same result Pin
Naunt22-Jun-10 1:17
Naunt22-Jun-10 1:17 
GeneralRe: Different query but get same result Pin
Pete O'Hanlon22-Jun-10 1:47
mvePete O'Hanlon22-Jun-10 1:47 
QuestionPage.ClientScript.RegisterClientScriptBlock Not Working in my page Pin
jintalPatel21-Jun-10 0:54
jintalPatel21-Jun-10 0:54 
AnswerRe: Page.ClientScript.RegisterClientScriptBlock Not Working in my page Pin
Peace ON21-Jun-10 1:42
Peace ON21-Jun-10 1:42 
GeneralRe: Page.ClientScript.RegisterClientScriptBlock Not Working in my page Pin
jintalPatel21-Jun-10 3:12
jintalPatel21-Jun-10 3:12 
GeneralRe: Page.ClientScript.RegisterClientScriptBlock Not Working in my page Pin
Dave Kreskowiak21-Jun-10 5:41
mveDave Kreskowiak21-Jun-10 5:41 
AnswerRe: Page.ClientScript.RegisterClientScriptBlock Not Working in my page Pin
Abhijit Jana21-Jun-10 2:21
professionalAbhijit Jana21-Jun-10 2:21 
GeneralRe: Page.ClientScript.RegisterClientScriptBlock Not Working in my page Pin
Not Active21-Jun-10 2:26
mentorNot Active21-Jun-10 2:26 
GeneralRe: Page.ClientScript.RegisterClientScriptBlock Not Working in my page Pin
Abhijit Jana21-Jun-10 2:35
professionalAbhijit Jana21-Jun-10 2:35 
QuestionHow can i see the metadata of the assembly ? Pin
Yanshof20-Jun-10 22:47
Yanshof20-Jun-10 22:47 
AnswerRe: How can i see the metadata of the assembly ? Pin
Abhinav S21-Jun-10 1:18
Abhinav S21-Jun-10 1:18 
AnswerRe: How can i see the metadata of the assembly ? Pin
Peace ON21-Jun-10 1:35
Peace ON21-Jun-10 1:35 
QuestionI want to develop any website Pin
AkyeaW18-Jun-10 22:18
AkyeaW18-Jun-10 22:18 
AnswerRe: I want to develop any website Pin
Richard MacCutchan18-Jun-10 23:04
mveRichard MacCutchan18-Jun-10 23:04 
AnswerRe: I want to develop any website Pin
Ankur\m/19-Jun-10 0:57
professionalAnkur\m/19-Jun-10 0:57 
AnswerRe: I want to develop any website Pin
Peace ON21-Jun-10 1:03
Peace ON21-Jun-10 1:03 

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.