Desktop version

Main > Forum > 1C:Enterprise Platform > Studying 1C:Enterprise platform > Missing additional file

Forum

Search UsersRules
Missing additional file
#1
Just came
Points:: 0
Joined:: Mar 11, 2021

Hello,
I just started off learning 1C today, following the guidelines in "Hello, 1C", until being struck with a missing file. Precisely, it is the "ImportXMLData83.epf" file that I can't find. It is supposed to be in the installer package, but I cannot seem to find it anywhere. Can anybody help me? Thanks in advance.

Profile
#2
Administrator
Points:: 0
Joined:: Oct 3, 2019

Hello,

indeed, no additional files are included in the new version of the training platform. You can take these files in the attachment.

Profile
#3
Just came
Points:: 0
Joined:: Feb 21, 2022

Thank you for help!

Profile
#4
Just came
Points:: 0
Joined:: Mar 3, 2026

Throws exception due to synchronous opening being forbidden on client. Posting solution in case someone else stumbles into this so they don't get stuck. Open the exception to the place it got thrown from and replace the procedure there through this one. Cheers.

Code
&AtClient
Async Procedure UnloadingFileNameStartChoice(Element, ChoiceData, StandardProcessing)
   StandardProcessing = False;
   UnloadingFileName = "";
   
   Mode = FileDialogMode.Open;
   FileDialog = New FileDialog(Mode);
   FileDialog.FullFileName = "";
   Filter = NStr("en = 'Data exchange files (*.xml)|*.xml'");
   FileDialog.Filter = Filter;
   FileDialog.Multiselect = False;
   FileDialog.Title = NStr("en = 'Select the data file'");
   Await FileDialog.ChooseAsync();
   Object.UnloadingFileName = FileDialog.FullFileName;
   
EndProcedure

Profile
Subscribe
Users browsing this topic (guests: 1, registered: 0, hidden: 0)



© 1C LLC. All rights reserved
1C Company respects the privacy of our customers and visitors
to our Web-site.