Quantcast
Channel: Our ComponentOne » All Posts
Viewing all 14170 articles
Browse latest View live

Reply To: C1DateEdit and problem with type through in hour field

$
0
0

Hi C1,

any updates on this?

Best regards

Wolfgang


Reply To: TrueDbGrid - Data updates - Filterbar looses focus

$
0
0

Hi Nilay,

thanks for your reply.

Attached you find an example. Please start the application and set the cursor into the filterbar of column "value 1" or "value 2". Each time the background process has finishd, the focus jumps to the first columns filter column.

In addition, please enter anything into all three filtercolumns. When the background process has finished, thoose values disappeared (but the filter still seems to be set).

Kind regards

Reply To: Can summary task be empty?

$
0
0

Hello,

Thanks for providing the screenshot.
As the appearance of the summary task depends on its child tasks so, it is directly not possible to have an empty summary task in C1GanttView.
However, you can change the appearance of a normal task to that of a summary task. In order to do that you need to set the properties of the SummaryTask BarStyle to the properties of the ManualTask BarStyle.

Below is the code to achieve the same:

Dim bs1 As BarStyle = gantt.GetPredefinedBarStyle(BarType.SummaryTask)

        Dim bs As BarStyle = gantt.GetPredefinedBarStyle(BarType.ManualTask)
        bs.StartColor = bs1.StartColor
        bs.EndColor = bs1.EndColor
        bs.BarColor = bs1.BarColor
        bs.BarPattern = bs1.BarPattern
        bs.BarShape = bs1.BarShape
        bs.EndPattern = bs1.EndPattern
        bs.EndShape = bs1.EndShape
        bs.StartPattern = bs1.StartPattern
        bs.StartShape = bs1.StartShape

        task = New Task()
        task.Name = "Task1"
        task.Mode = TaskMode.Manual
        task.DurationUnits = DurationUnits.Days
        task.Start = New DateTime(2016, 2, 9, 9, 0, 0)
        task.Duration = 3
        task.BarStyles.Add(bs)
        gantt.Tasks.Add(task)

Please refer to the attached sample application implementing the same.

Thanks,
Akshay

Reply To: Select multiple rows

$
0
0

Is there any update on the subject?

Reply To: sum if criteria in report footer

$
0
0

Hello,

Thanks for providing the information.
In order to calculate the total Dollars and Euros based on the values in its corresponding column follow the steps given below:
1. In OnPrint property of Detail section check when the value in the Currency column is equals to "Dollars" then, add the value of the corresponding amount column in the dollar variable.
2. Else add the value in the euro variable.

Below is the VBScript to achieve the same:

If [Currency Type] = "Dollars" Then 
dollar = dollar + Balance
ElseIf [Currency Type] = "Euros" Then
euro = euro + Balance
EndIf

Please refer to the attached modified report.

Thanks,
Akshay

Reply To: DatePicker (again)

$
0
0

Hello,

Thanks for reporting the issue.

We could also replicate the issue at our end and had escalated it to the concerned team. Tracking ID: 150634
We will let you know as soon as there is an update on it.

Thanks,
Akshay

Reply To: Export multi report C1DocumentViewer.Document

$
0
0

Prashant,

Any news on whether this was looked at by your development?

How to handle a Right click on a C1TabItem header?

$
0
0

I'm using the C1TabControl for WPF. I'd like to show a context menu when the user right-clicks the header area of the C1TabItems shown in the control. There is a right-click event handler for the C1TabItem, but this fires when any portion of the tab item is right-clicked. I'm looking for just the tab header.

Is there a way to use UIElement.AddHandler(), or something that can be done with an event setter?

Thanks.


Nag popup after eval uninstall

$
0
0

Hi everyone,

facing an odd problem here. I have a test server setup where I needed to install the current ActiveX suite including the VSFlexGrid 8.0 control which is needed in a VBA solution inside Microsoft Project Professional. It was accepted that the license reminder popup would appear as soon as the form that contains a VSFlexGrid was loaded (for design or at runtime).
I bought a license today for my development system. The plan is to develop there and deploy to the terminal server through simple VBA export and import. So I uninstalled the C1 evaluation package from the server, then, to make only the VSFlexGrid components accessible there for runtime, I extracted them from my dev platform's System32 and SysWOW64 directories, copied them into the respective directories on the terminal server, then registered all of them with regsvr32 successfully.
Unfortunately, the licence reminder popup still keeps appearing, even though the .frm and .frx files of the forms that use a VSFlexGrid control have been compiled on my development machine where the valid license is installed. The way I understood it, deployment and use of the VSFlexGrid should be royalty-free as long as it is not for development. But how do I get rid of the popup now? I fear the C1 eval setup might have left some info about an unlicensed product somewhere in the system and it is now interfering.
I cannot use my dev license to activate the full C1 package on the server. It is neither allowed nor desired and I sure cannot do this on the customer's target system either. So the license needs to stay with me but in the test system as well as the customer's system a deployment of just the vsflex*.ocx components + registering them needs to suffice. License-related popups are not acceptable. So is there anything I can do about this?

Thanks for any hint.
Regards
Joe

Reply To: Nag popup after eval uninstall

$
0
0

Oh, by the way, what I initially installed on that server was the C1 evaluation setup, out of which I picked only the ActiveX suite. Just to mention.

Syntax for "SeriesDisplayEnum.ExcludeHoles"

$
0
0

Probably a simple question, but I am building charts on the fly based on template and coded parameters. the number of groups and series is determined by the data read in at run time. I am trying to figure out how code in vb.net so that all of the 2d chart types have exclude holes set as often times I have many null fields in the data sets, and can't chart them as 0. I cant seem to figure out the syntax around setting the value, and if I have to set each group and series individually which values will need to be variable to loop through the series etc....

thank you in advance for any help

Chris

Reply To: C1DateEdit and problem with type through in hour field

$
0
0

Hi Wolfgang,

The issue has already been fixed in an internal build. Will be incorporated in the next release of WinForms.

Thanks and Regards,
Pragati Kaushik

Reply To: Select multiple rows

Reply To: sum if criteria in report footer

$
0
0

thank you very much ... that's what i needed exactly ...

True DBGrid v4 Column Header dynamic edit

$
0
0

Hi,
I'm using True DB Grid v4 in my application. I would like to be able to edit the column title dynamically in the sense would like to double click the title and type the new title just like a textbox. Is it possible to do this? Please reply immediately.

Regards


Reply To: ScrollIntoView in C1FlexGrid

$
0
0

Hello,

I could not download the attached sample because it is giving an error "404 - File or Directory not found".
Could you please re-send the attached sample?

Regards,
Prashant

Reply To: Export multi report C1DocumentViewer.Document

$
0
0

Hello,

Your issue is still under investigations with our development team. However, I have asked for an ETA regarding your issue and will let you know as soon as I get any update from them.

Regards,
Prashant

Reply To: RichTextBox in Tablet Mode with Screen Keyboard

Reply To: Nag popup after eval uninstall

$
0
0

Sorry, I found it. Usage in VBA requires a non-standard container license. Damn...

Reply To: How to handle a Right click on a C1TabItem header?

$
0
0

Hello,

Please find the attached sample implementing your requirements and let me know in case of any doubts or queries.

Regards,
Prashant

Viewing all 14170 articles
Browse latest View live


Latest Images

<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>