使用LiveLink服务器16.2.9 (2019-06),内部版本851
这是我用来下载一个名为Active_Time.xlsx的LiveLink文件的代码。如果我将下面的链接粘贴到浏览器中,则会下载该文件。然而,当使用这段代码时,结果是一个很小的XML文件(见下图)
Dim remoteUri As String = "https://OurServer.com/livelink/livelink.exe?func=ll&objId=33100345&objAction=download"
Using client = New Net.WebClient(
我在做UWP的申请。我不知道UWP或XAML,所以我在学习。
我有我的课_Viewmodel.cs:
namespace IHM_UWP
{
public class _ViewModel : INotifyPropertyChanged
{
private GestionBras bras= new GestionBras(); //On peut ajouter cet instance dans la classe App.Xaml.cs?
public event PropertyChangedEventHandler PropertyChanged;
pu