Hello everyone,
I've built an application using winforms (c++) and Telerik and when i run it from the computer i made it on, it works with no problems. However once i copy it over to my laptop, the .exe file simply won't run. No error messages, it just doesn't open. I have tried it on another computer and got the exact same problem.
I followed the guide here: https://docs.telerik.com/devtools/winforms/deployment-and-distribution/application-deployment
All the .dll files are in the same folder as the .exe and yet it still does not work. Has anyone had this problem before and would they be able to help me fix this please?
Thank you!
I have a control RadMultiColumn Control on my form as you can see here its showing Telerik.WinControls.UI.GridViewDataRowInfo in the text box however when selecting the option it then throws a null statement.
dpStockSelection.DataSource = _sageManager.ProductFetchAll();
public
List<Product> ProductFetchAll()
{
if
(!IsConnected)
throw
new
Exception(
"Not connected to Sage"
);
List<Product> products =
new
List<Product>();
SageDataObject230.IStockRecord sageStockRecord = (SageDataObject230.IStockRecord)_workSpace.CreateObject(
"StockRecord"
);
try
{
if
(sageStockRecord.MoveFirst())
{
do
{
products.Add(CreateProduct(sageStockRecord));
}
while
(sageStockRecord.MoveNext());
}
}
finally
{
sageStockRecord =
null
;
}
return
products;
}
I am using Q1 2008 Winforms.
There is radgridview named 'gv'. gv is filling with some manipulated data. I can filter by clicking and selecting some values. I want to filter wiht my own buttons. Basicially i created filter like this:(c#)
01.
private
void
btFilter3_Click(
object
sender, EventArgs e)
02.
{
03.
gridTest.EnableFiltering =
true
;
04.
this
.gridTest.FilterDescriptors.Remove(
"IssueDate"
);
05.
FilterDescriptor filter =
new
FilterDescriptor();
06.
filter.PropertyName =
"IssueDate"
;
07.
filter.Operator = FilterOperator.IsGreaterThan;
08.
filter.Value = DateTime.Now.AddMonths(-5);
09.
filter.IsFilterEditor =
true
;
10.
this
.gridTest.FilterDescriptors.Add(filter);
11.
}
By clicking the button code is running. On Screen; the date value (what i described above) is appearing on filter area. But data on the gv isn't filtering.
When i filter with another value(date) manually, gv is filtering. After that manually process when run code by clicking the button, code is running and data on the gv is filtering also.
I need filter without manually process.
What am i missing?
Hi everyone,
when a radmessagebox pops up , its not exactly on the center of screen .
How to align it to the center of screen?
I don't see an object called RadGridLocalizationProvider anywhere.
Is the RadGridLocalizationProvider an object encapsulated by the grid?
Grid just populated with few rows, so there is an empty area below those rows.
Multiselection is enabled.
Grid has just been populated, so there are no selected rows.
If I click on the empty area below the rows, I get this exception:
System.Exception: Exception caught by
CurrentDomain.UnhandledException - type: System.NullReferenceException value:
System.NullReferenceException: Object reference not
set
to an instance of an
object
.<br> at
Telerik.WinControls.UI.GridRowBehavior.DoMultiFullRowSelect(GridCellElement
currentCell, Point currentLocation)<br> at
Telerik.WinControls.UI.GridRowBehavior.DoMouseSelection(GridCellElement
currentCell, Point currentLocation)<br> at
Telerik.WinControls.UI.GridRowBehavior.ProcessMouseSelection(Point
mousePosition, GridCellElement currentCell)<br> at
Telerik.WinControls.UI.GridRowBehavior.OnMouseMove(MouseEventArgs e)<br> at
Telerik.WinControls.UI.BaseGridBehavior.OnMouseMove(MouseEventArgs e)<br> at
Telerik.WinControls.UI.RadGridView.OnMouseMove(MouseEventArgs e)<br> at
System.Windows.Forms.Control.WmMouseMove(Message& m)<br> at
System.Windows.Forms.Control.WndProc(Message& m)<br> at
Telerik.WinControls.RadControl.WndProc(Message& m)
if I select a row, before clicking on the empty area, nothing happens.
I could preselect a row, just after populating. but I'd like to understand why this happens