在线构建器如何从存根文件构建具有用户设置的应用程序?VB.NET

How online builder works to build applications with user settings from stub file? VB.NET

提问人:Amit kumar 提问时间:7/10/2015 更新时间:7/10/2015 访问量:73

问:

在线构建器如何工作,我想制作一个用户可以更改设置的网站,然后在线构建器使用存根文件的用户设置构建应用程序。然后给出下载链接。

我找到了使用 EOF 教程的 Online Builder。这可以解决我的问题

但它显示错误“WRFFVPN”未声明。由于其保护级别,它可能无法访问。 我试图解决它,但失败了。

存根:

Dim filesplit As String = "filesplit"
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

Dim Arr() As String = Split(IO.File.ReadAllText(Application.ExecutablePath), WRFFVPN)
 Dim Message As String = Arr(1)
 MsgBox(Message)
End Sub

还有Builder.php

<?php
$filesplit = "filesplit"; //Same as filesplit string in VB.NET program
$message = $_GET["message"];
$path = "DLMe.exe";
copy("MsgBox.exe", "DLMe.exe");
$infotowrite = $filesplit . $message;
file_put_contents($path, $infotowrite, FILE_APPEND);
echo 'A program that will display a messagebox with the text "' .      $infotowrite.'" is available <a href="' . $path . '">here</a> for download.';
?>

但是作者现在不在线,这个程序不能正常工作。

完整的教程在这里 http://pastebin.com/aiAZSP2K

请帮助解决这个问题。

PHP vb.net EOF

评论


答: 暂无答案