Hello, my friend
Look at the picture below, I want to remove these two buttons, what should I do?
Dim
formType
As
Type
'An assembly in .NET is an executable file (.EXE or .DLL)
'GetType returns the type object for the specified typename
For
Each
formType
In
sender.
GetType
().
Assembly
.GetTypes()
'Select only the application forms inherited from the generalfunctionsform and add them to formList
If
UCase(formType.BaseType.ToString).Contains(
"SYSTEM.WINDOWS.FORMS.FORM"
)
Then
MsgBox(formType.BaseType.ToString)
formList.Add(
CType
(Activator.CreateInstance(formType), Form))
End
If
Next
'Convert each form reference to a name string and add an entry to the formNames list
For
Each
form
As
Form
In
formList
formsListBox.Items.Add(form.Name.ToString)
Next
Hi,
I have a Chart with dateTimes on the X Axis. I would like to print only the hour and minutes as it isn't readable otherwise (Original.PNG).
When I try to format it by using categoricalAxis on each series, it formats it correctly but creates an axis for each serie (Formatted.PNG).
I haven't found a way to keep only 1 Axis but with the formatted dateTimes.
I joined a copy of the important part of my code.
Hello. the image I've attached basicly tells the outcome I'm looking for. The only difference would be that I would like to keep the date part. So instead of 'John's BD' - It would be '8 John's BD'. I can't find any documentation on this.
Thanks in advance
Hello,
Again a problem regarding the hierarchy mode of the RadGridView. Datasource is a hierarchy object with multiple levels (based on BindingList).
Kind regards,
Christian
Hello I find the spell checking function provided in Telerik controls to be confusing. Is there an example of using the spell checker against standard text boxes in a winforms application? All the documentation that I have found so far only refers to RichTextEditor input, or else RichTextbox, which I understand to be deprecated, but I need to spell check a standard windows textbox. I also need it to be able to check uppercase as a option.
Thanks
My model of 'Car' class , and all its datamembers and attributes is defined in the server of WCF project.
In my client I use the RadDataEntry to view List of 'Car's.
But even that I've defined in the model on some datamebers as [Browsable=('False')] or [RadSorOrder(1)] ,in the client it does not has any impact on the RadDataEntry Ui element.
But if I save the model (or just give refernce in the client), it works correctly.
What do I need to do in order to keep the model only in the sever and also gets all the attributes work correctly in the client/Ui?
Thanks
I have a spreadsheet with about 30,000 rows and 20 columns. The "find" functionality works as expected, but the search itself takes over 5 seconds for it to find the relevant data. The same functionality in excel takes miliseconds.
I realize that it will never be as fast as searching in excel, but is there any way to improve performance to get closer to the excel search times (i.e. Indexing the data or only allowing searching through specific columns).
Here is how I am loading the data currently:
string fileName = @"C:\temp\large_data.xlsx";
var formatProvider = new XlsxFormatProvider();
using (Stream input = new FileStream(fileName, FileMode.Open))
{
radSpreadsheet1.Workbook = formatProvider.Import(input);
}