Questions tagged [devexpress-windows-ui]

Questions about controls in DevExpress WinForms libraries

DevExpress is a company that provide the WinForms Controls in order to create rich applications easily.

333 questions
0
votes
1 answer

I want to get my NEW Gridcontrol Records highlighted. (devexpress winforms)

Here is what i am doing right now. private void gvOrderList_RowStyle(object sender, RowStyleEventArgs e) { GridView View = sender as GridView; if (e.RowHandle >= 0) { string sGridRecordOrderNumber =…
Brij Parekh
  • 11
  • 1
  • 4
0
votes
1 answer

DevExpress TreeList CheckBox checked event?

I have a TreeList with a DataTable as datasource. One of the columns are of type bool in the DataTable and is automatically shown as a checkbox editor in the TreeList. I'm looking for an event that is fired immediately after a checkbox's checked…
André
  • 527
  • 5
  • 15
0
votes
1 answer

Dev Express Winform Gridview Session Binding

This is the below solution using i am binding datasource. but tblData1 may change at runtime. Fields in tblData1 can be increase or decrease at run time so how can i refresh the gridview with new structure of the class. XPInstantFeedbackSource…
cpVariyani
  • 159
  • 1
  • 2
  • 12
0
votes
1 answer

Entity Framework Overhead

I am building an application that will interface with my database backend using EF 6. I have my database built so I will be going the database first approach. One of the goals will be to utilize the grid control from DevExpress and allow the user…
Idea Man
  • 85
  • 1
  • 6
0
votes
0 answers

c#_Devexpress set datatable to gridControl

i want to merger column in table to show example NameEmp | CasualLeave | SickLeave | AnualLeave | auto | Manual | auto | Manual | auto | manual epm1 | 1 | 1 | 2 | 0 | | i'm try…
0
votes
1 answer

Exported image filename customization from devexpress ReportPrintTool

I am using Devexpress XtraReport suite in my application which works fine for dynamic reporting requirement except one customization as below: User is given report preview using ReportPrintTool with dynamic data. Now, when user tries to export print…
binarymnl
  • 153
  • 2
  • 12
0
votes
1 answer

Highlight line in RichEditControl

I try to highlight a specifiable line of a RichEditControl of DevExpress. Here is a sample that uses selection. I don't want to select the line to highlight and I don't have any idea how to calculate the range of a line. The only information I have…
Sebastian Schumann
  • 3,204
  • 19
  • 37
0
votes
1 answer

Assigning a datasource for each Lookupedit that in the cell

We are using DevExpress tool for our desktop project. One of our columns has a lookupedit control. However we want to assign different datasources for each lookupedit that in the cells. Is possible? Because every datasource should take a different…
esquare
  • 3,947
  • 10
  • 34
  • 37
0
votes
1 answer

DevExpress Dock panel below an inherited Windows Forms panel

I have a base form with a panel that creates a header for my form (with the app logo and some info). When I add a Dock panel using the DockManager in a form that inherits this base form, the Dock panel is added above the header panel. How can I…
juliano.net
  • 7,982
  • 13
  • 70
  • 164
0
votes
0 answers

Devexpress report label not showing value

Can anyone tell me why same bounded xrLabel in details showing correct value but in page or report header label value is null. If I set null text value on run time null text value is displayed in page header. In report detail value is set to db…
Carlo
  • 13
  • 5
0
votes
1 answer

Remove export Formats in devexpress Document Viewer tool

Hi im currently looking for the solution of the problem im currently using devexpress document Viewer Tool and i notice that when i tried to export the document there are too many formats which is not actually needed so i intent to remove it is…
bRaNdOn
  • 1,060
  • 4
  • 17
  • 37
0
votes
1 answer

GaugeControl double click event handler

I have GaugeControl having three gauges in its collection. I have written its double click event handler as follows: AddHandler gc.DoubleClick, AddressOf HandleGaugeDoubleClick Private Sub HandleGaugeDoubleClick(sender As Object, e As EventArgs) …
Faizan Mubasher
  • 4,427
  • 11
  • 45
  • 81
0
votes
2 answers

Adding some values to spin button in devexpress

I want baudrates like 2400, 4800,...,57600, 115200 to be selectable in a spin button control. I can't see a way to do this in devexpress spin button control, since (in my understandig) it's only possible to set a whole range of values (e.g.…
0
votes
1 answer

How to make a column of CheckedComboBoxEdit in GridControl with different sourcedata for each row?

I have problem with DevExpress XtraGrid. I wont to make a column of CheckedComboBoxEdit's, but i dont know how to make them work separately. For example, in first row my CheckedComboBoxEdit will contain "a" and "b", and in second "b", "c", "d". I…
Fils
  • 47
  • 5
0
votes
3 answers

Repository Combo BoxEdit EditValueChanged fires many times while typing.

I have this Repository Item comboboxEdit in a Devexpress CustomGridView. private void gridView1_CustomRowCellEditForEditing(object sender, DevExpress.XtraGrid.Views.Grid.CustomRowCellEditEventArgs e) { if (e.Column == this.gcCol1) { var…
user575219
  • 2,346
  • 15
  • 54
  • 105