48 |
Small icons
|
49 |
Large icons
|
21 |
Is there any function or property to get the first visible folder
|
46 |
Is it possible to re-call the ExploreFromHere without re-selecting/expanding any previously item
|
50 |
Is it possible to display information about the firing events
' Notifies the application once the control fires an event. function Event as v (EventID as N) oExFolderView = topparent:CONTROL_ACTIVEX1.activex ? oExFolderView.EventParam(-2) end function Dim oExFolderView as P oExFolderView = topparent:CONTROL_ACTIVEX1.activex |
18 |
How do I select and expand a folder
|
17 |
How do I select and expand a folder
|
16 |
How do I select a folder
|
6 |
How do I remove the lines that link the root items
|
4 |
How do I remove the lines between items
|
3 |
How do I remove the control's border
Dim oExFolderView as P oExFolderView = topparent:CONTROL_ACTIVEX1.activex oExFolderView.Appearance = 0 |
5 |
How do I remove the buttons to expand or collapse the folders
|
22 |
How do I refresh the control
Dim oExFolderView as P oExFolderView = topparent:CONTROL_ACTIVEX1.activex oExFolderView.Refresh() |
10 |
How do I hide the overlay icons
Dim oExFolderView as P oExFolderView = topparent:CONTROL_ACTIVEX1.activex oExFolderView.OverlayIcons = .f. |
44 |
How do I get the subfolders of specified folder
|
42 |
How do I get the name of folder, as it is displayed in the control
|
15 |
How do I get the checked folders or files
|
19 |
How do I find a special folder, like My Computer
|
20 |
How do I find a special folder, like My Computer
|
11 |
How do I enable or disable the control's context menu
Dim oExFolderView as P oExFolderView = topparent:CONTROL_ACTIVEX1.activex oExFolderView.EnableShellMenu = .f. |
8 |
How do I display the share name for folders and files
Dim oExFolderView as P oExFolderView = topparent:CONTROL_ACTIVEX1.activex oExFolderView.DisplayShareName = .t. |
9 |
How do I display the overlay icons
Dim oExFolderView as P oExFolderView = topparent:CONTROL_ACTIVEX1.activex oExFolderView.OverlayIcons = .t. |
43 |
How do I check a folder
|
2 |
How do I change the control's foreground color
|
1 |
How do I change the control's background color
|
7 |
How do I assign a checkbox for each folder/file in the control
|
41 |
How can I specify the folders being displayed in the control
|
34 |
How can I remove the control's scroll bars
|
12 |
How can I refresh the control as soon as the user renames a folder in Windows Explorer
Dim oExFolderView as P oExFolderView = topparent:CONTROL_ACTIVEX1.activex oExFolderView.AutoUpdate = .t. |
40 |
How can I include the files and folders in the control
|
26 |
How can I hide the icons
|
35 |
How can I get width of the vertical scroll bar
Dim oExFolderView as P oExFolderView = topparent:CONTROL_ACTIVEX1.activex ? oExFolderView.VerticalWidth |
31 |
How can I get the vertical scroll range
Dim oExFolderView as P oExFolderView = topparent:CONTROL_ACTIVEX1.activex ? oExFolderView.VerticalOversize |
30 |
How can I get the vertical scroll position
Dim oExFolderView as P oExFolderView = topparent:CONTROL_ACTIVEX1.activex ? oExFolderView.VerticalOffset |
33 |
How can I get the horizontal scroll range
Dim oExFolderView as P oExFolderView = topparent:CONTROL_ACTIVEX1.activex ? oExFolderView.HorizontalOversize |
32 |
How can I get the horizontal scroll position
Dim oExFolderView as P oExFolderView = topparent:CONTROL_ACTIVEX1.activex ? oExFolderView.HorizontalOffset |
13 |
How can I get the folder or the file from the point
' Fired when the user move the mouse over the ExFolderView control. function MouseMove as v (Button as N, Shift as N, X as OLE::Exontrol.FolderView.1::OLE_XPOS_PIXELS, Y as OLE::Exontrol.FolderView.1::OLE_YPOS_PIXELS) oExFolderView = topparent:CONTROL_ACTIVEX1.activex ? oExFolderView.FolderFromPoint(-1,-1) end function Dim oExFolderView as P oExFolderView = topparent:CONTROL_ACTIVEX1.activex |
36 |
How can I get height of the horizontal scroll bar
Dim oExFolderView as P oExFolderView = topparent:CONTROL_ACTIVEX1.activex ? oExFolderView.HorizontalHeight |
45 |
How can I expand a folder
|
24 |
How can I expand a folder
|
23 |
How can I ensure that a specified folder fits the contrl's client area
|
28 |
How can I drop files to control
Dim oExFolderView as P oExFolderView = topparent:CONTROL_ACTIVEX1.activex oExFolderView.AllowDropFiles = .t. |
14 |
How can I display the hidden folders
|
25 |
How can I disable or enable the entire control
Dim oExFolderView as P oExFolderView = topparent:CONTROL_ACTIVEX1.activex oExFolderView.Enabled = .f. |
37 |
How can I change the shape of the cursor
Dim oExFolderView as P oExFolderView = topparent:CONTROL_ACTIVEX1.activex oExFolderView.MousePointer = 2 |
39 |
How can I change the control's font
|
47 |
Folder icons are very close together vertically. Can you change the icon or increase the separation
|
27 |
Can I explore only a folder, so the user can't see the parent folder
|
29 |
Can I assign partial check boxes to folders, so the sub folders get checked when the user checks the parent folder
|
38 |
Can I add a rename to the control's context menu
Dim oExFolderView as P oExFolderView = topparent:CONTROL_ACTIVEX1.activex oExFolderView.CanRename = .t. |