The dialog uses InitialDirectory = "D:\Executech\Hotel\Documents"
To see the documents in the folder I must specify the parent folder of "Documents". If I use the same path as InitialDirectory, no files are seen.
This is my code that shows the files.
Private Sub saveFileDialog_DirectoryRequesting(ByVal sender As Object, ByVal e As DirectoryRequestingEventArgs) Handles RadSaveFileDialog1.DirectoryRequesting
If Not e.Directory.FullName.StartsWith("D:\Executech\Hotel") Then
e.Cancel = True
End If
End Sub
I have set the initial directory. But when the save dialog shows up, the left panel directory list is not expanded to Initial directory. It is expanded only when I click to select that initial directory. Is there a way that it is expanded "at the beginning" and have the location hints (breadcrumb) at the top?
Thanks.
RadSaveFileDialog saveFile = new RadSaveFileDialog();
saveFile.InitialDirectory = @"C:\NHPAYHO\data\";
saveFile.ExpandToCurrentDirectory = true;
DialogResult dr = saveFile.ShowDialog();
When I use DirectoryRequesting to set a user's root folder, the Tree Navigation Pane doesn't show the path. The only element that appears is "This PC" and if I cIick it I can't get back to the folder with the files. would prefer that it would show the specified folder as the root element in the Tree Navigation Pane since there will be multiple folders within this root folder.
Private Sub saveFileDialog_DirectoryRequesting(ByVal sender As Object, ByVal e As DirectoryRequestingEventArgs) Handles RadSaveFileDialog1.DirectoryRequesting
If Not e.Directory.FullName.StartsWith("D:\Executech\Hotel") Then
e.Cancel = True
End If
End Sub
I have a listbox and want to set some of the items as bold based on various criteria.
Example 1:
Listbox contains a list of all employees and I want to bold the employees who are listed as "working" in another table.
Example 2:
Listbox contains a list of ALL Products and I want to bold the ones that are that are in are on sale (as identified in another table).
I've looked at the examples of changing format based on selection or hover, but I can't figure out how to translate that into the above use cases.
I've created a chat, and are now about to set the last touch on the UI and what not. I'm trying to achieve a behavior that enables name on all of the messages (including the latest)
I've attached a image for better understaind.
Thanks in advance.
Hello there,
I'm using radgridview.It only highlights search results , but I want to hide all records except search results.Is there a way to do it? If so how can I do it?
getting error while opening excel file which have more than 400000 records.
We are facing the below issues on DateTimePicker
1st issue:
1) Enter the date, month & year.
2) If we highlight the whole date & update any value, year field is getting changed.
We need it to update from month date & year if it is fully highlighted.
2nd issue:
1) Enter the date, month & year.
2) If we click "Tab" it is getting focused on the next date time picker. When we go back to the previous datetimepicker it is focussing on the edited year.
It should focus on month on every datetimepicker.
Note : If datetimepciker is fully highlighted it should update on MM/DD/YYYY. Demo project & video link attached for your reference.
I want to apply the acrylic effect using the fluent theme of Telerik but i Diont Know how to do the blur background or square in a windows forms project.
Need help please
Visual Studio 2017
VB.Net
Telerik UI for WinForms R2 2019 SP1
I need to enforce a root folder for users and only give them access files and folders within this root folder and I have my own dialog box for this. Can I use my dialog box when the user clicks Open or Save or Save As?