powered by simpleCommunicator - 2.0.31     © 2024 Programmizd 02
Форумы / Отчетные системы [игнор отключен] [закрыт для гостей] / DiscreetValues не понимает строку длинее 255байт. Что делать?
1 сообщений из 1, страница 1 из 1
DiscreetValues не понимает строку длинее 255байт. Что делать?
    #33202304
Junior
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Гость
Делаю так

Код: plaintext
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
    Public Sub SetRepParams(ByRef r As ReportDocument, ByVal ParamName As String, ByVal ParamValue As String)

        ''CR Variables

        Dim crReportDocument As rptDelivList2 
        Dim crParameterFieldDefinitions As ParameterFieldDefinitions
        Dim crParameterFieldDefinition As ParameterFieldDefinition
        Dim crParameterValues As ParameterValues

        Dim crParameterDiscreteValue As ParameterDiscreteValue

        ''Create an instance of the strongly-typed report object
        crReportDocument = r 

        'Get the collection of parameters from the report
        crParameterFieldDefinitions = crReportDocument.DataDefinition.ParameterFields
        ''Access the specified parameter from the collection
        crParameterFieldDefinition = crParameterFieldDefinitions.Item(ParamName)

        ''Get the current values from the parameter field.  At this point
        ''there are zero values set.
        crParameterValues = crParameterFieldDefinition.CurrentValues

        ''Set the current values for the parameter field
        crParameterDiscreteValue = New ParameterDiscreteValue
        crParameterDiscreteValue.Value = ParamValue '1st current value

        ''Add the first current value for the parameter field
        crParameterValues.Add(crParameterDiscreteValue)

        ''All current parameter values must be applied for the parameter field.
        crParameterFieldDefinition.ApplyCurrentValues(crParameterValues)

    End Sub
...
Рейтинг: 0 / 0
1 сообщений из 1, страница 1 из 1
Форумы / Отчетные системы [игнор отключен] [закрыт для гостей] / DiscreetValues не понимает строку длинее 255байт. Что делать?
Целевая тема:
Создать новую тему:
Автор:
Закрыть
Цитировать
Найденые пользователи ...
Разблокировать пользователей ...
Читали форум (0):
Пользователи онлайн (0):
x
x
Закрыть


Просмотр
0 / 0
Close
Debug Console [Select Text]