Hi Wolfgang,
I have escalated your suggestion to concern team (for internal use only 247317). Will get back to you once there is any information from them.
Thanks,
Sonu
Hi Wolfgang,
I have escalated your suggestion to concern team (for internal use only 247317). Will get back to you once there is any information from them.
Thanks,
Sonu
Hi,
I have not faced any such issue while running the provided sample application using the latest version of C1Silverlight i.e; 5.0.20171.547.
Hence, request you to please share the version of C1Silverlight you are currently using.
Thanks,
Akshay
Hi,
We tried creating a sample application however, we could not replicate the issue at our end. We have tested it with the latest builds of C1Winforms i.e; 4.0.20171.248.
Please refer to the attached sample application and screenshot.
If issue still persists then please make necessary changes in the attached sample application and share it back along with the screenshot representing the issue. Also share the version of C1Winforms you are currently using.
Thanks,
Akshay
Thx for Reply, we are using c1Silverlight 4.0 , if its possible please send the file which is support for SL 4.0
Hi Akshay,
Thank you for your quick response. I found that when you add a C1themeController (I used the Office 2012 Blue theme) to the project, you will witness the missing "&" behavior. I have included a VB project and a screen capture.
Hello,
I have a problem with the RibbonBar KeyTips. The ALT key do not work on Terminalserver over a Remotedesktop(mstsc.exe) Connection on a Windows Server 2012R2 64Bit. F10 works well but in our application it is allready in use. Why did the ALT not work on Terminalserverclients?
Our C1.Win.C1Ribbon.4.dll is Version 4.0.20142.597.
I found in the Forum this Topic with no answer:
http://our.componentone.com/groups/topic/graphic-issues-in-rdp-sessions-with-the-ribbon/page/1/
regards
Michael
Hi olkasu,
"this example is good, when we want to make all form or control transparent"
This is a limitation of the SetLayeredWindowAttributes function. With the UpdateLayeredWindow method you can specify per-pixel transparency. For example, we use UpdateLayeredWindow in C1RibbonForm to draw semi-transparent gradients on the resizable borders.
Regards,
-Andrey
I am creating a new Windows 7 x86 build machine and have installed C1ActiveXStudio_T2_2007_Setup.exe
When I load the visual basic project, the project fails to find several components and errors out.
When I look at a working machine and this new build machine, I see that several components such as olch2xu8.ocx are not found and are required by the project.
So I went to the system32 directory and verified that the file exists.
Then I attempted to register the file ... and the file fails to register. I download the little c1regsvr app and try that,it still fails to load.
So I when to the event viewer to see the error details ...
Activation context generation failed for "C:\Windows\system32\olch2xu8.ocx".Error in manifest or policy file "C:\Windows\system32\olch2xu8.ocx" on line 1. The value "T:\drop-chart\newchart\chart8\bin\olch2xu8.ocx" of attribute "name" in element "urn:schemas-microsoft-com:asm.v1^file" is invalid.
Now, I know that this must be something with my Windows 7x86 configuration, because I have this working on other Windows 7 x86 systems.
I also you have newer releases, however, management does not want to spend the time it may cost to upgrade from our current versions to the latest.
We use the following components as far as I can see:
C1 Charts 8.0 2D Control (Unicode)
C1 True DataControl 8.0
C1 True DBGrid Pro 8.0 (OLEDB)
C1 True DBList PRo 8.0 (OLEDB)
Hopefully you guys have come across this before and can direct me to the right solution. Thank you.
Sincerely
Dan
Thanks for the explanation and example.
Regards
Note: I did try to set permissions on the ocx for 'Everyone' to full control; I also added the current user to the permissions. The registration still fails. I have seen other similar posts where you recommend to do this.
Hi Alex,
Thanks for providing the screenshot.
We are sorry to mention however, there is no direct to automatically fill the empty area of the FlexGrid. However, as a workaround you can insert rows by calculating the height of the empty area as below:
double gap = fg.ActualHeight - (fg.ColumnFooterRows[0].ActualHeight + (fg.Rows[fg.Rows.Count - 1].ActualHeight * fg.Rows.Count) + fg.ColumnHeaders.ActualHeight);
for (int i = 0; i < gap / fg.Rows[fg.Rows.Count - 1].ActualHeight; i++)
fg.Rows.Add(new Row());
Please refer to the attached sample application.
Thanks,
Akshay
Just to clarify: the current message "C1PreviewPane besetzt ist." is gramatically wrong (sounds like german Yoda) and does not make sense .
Hello,
Thank you for sharing a screen-shot of the error.
Could you please try the following steps in order to add a customized theme and let us know if you still face the issue:
1. Select the C1ThemeController, you dropped earlier onto Winforms.
2. Click on the "SmartTag" in the upper right corner of the C1ThemeController, for more information on "SmartTag" please refer to the following Documentation link:
http://helpcentral.componentone.com/nethelp/c1themes/C1ThemeControllerSmartTag.html
3. Select "Add theme" option and try to add the customized theme you want to apply.
This should add the theme to the Winforms project.
Regards
Ruchir Agarwal
Hi,
Thanks for providing the sample application.
I could also replicate the issue at my end and had escalated it to the concerned team (Tracking ID: 247866). I will get back to you as soon as there is any information from them.
Thanks,
Akshay
Hello,
For making the ALT key work on TerminalServer over a Remote connection, you would need to set C1Ribbon's "CaptureAltKeyInTerminalSession" property to True for C1Ribbon in the form constructor.
Note: "CaptureAltKeyInTerminalSession" property is a runtime property and can not be set using Designer.
Also, you would need to use the latest build version, which can be downloaded from the link:
prerelease.componentone.com/dotnet40/c1winforms/2017-t1/C1WinForms.4_4.0.20171.248.zip
I have attached a sample application for reference.
Regards
Ruchir Agarwal
Thank you very much!
Hello,
we try to get the “SelectionMode” doing something like a combination of “SingleCell” and “SingleRow”.
The reason is, we want to select the whole row on changing the row, but want to copy a single cell on selecting a cell.
We do not want to have some code behind, we do want to achieve this with simple XAML or bindings.
If this does not work, we could use “SelectionMode” = “SingleRow”, but here we can not change the cellstyle of the current focused/selected cell (the difference between the backgroundcolor of the selected row and the backgroundcolor of the selected cell is hardly seeable)
I hope I could explain our problem.
P.S.: If there is a solution that we could select text in cell, it would be the best thing.
Hi olkasu,
You can take a look at the C1GaugePointer.GetValueAt method. For example:
private void c1RadialGauge1_ItemMouseMove(object sender, ItemMouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
C1GaugePointer p = e.Gauge.Pointer;
p.Value = p.GetValueAt(e.X, e.Y);
}
}
There is no analog to the ValueToPoint method, sorry.
Regards,
-Andrey
Hi
Using the smart tag solved my problem. Can't believe it's that simple.
Thanks Ruchir for your suggestion.
Regards
Jack
Thank for your answer.
I will give it a try.
Regards.
Alex