Understanding basics of 1C:Enterprise platform. To start working with 1C:Enterprise platform visit Getting started page

#1
People who like this: 0 Yes / 0 No
Just came
Rating: 0
Joined: Mar 11, 2021
Company:

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.

 
#2
People who like this: 0 Yes / 0 No
Administrator
Rating: 30
Joined: Oct 3, 2019
Company:

Hello,

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

 
#3
People who like this: 0 Yes / 0 No
Just came
Rating: 0
Joined: Feb 21, 2022
Company:

Thank you for help!

 
#4
People who like this: 0 Yes / 0 No
Just came
Rating: 0
Joined: Mar 3, 2026
Company:

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

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