Good afternoon!
I have a class object that has several properties. I have a RadGridView that I've created columns in with field names that match the class properties. When I assign the list of class objects as the datasource to the gridview, everything fills in correctly except the list of strings. Everything shows up great except the combo boxes that have field names that corresponds with List<string> properties in the class object. The list of strings displays as "System.Collections.Generic.List". Each row is a distinct object with a different list of strings. How do i populate the combo boxes in the with the data in the class object's properties that are List<string>?
I'm trying to understand and add a RadScheduler to my winforms app that has resources available. I'm having issues trying to get the resources working.
First item, are the below tables being create correctly (Oracle DB backend using entity framework)?
CREATE TABLE APP_APT_SCHEDHi ,
I add Shape page. In page , can I add shape similar like pic. If I choose the triangle shape and shareholder can change triangle shape? How to write it . Please let me know. If that way can't do, how to do other way. I want to change shape because user want to change any of shapes.
Thanks,
Moe
Is it possible to Hide the Header Title In PageView When In Navigation View Mode?
Hi ,
I want to know Raddiagram shape and color and note move. My program will show below attach (Raddigarm)and user can change shape and color and note move. I would like to know how to do.
What I want in below attach file(want to change.PNG).
My question is below.
Please reply to me asap.
Thanks,
Moe
Is there a way to set the DescriptionImage Image Alignment to TopLeft?
If not, then the TaskCardElement.DescriptionImage.ImageAlignment property is Missing
I am using the simple code below to load and image from SQL, then save it back to the Image datatype column.
I am able to load the image, but when I perform ANY edit feature (from the RadImageEditor control) the size of the image (relative size on disk in bytes) increases over 10x the original image. Eventually it will consume all the memory and crash the application. This behavior does not happen if I load a fixed image directly from disk.
The two attached images show the size of the image after immediately loading it, then the size of the image after performing a single Rotate 90 degrees.
I cannot find any example of either loading an image from a DB nor saving to DB. Please review and provide any correction to loading and saving images (blob, image) from SQL, or please provide a simple example of loading and saving a SQL image.
FYI: objAttach.ImageBlob is defined as Byte()
Private Sub frmAttachmentViewer_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Me.lblMessage.Text = ""
mbImageChanged = False
Dim ms As MemoryStream = New MemoryStream(objAttach.ImageBlob, 0, objAttach.ImageBlob.Length)
Dim img As Image = Image.FromStream(ms)
Me.RadImageEditor1.OpenImage(img)
lblImgSize.Text = "Size: " & ms.Length & " KB"
End Sub
Private Sub RadImageEditor1_CurrentImageChanged(sender As Object, e As ImageChangedEventArgs) Handles RadImageEditor1.CurrentImageChanged
Dim ms As New MemoryStream()
Me.RadImageEditor1.SaveImage(ms)
lblImgSize.Text = "Size: " & ms.Length & " KB"
End Sub
Hello,
1. In the attached picture, the localization strings of the items with the red arrow are not in the LocalizationProvider. How can I localize them?
2. How can I turn off the DropDown button shown with the blue arrow in the picture?
Kind regards.
It's great being able to set the backcolor for userinfo() values.
However, the ForeColor property is missing or is hidden...
It appears that the "Hidden" Forecolor property is set to White.
Consequently, one cannot set a contrasting forecolor for the given backcolor that is used.
For Example:
Private user1 As UserInfo = New UserInfo()
user1.FirstName = _UserFirstName
user1.LastName = _UserLastName
User1.BackColor = Color.LightYellow
What is needed now for the contrasting ForeColor would be this:
User1.ForeColor = Color.Black
Currently, if the backcolor is set to a very light back color - one cannot read the White ForeColor text
Hello All,
I am trying to enable scroll bar for the radsplitcontainer and I am having hard time. I set autoscroll to true but the scroll bar doesn't show up. I am able to get the scroll bar for the individual split panels. Is there a way I can get the scroll bar for the whole panel instead of the individual splits. basically, I split it into three panels and trying to stretch my controls as the size grows but on higher resolutions I may need scrollbars and that's the reason I want the scrollbars enabled. I have attached my sample application. Can I get some help please.