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

.NET (Core and Framework)

 
AnswerRe: IIS not working Pin
Stephen Lintott31-Mar-09 23:47
Stephen Lintott31-Mar-09 23:47 
AnswerRe: IIS not working Pin
Pete O'Hanlon1-Apr-09 2:25
mvePete O'Hanlon1-Apr-09 2:25 
GeneralRe: IIS not working Pin
Stephen Lintott1-Apr-09 2:29
Stephen Lintott1-Apr-09 2:29 
Question.NET Reactor Code Protection Pin
dybs31-Mar-09 16:34
dybs31-Mar-09 16:34 
AnswerRe: .NET Reactor Code Protection Pin
Giorgi Dalakishvili31-Mar-09 20:45
mentorGiorgi Dalakishvili31-Mar-09 20:45 
GeneralRe: .NET Reactor Code Protection Pin
dybs1-Apr-09 3:16
dybs1-Apr-09 3:16 
AnswerRe: .NET Reactor Code Protection Pin
jmcc2k9-Oct-09 23:22
jmcc2k9-Oct-09 23:22 
QuestionUnable to get the select to work with two user input Pin
DaxKhan31-Mar-09 12:27
DaxKhan31-Mar-09 12:27 
Dim cmd As OracleCommand
Dim ds As DataSet
Dim dv As DataView
Dim da As OracleDataAdapter = New OracleDataAdapter

' This does not work.. which is what I need, Country and State are entered by the user -
cmd = New OracleCommand("Select state_code, state_name, state_status" & _
" FROM m_state" & _
" WHERE country_code = :country_code AND state_code = :state_code", objConnection)
' -------------------------------------------------------------------------------------

' This works...-----------------------------------------------------------------------
cmd = New OracleCommand("Select state_code, state_name, state_status" & _
" FROM m_state" & _
" WHERE country_code = 'USA' AND state_code = :state_code", objConnection)
' -------------------------------------------------------------------------------------

' This works...-----------------------------------------------------------------------
cmd = New OracleCommand("Select state_code, state_name, state_status" & _
" FROM m_state" & _
" WHERE country_code = :country_code AND state_code = 'FL'", objConnection)
' -------------------------------------------------------------------------------------

' Parameter for State Code...
cmd.Parameters.Add("state_code", txtState.Text)

' Parameter for Country Code...
cmd.Parameters.Add(":country_code", txtCountryText)


da.SelectCommand = cmd

' Bind Fields..
ClearBinding()


' Initialize a new instance of the DataSet object...
ds = New DataSet

' Fill the DataSet object with data...
da.Fill(ds, "m_state")

' Set the DataView object to the DataSet object...
dv = New DataView(ds.Tables("m_state"))


' Set Bindings
txtStateName.DataBindings.Add("Text", dv, "state_name")
txtStatus.DataBindings.Add("Text", dv, "state_status")
QuestionHow about speed process of qurey in local and database Pin
thyrith31-Mar-09 5:17
thyrith31-Mar-09 5:17 
AnswerRe: How about speed process of qurey in local and database Pin
Eddy Vluggen31-Mar-09 22:11
professionalEddy Vluggen31-Mar-09 22:11 
QuestionMMControl Pin
inderjmd31-Mar-09 0:03
inderjmd31-Mar-09 0:03 
Questionregister component success, but can't find one of the controls, professor analyse it. Pin
coderormnger30-Mar-09 16:53
coderormnger30-Mar-09 16:53 
AnswerRe: register component success, but can't find one of the controls, professor analyse it. Pin
Pete O'Hanlon30-Mar-09 22:04
mvePete O'Hanlon30-Mar-09 22:04 
GeneralRe: register component success, but can't find one of the controls, professor analyse it. Pin
coderormnger1-Apr-09 4:52
coderormnger1-Apr-09 4:52 
GeneralRe: register component success, but can't find one of the controls, professor analyse it. Pin
Pete O'Hanlon1-Apr-09 4:56
mvePete O'Hanlon1-Apr-09 4:56 
GeneralRe: register component success, but can't find one of the controls, professor analyse it. Pin
coderormnger1-Apr-09 5:06
coderormnger1-Apr-09 5:06 
GeneralRe: register component success, but can't find one of the controls, professor analyse it. Pin
Pete O'Hanlon1-Apr-09 8:49
mvePete O'Hanlon1-Apr-09 8:49 
GeneralRe: register component success, but can't find one of the controls, professor analyse it. Pin
coderormnger1-Apr-09 16:30
coderormnger1-Apr-09 16:30 
GeneralRe: register component success, but can't find one of the controls, professor analyse it. Pin
Roger Wright2-Apr-09 19:18
professionalRoger Wright2-Apr-09 19:18 
GeneralRe: register component success, but can't find one of the controls, professor analyse it. Pin
coderormnger7-Apr-09 17:03
coderormnger7-Apr-09 17:03 
QuestionReceive data from RTD client excel on RTD server Pin
mmiller03930-Mar-09 1:06
mmiller03930-Mar-09 1:06 
QuestionRe: Receive data from RTD client excel on RTD server Pin
mmiller03928-Apr-09 1:30
mmiller03928-Apr-09 1:30 
QuestionCommandbuilder update problem Pin
nitin_ion30-Mar-09 0:12
nitin_ion30-Mar-09 0:12 
Questioncopy embedded resources files to given folder wth vb.net Pin
shivamgupta29-Mar-09 1:28
shivamgupta29-Mar-09 1:28 
AnswerRe: copy embedded resources files to given folder wth vb.net Pin
Anubhava Dimri2-Apr-09 21:46
Anubhava Dimri2-Apr-09 21:46 

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.