Click here to Skip to main content
16,009,238 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Toolbar Pin
Rizwan Bashir10-Jun-05 0:46
Rizwan Bashir10-Jun-05 0:46 
GeneralRe: Toolbar Pin
Jim Matthews10-Jun-05 4:05
Jim Matthews10-Jun-05 4:05 
GeneralPass value to crystal report Pin
LordLothar9-Jun-05 22:30
LordLothar9-Jun-05 22:30 
GeneralRe: Pass value to crystal report Pin
Rizwan Bashir9-Jun-05 22:43
Rizwan Bashir9-Jun-05 22:43 
GeneralRe: Pass value to crystal report Pin
LordLothar9-Jun-05 23:48
LordLothar9-Jun-05 23:48 
GeneralRe: Pass value to crystal report Pin
Rizwan Bashir9-Jun-05 23:51
Rizwan Bashir9-Jun-05 23:51 
GeneralRe: Pass value to crystal report Pin
LordLothar10-Jun-05 3:03
LordLothar10-Jun-05 3:03 
GeneralRe: Pass value to crystal report Pin
Rizwan Bashir10-Jun-05 3:31
Rizwan Bashir10-Jun-05 3:31 
use MSDN write Parameters and in the list check crystal you will get some code. this is also from there

Dim paramFields As New ParameterFields()
Dim paramField As New ParameterField()
Dim discreteVal As New ParameterDiscreteValue()
Dim rangeVal As New ParameterRangeValue()

' The first parameter is a discrete parameter with multiple values.

' Set the name of the parameter field, this must match a
' parameter in the report.
paramField.ParameterFieldName = "Customer Name"

' Set the first discrete value and pass it to the parameter
discreteVal.Value = "AIC Childrens"
paramField.CurrentValues.Add(discreteVal)

' Set the second discrete value and pass it to the parameter.
' The discreteVal variable is set to new so the previous settings
' will not be overwritten.
discreteVal = New ParameterDiscreteValue()
discreteVal.Value = "Aruba Sport"
paramField.CurrentValues.Add(discreteVal)

' Add the parameter to the parameter fields collection.
paramFields.Add(paramField)

' The second parameter is a range value. The paramField variable
' is set to new so the previous settings will not be overwritten.
paramField = New ParameterField()

' Set the name of the parameter field, this must match a
' parameter in the report.
paramField.ParameterFieldName = "Customer ID"

' Set the start and end values of the range and pass it to the 'parameter.
rangeVal.StartValue = 42
rangeVal.EndValue = 72
paramField.CurrentValues.Add(rangeVal)

' Add the second parameter to the parameter fields collection.
paramFields.Add(paramField)

' Set the parameter fields collection into the viewer control.
crystalReportViewer1.ParameterFieldInfo = paramFields

crystalReportViewer1.ReportSource = "c:\reports\my report.rpt"


GeneralRe: Pass value to crystal report Pin
LordLothar10-Jun-05 19:10
LordLothar10-Jun-05 19:10 
GeneralRe: Pass value to crystal report Pin
Rizwan Bashir10-Jun-05 22:11
Rizwan Bashir10-Jun-05 22:11 
GeneralRe: Pass value to crystal report Pin
LordLothar10-Jun-05 23:25
LordLothar10-Jun-05 23:25 
GeneralRe: Pass value to crystal report Pin
Rizwan Bashir11-Jun-05 0:44
Rizwan Bashir11-Jun-05 0:44 
GeneralRe: Pass value to crystal report Pin
LordLothar11-Jun-05 5:30
LordLothar11-Jun-05 5:30 
GeneralRe: Pass value to crystal report Pin
Rizwan Bashir12-Jun-05 21:28
Rizwan Bashir12-Jun-05 21:28 
GeneralInserting text in between a file Pin
smita_roy9-Jun-05 21:35
smita_roy9-Jun-05 21:35 
GeneralRe: Inserting text in between a file Pin
Dave Kreskowiak10-Jun-05 2:47
mveDave Kreskowiak10-Jun-05 2:47 
GeneralVB Office Addins drag file to excel sheet to generate hyperlink in the Excel Pin
shinay9-Jun-05 19:08
shinay9-Jun-05 19:08 
General.net remoting Pin
lagumaster9-Jun-05 17:25
lagumaster9-Jun-05 17:25 
GeneralRe: .net remoting Pin
Rizwan Bashir9-Jun-05 22:35
Rizwan Bashir9-Jun-05 22:35 
GeneralRe: .net remoting Pin
lagumaster10-Jun-05 10:59
lagumaster10-Jun-05 10:59 
GeneralHelp with MSN Messenger-like popup Pin
Member 20298019-Jun-05 14:41
Member 20298019-Jun-05 14:41 
GeneralRe: Help with MSN Messenger-like popup Pin
Christian Graus9-Jun-05 14:48
protectorChristian Graus9-Jun-05 14:48 
GeneralRe: Help with MSN Messenger-like popup Pin
9-Jun-05 16:59
suss9-Jun-05 16:59 
GeneralRe: Help with MSN Messenger-like popup Pin
Christian Graus9-Jun-05 17:06
protectorChristian Graus9-Jun-05 17:06 
GeneralRe: Help with MSN Messenger-like popup Pin
Member 20298019-Jun-05 17:18
Member 20298019-Jun-05 17:18 

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.