Click here to Skip to main content
15,907,906 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: VB.NET Handle SQL DB in Multi user application Pin
Thomas Krojer23-May-11 23:13
Thomas Krojer23-May-11 23:13 
GeneralRe: VB.NET Handle SQL DB in Multi user application Pin
Dave Kreskowiak24-May-11 1:21
mveDave Kreskowiak24-May-11 1:21 
GeneralRe: VB.NET Handle SQL DB in Multi user application Pin
All Time Programming24-May-11 1:36
All Time Programming24-May-11 1:36 
GeneralRe: VB.NET Handle SQL DB in Multi user application Pin
Dave Kreskowiak24-May-11 1:55
mveDave Kreskowiak24-May-11 1:55 
GeneralRe: VB.NET Handle SQL DB in Multi user application Pin
All Time Programming24-May-11 1:58
All Time Programming24-May-11 1:58 
Questiongetting value of the textbox to be used in crystal report Pin
clarence_1323-May-11 16:35
clarence_1323-May-11 16:35 
AnswerRe: getting value of the textbox to be used in crystal report Pin
thatraja23-May-11 17:17
professionalthatraja23-May-11 17:17 
GeneralRe: getting value of the textbox to be used in crystal report Pin
clarence_1325-May-11 14:57
clarence_1325-May-11 14:57 
Cry | :(( hey thatraja, do you know how to do this in vb6?

Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button1.Click

Dim cryRpt As New ReportDocument
cryRpt.Load("PUT CRYSTAL REPORT PATH HERE\CrystalReport1.rpt")

Dim crParameterFieldDefinitions As ParameterFieldDefinitions
Dim crParameterFieldDefinition As ParameterFieldDefinition
Dim crParameterValues As New ParameterValues
Dim crParameterDiscreteValue As New ParameterDiscreteValue

crParameterDiscreteValue.Value = TextBox1.Text
crParameterFieldDefinitions = -
cryRpt.DataDefinition.ParameterFields
crParameterFieldDefinition = _
crParameterFieldDefinitions.Item("Customername")
crParameterValues = crParameterFieldDefinition.CurrentValues

crParameterValues.Clear()
crParameterValues.Add(crParameterDiscreteValue)
crParameterFieldDefinition.ApplyCurrentValues(crParameterValues)

CrystalReportViewer1.ReportSource = cryRpt
CrystalReportViewer1.Refresh()
End Sub

Confused | :confused:
AnswerRe: getting value of the textbox to be used in crystal report Pin
thatraja25-May-11 15:50
professionalthatraja25-May-11 15:50 
GeneralRe: getting value of the textbox to be used in crystal report Pin
clarence_1325-May-11 20:02
clarence_1325-May-11 20:02 
GeneralRe: getting value of the textbox to be used in crystal report Pin
clarence_1325-May-11 20:42
clarence_1325-May-11 20:42 
QuestionPDF parser Pin
εїзεїзεїз23-May-11 9:44
εїзεїзεїз23-May-11 9:44 
AnswerRe: PDF parser Pin
Dalek Dave23-May-11 13:20
professionalDalek Dave23-May-11 13:20 
GeneralA quick question for you - preparing it Pin
TONY_R23-May-11 0:49
TONY_R23-May-11 0:49 
GeneralRe: A quick question for you - preparing it Pin
Dave Kreskowiak23-May-11 1:35
mveDave Kreskowiak23-May-11 1:35 
GeneralRe: A quick question for you - preparing it Pin
Luc Pattyn23-May-11 1:53
sitebuilderLuc Pattyn23-May-11 1:53 
QuestionMulti-threading a windows service in VB [modified] Pin
rguerett20-May-11 8:19
rguerett20-May-11 8:19 
AnswerRe: Multi-threading a windows service in VB Pin
Luc Pattyn20-May-11 8:33
sitebuilderLuc Pattyn20-May-11 8:33 
AnswerRe: Multi-threading a windows service in VB Pin
David Mujica20-May-11 8:36
David Mujica20-May-11 8:36 
QuestionOnly FW4 possible After new install Pin
JR21219-May-11 19:29
JR21219-May-11 19:29 
AnswerRe: Only FW4 possible After new install Pin
Dalek Dave19-May-11 21:17
professionalDalek Dave19-May-11 21:17 
GeneralRe: Only FW4 possible After new install Pin
AspDotNetDev21-May-11 12:43
protectorAspDotNetDev21-May-11 12:43 
AnswerRe: Only FW4 possible After new install Pin
AspDotNetDev21-May-11 12:40
protectorAspDotNetDev21-May-11 12:40 
QuestionAlign Long String in DataGridView Cell to Show String End Pin
Andraw Tang19-May-11 8:35
Andraw Tang19-May-11 8:35 
AnswerRe: Align Long String in DataGridView Cell to Show String End Pin
Dave Kreskowiak19-May-11 9:02
mveDave Kreskowiak19-May-11 9:02 

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.