Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
505 views

I have been using MAUI for sometimes but recently, I discover that the build-in file picker Microsoft.Maui.Storage.FilePicker does not work when app is running as administrator. I have been searching ...
Mercury's user avatar
  • 41
2 votes
1 answer
810 views

I would think this is pretty basic but apparently its not. My app is downloading office documents such as XLS, PDFs, Docs, etc - they are downloading just fine and the user can navigate on their ...
rolinger's user avatar
  • 3,196
0 votes
1 answer
462 views

I want to set EasyGUI fileopenbox() to filter more filetypes and not just one. Here below is a code I tried but instead of custom files selection i get more selections. file=easygui.fileopenbox(title='...
user avatar
0 votes
1 answer
291 views

Don't get mad at me, I'm very amateur but I have been working on this for a long time and I can not figure it out. I have been working on this uwp text editor and I have added a MenuBar with some ...
Tigerguy3171's user avatar
1 vote
1 answer
941 views

I'm using the MRTK for a hololens app and I need to select a file that the user puts in their document folder. I am trying to access the FileOpenPicker and use the PickSingleFileAsync() function from ...
Jonathan Reynolds's user avatar
0 votes
1 answer
568 views

I wan't to create a photo uploading method for my uwp app but there is no way to do it because I can't use FileOpenPicker or any of the other pickers! It cannot find FileOpenPicker, even if declared ...
chidu's user avatar
  • 11
1 vote
0 answers
245 views

I'm using the FileOpenPicker to select a file from OneDrive, that I will subsequently access through "standard" C++ interfaces (not C++/WinRT). I'm aware that the path returned by ...
Theodore Hall's user avatar
0 votes
1 answer
284 views

I have a UWP app that has an option to open an Image Sequence. Typically image sequences are named as follows: MyImageSequence_00001.png, MyImageSequence_00002.png, ... MyImageSequence_01024.png, ...
HooptyDoopty's user avatar
0 votes
1 answer
178 views

I am new to UWP. I am copying the LaunchFileAsync with DisplayApplicationPicker from the documentation to my project: string imageFile = @"test.pdf"; var file = await Windows....
RK Coder's user avatar
  • 438
1 vote
3 answers
650 views

I'm a newbie in UWP and i want to open a file of any type and transmit the bytes of it to the reciever. forexample for a jpg file i wrote this code: // Create FileOpenPicker instance ...
zahraesb's user avatar
  • 153
2 votes
0 answers
67 views

I'm using Windows.Storage.Pickers.Provider.FileOpenPickerUI to implement an UWP app that allows taking multiple pictures. The thumbnails automatically appear in a basket on the bottom of the screen (...
Peter's user avatar
  • 745
1 vote
1 answer
656 views

I have a sub folder in downloads folder named 'StudentDetails'. It contains subfolders with student names.And each student name contains images related to that student. By default, I want to open that ...
user2431727's user avatar
0 votes
1 answer
1k views

/Data/myFiles/ I want to open the data path above, which is local to my App folder (HoloApp/Data/myFiles), in my Hololens app. From what I understand the chief way of doing this is with ...
jtth's user avatar
  • 886
2 votes
1 answer
184 views

FileOpenPicker. PickSingleFileAsync(); On Xbox One the above line opens a file selection screen however the cancel button on the screen is immediately deselected and the pages is stuck, you cannot go ...
Sixjac's user avatar
  • 349
0 votes
2 answers
683 views

I am getting file by using FolderPicker from device, by using this below code. FolderPicker pk = new FolderPicker(); pk.SuggestedStartLocation = PickerLocationId.Downloads; pk....
Devi Prasad's user avatar
1 vote
0 answers
163 views

Im using the FileOpenPicker to let the User choose a file (sqlite-db), which can be anywhere on the computer: public async Task<string> PickDb() { Windows.Storage.StorageFile file = null; ...
Tom's user avatar
  • 230
0 votes
2 answers
343 views

I'm new in windows phone development and I have to port my app on it, using phonegap/cordova. Most of my code works for Android/iOS and also winphone, but on this FileOpenPicker I'm blocked. I'm using ...
Zappescu's user avatar
  • 1,424
0 votes
2 answers
183 views

I'm trying to use the FileOpenPicker API by starting it from a pinned tile in Windows Phone 8.1. The tile has a command stored in it for which the application would start the FileOpenPicker when ...
robcsi's user avatar
  • 274
0 votes
1 answer
587 views

I am working on an application for Windows phone 8.1 in Xamarin with mvvmCross. I need to select multiple images from the phone library and display them. I am using FileOpenPicker....
StijnvanGaal's user avatar
1 vote
1 answer
996 views

I got an image by using FileOpenPicker. I want to save the path of the image in database, so that by using that path I can get that image any other screen,, Now I simply send my image path to second ...
Arsal's user avatar
  • 398
3 votes
1 answer
309 views

Is there a way to use Windows Phone 8.1 (RT) FileOpenPicker to select an image from the pictures library without offering to use the camera? FileOpenPicker openPicker = new FileOpenPicker(); ...
user avatar
1 vote
0 answers
263 views

I've downloaded the file open picker sample from microsoft (https://code.msdn.microsoft.com/windowsapps/File-picker-app-extension-0cb95155) for testing the file open picker contract. I installed the ...
FUR10N's user avatar
  • 760
1 vote
3 answers
247 views

I want to choose all files from the My internal as well as External Sd Card in Windows Phone 8.1 Silverlight App. I have tried this bolow code FileOpenPicker openPicker = new FileOpenPicker(); ...
Maulik Shah's user avatar
1 vote
1 answer
411 views

I'm struggling with the ScrollViewer in my Windows Phone 8.1 (WinRT) app. Basically, what I'm trying to achieve is to retrieve an image using FileOpenPicker, crop the image to a fixed ratio (square) ...
user avatar
0 votes
1 answer
164 views

I'm trying to get some file information about a file the user select with the FileOpenPicker, but all the information like the path and name are empty. When I try to view the object in a breakpoint I ...
Terry's user avatar
  • 332