6
Answers

GridView and Folder

M CH

M CH

9y
362
1
Dear Sir,
                I want to show data in the gridview from my folder. For example, I have a folder in my project and some pdf/word files about 60 or70. I want to show these files in the gridview  as select * from table where id . I shell be very thankful to you for this kindness. Thanks a lot.
Answers (6)
0
crausch

crausch

NA 53 0 19y
OK... with a little more research I found my answer -------------------------------- using Microsoft.Win32; string myPath = ""; RegistryKey rk = Registry.LocalMachine.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\SomeProg.exe", false); if(rk != null) { myPath = rk.GetValue("").ToString(); } ------------------------------------ In the code above I am getting the "Default" value which contains the programs executable path. The "false" parameter says that I want to open the key as read-only. I am not sure if the rk != null check is the right way to check that the key existed, but at first test this appears to work.