Free edition VB to C++ Converter
Informations
| Creator | Meddelanden |
|---|---|
wrigh347
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks0 0 DescriptionFree edition VB to C++ Converter is a Visual Basic .NET to C++ converter. Source code#!/usr/bin/env playonlinux-bash
# Date : (2015-03-28 19-49)
# Last revision : (2015-04-11 15-23)
# Wine version used : 1.7.40
# Distribution used to test : Linux Mint 17.1 LTS
# Author : wrigh347
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Free edition VB to C++ Converter"
PREFIX="freeVB2CPP"
WINEVERSION="1.7.40"
POL_SetupWindow_Init
POL_SetupWindow_SetID 2486
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Tangible Software Solutions Inc." "http://www.tangiblesoftwaresolutions.com" "wrigh347" "$PREFIX"
# Create a 32bit virtual drive
POL_System_SetArch "x86"
POL_System_TmpCreate "VBtoCPP"
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "$(eval_gettext 'Please select the installation file to run.')" "$TITLE installation"
INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://www.tangiblesoftwaresolutions.com/Free_Edition_Downloads/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe"
INSTALLER="$POL_System_TmpDir/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe"
fi
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
POL_Call POL_Install_dotnet40
POL_Call POL_Install_riched30
POL_Call POL_Install_corefonts
POL_Wine_WaitExit "$TITLE"
POL_Wine "$INSTALLER"
POL_System_TmpDelete
POL_Shortcut "Free Edition VB to C++ Converter.exe" "$TITLE"
POL_SetupWindow_Close
exit 0 |
Contributions
Filters:
Contribute| Member | Meddelanden |
| wrigh347 | Saturday 11 April 2015 at 22:30 |
wrigh347
|
InformationThis update has been approved by the team. MeddelandenThis is a fix of a bug that makes it impossible to paste code into the file & snippet converter section. I updated the wine version too. I tested it and it works.
Differences@@ -1,31 +1,32 @@
#!/usr/bin/env playonlinux-bash
# Date : (2015-03-28 19-49)
-# Last revision : (2015-03-29 12-42)
-# Wine version used : System
+# Last revision : (2015-04-11 15-23)
+# Wine version used : 1.7.40
# Distribution used to test : Linux Mint 17.1 LTS
# Author : wrigh347
-
+
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
-
+
TITLE="Free edition VB to C++ Converter"
PREFIX="freeVB2CPP"
-WINEVERSION="1.7.39"
+WINEVERSION="1.7.40"
+
POL_SetupWindow_Init
POL_SetupWindow_SetID 2486
-
+
POL_Debug_Init
-
+
POL_SetupWindow_presentation "$TITLE" "Tangible Software Solutions Inc." "http://www.tangiblesoftwaresolutions.com" "wrigh347" "$PREFIX"
-
+
# Create a 32bit virtual drive
POL_System_SetArch "x86"
-
+
POL_System_TmpCreate "VBtoCPP"
-
+
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
-
+
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "$(eval_gettext 'Please select the installation file to run.')" "$TITLE installation"
@@ -36,19 +37,21 @@
POL_Download "http://www.tangiblesoftwaresolutions.com/Free_Edition_Downloads/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe"
INSTALLER="$POL_System_TmpDir/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe"
fi
-
+
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
POL_Call POL_Install_dotnet40
-
+POL_Call POL_Install_riched30
+POL_Call POL_Install_corefonts
+
POL_Wine_WaitExit "$TITLE"
POL_Wine "$INSTALLER"
-
+
POL_System_TmpDelete
-
-POL_Shortcut "Free Edition VB to C++ Converter.exe" "$TITLE"
+POL_Shortcut "Free Edition VB to C++ Converter.exe" "$TITLE"
+
POL_SetupWindow_Close
-
+
exit 0
\ No newline at end of file
New source code#!/usr/bin/env playonlinux-bash
# Date : (2015-03-28 19-49)
# Last revision : (2015-04-11 15-23)
# Wine version used : 1.7.40
# Distribution used to test : Linux Mint 17.1 LTS
# Author : wrigh347
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Free edition VB to C++ Converter"
PREFIX="freeVB2CPP"
WINEVERSION="1.7.40"
POL_SetupWindow_Init
POL_SetupWindow_SetID 2486
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Tangible Software Solutions Inc." "http://www.tangiblesoftwaresolutions.com" "wrigh347" "$PREFIX"
# Create a 32bit virtual drive
POL_System_SetArch "x86"
POL_System_TmpCreate "VBtoCPP"
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "$(eval_gettext 'Please select the installation file to run.')" "$TITLE installation"
INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://www.tangiblesoftwaresolutions.com/Free_Edition_Downloads/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe"
INSTALLER="$POL_System_TmpDir/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe"
fi
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
POL_Call POL_Install_dotnet40
POL_Call POL_Install_riched30
POL_Call POL_Install_corefonts
POL_Wine_WaitExit "$TITLE"
POL_Wine "$INSTALLER"
POL_System_TmpDelete
POL_Shortcut "Free Edition VB to C++ Converter.exe" "$TITLE"
POL_SetupWindow_Close
exit 0 SvarSaturday 11 April 2015 at 22:34
|
| wrigh347 | Wednesday 1 April 2015 at 1:34 |
wrigh347
|
WarningThis update has not been approved yet by the team. MeddelandenI just added a specific wine version as suggested. Differences@@ -10,6 +10,7 @@ TITLE="Free edition VB to C++ Converter" PREFIX="freeVB2CPP" +WINEVERSION="1.7.39" POL_SetupWindow_Init POL_SetupWindow_SetID 2486 @@ -37,7 +38,7 @@ fi POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate +POL_Wine_PrefixCreate "$WINEVERSION" POL_Call POL_Install_dotnet40 New source code#!/usr/bin/env playonlinux-bash
# Date : (2015-03-28 19-49)
# Last revision : (2015-03-29 12-42)
# Wine version used : System
# Distribution used to test : Linux Mint 17.1 LTS
# Author : wrigh347
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Free edition VB to C++ Converter"
PREFIX="freeVB2CPP"
WINEVERSION="1.7.39"
POL_SetupWindow_Init
POL_SetupWindow_SetID 2486
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Tangible Software Solutions Inc." "http://www.tangiblesoftwaresolutions.com" "wrigh347" "$PREFIX"
# Create a 32bit virtual drive
POL_System_SetArch "x86"
POL_System_TmpCreate "VBtoCPP"
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "$(eval_gettext 'Please select the installation file to run.')" "$TITLE installation"
INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://www.tangiblesoftwaresolutions.com/Free_Edition_Downloads/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe"
INSTALLER="$POL_System_TmpDir/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe"
fi
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
POL_Call POL_Install_dotnet40
POL_Wine_WaitExit "$TITLE"
POL_Wine "$INSTALLER"
POL_System_TmpDelete
POL_Shortcut "Free Edition VB to C++ Converter.exe" "$TITLE"
POL_SetupWindow_Close
exit 0 Svar |
| Ronin DUSETTE | Tuesday 31 March 2015 at 6:54 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. MeddelandenAdded the correct exit code at the end and deleted un-needed whitespace and newlines. Differences@@ -4,6 +4,7 @@
# Wine version used : System
# Distribution used to test : Linux Mint 17.1 LTS
# Author : wrigh347
+
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
@@ -14,16 +15,16 @@
POL_SetupWindow_SetID 2486
POL_Debug_Init
-
+
POL_SetupWindow_presentation "$TITLE" "Tangible Software Solutions Inc." "http://www.tangiblesoftwaresolutions.com" "wrigh347" "$PREFIX"
-
+
# Create a 32bit virtual drive
POL_System_SetArch "x86"
POL_System_TmpCreate "VBtoCPP"
-
+
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
-
+
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "$(eval_gettext 'Please select the installation file to run.')" "$TITLE installation"
@@ -34,20 +35,19 @@
POL_Download "http://www.tangiblesoftwaresolutions.com/Free_Edition_Downloads/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe"
INSTALLER="$POL_System_TmpDir/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe"
fi
-
+
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate
POL_Call POL_Install_dotnet40
-
+
POL_Wine_WaitExit "$TITLE"
POL_Wine "$INSTALLER"
-
-
POL_System_TmpDelete
-
+
POL_Shortcut "Free Edition VB to C++ Converter.exe" "$TITLE"
POL_SetupWindow_Close
-exit
\ No newline at end of file
+
+exit 0
\ No newline at end of file
New source code#!/usr/bin/env playonlinux-bash
# Date : (2015-03-28 19-49)
# Last revision : (2015-03-29 12-42)
# Wine version used : System
# Distribution used to test : Linux Mint 17.1 LTS
# Author : wrigh347
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Free edition VB to C++ Converter"
PREFIX="freeVB2CPP"
POL_SetupWindow_Init
POL_SetupWindow_SetID 2486
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Tangible Software Solutions Inc." "http://www.tangiblesoftwaresolutions.com" "wrigh347" "$PREFIX"
# Create a 32bit virtual drive
POL_System_SetArch "x86"
POL_System_TmpCreate "VBtoCPP"
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "$(eval_gettext 'Please select the installation file to run.')" "$TITLE installation"
INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://www.tangiblesoftwaresolutions.com/Free_Edition_Downloads/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe"
INSTALLER="$POL_System_TmpDir/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe"
fi
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate
POL_Call POL_Install_dotnet40
POL_Wine_WaitExit "$TITLE"
POL_Wine "$INSTALLER"
POL_System_TmpDelete
POL_Shortcut "Free Edition VB to C++ Converter.exe" "$TITLE"
POL_SetupWindow_Close
exit 0 SvarÄndrat av RoninDusette |
| petch | Monday 30 March 2015 at 18:14 |
petch
|
WarningThis update has not been approved yet by the team. MeddelandenAdded localization support Differences@@ -11,6 +11,7 @@
PREFIX="freeVB2CPP"
POL_SetupWindow_Init
+POL_SetupWindow_SetID 2486
POL_Debug_Init
@@ -25,7 +26,7 @@
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
- POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation"
+ POL_SetupWindow_browse "$(eval_gettext 'Please select the installation file to run.')" "$TITLE installation"
INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
New source code#!/usr/bin/env playonlinux-bash
# Date : (2015-03-28 19-49)
# Last revision : (2015-03-29 12-42)
# Wine version used : System
# Distribution used to test : Linux Mint 17.1 LTS
# Author : wrigh347
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Free edition VB to C++ Converter"
PREFIX="freeVB2CPP"
POL_SetupWindow_Init
POL_SetupWindow_SetID 2486
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Tangible Software Solutions Inc." "http://www.tangiblesoftwaresolutions.com" "wrigh347" "$PREFIX"
# Create a 32bit virtual drive
POL_System_SetArch "x86"
POL_System_TmpCreate "VBtoCPP"
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "$(eval_gettext 'Please select the installation file to run.')" "$TITLE installation"
INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://www.tangiblesoftwaresolutions.com/Free_Edition_Downloads/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe"
INSTALLER="$POL_System_TmpDir/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe"
fi
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate
POL_Call POL_Install_dotnet40
POL_Wine_WaitExit "$TITLE"
POL_Wine "$INSTALLER"
POL_System_TmpDelete
POL_Shortcut "Free Edition VB to C++ Converter.exe" "$TITLE"
POL_SetupWindow_Close
exit SvarMonday 30 March 2015 at 18:27
Monday 30 March 2015 at 19:32
Monday 30 March 2015 at 19:35
Monday 30 March 2015 at 19:48
Tuesday 31 March 2015 at 6:51
Tuesday 31 March 2015 at 7:56
Tuesday 31 March 2015 at 17:58
|
| wrigh347 | Sunday 29 March 2015 at 19:44 |
wrigh347
|
WarningThis update has not been approved yet by the team. MeddelandenThis one should work. Differences@@ -0,0 +1,52 @@ +#!/usr/bin/env playonlinux-bash +# Date : (2015-03-28 19-49) +# Last revision : (2015-03-29 12-42) +# Wine version used : System +# Distribution used to test : Linux Mint 17.1 LTS +# Author : wrigh347 +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Free edition VB to C++ Converter" +PREFIX="freeVB2CPP" + +POL_SetupWindow_Init + +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "Tangible Software Solutions Inc." "http://www.tangiblesoftwaresolutions.com" "wrigh347" "$PREFIX" + +# Create a 32bit virtual drive +POL_System_SetArch "x86" + +POL_System_TmpCreate "VBtoCPP" + +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" + +if [ "$INSTALL_METHOD" = "LOCAL" ] +then + POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation" + INSTALLER="$APP_ANSWER" +elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "http://www.tangiblesoftwaresolutions.com/Free_Edition_Downloads/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe" + INSTALLER="$POL_System_TmpDir/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe" +fi + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate + +POL_Call POL_Install_dotnet40 + +POL_Wine_WaitExit "$TITLE" +POL_Wine "$INSTALLER" + + + +POL_System_TmpDelete + +POL_Shortcut "Free Edition VB to C++ Converter.exe" "$TITLE" + +POL_SetupWindow_Close +exit \ No newline at end of file New source code#!/usr/bin/env playonlinux-bash
# Date : (2015-03-28 19-49)
# Last revision : (2015-03-29 12-42)
# Wine version used : System
# Distribution used to test : Linux Mint 17.1 LTS
# Author : wrigh347
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Free edition VB to C++ Converter"
PREFIX="freeVB2CPP"
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Tangible Software Solutions Inc." "http://www.tangiblesoftwaresolutions.com" "wrigh347" "$PREFIX"
# Create a 32bit virtual drive
POL_System_SetArch "x86"
POL_System_TmpCreate "VBtoCPP"
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation"
INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://www.tangiblesoftwaresolutions.com/Free_Edition_Downloads/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe"
INSTALLER="$POL_System_TmpDir/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe"
fi
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate
POL_Call POL_Install_dotnet40
POL_Wine_WaitExit "$TITLE"
POL_Wine "$INSTALLER"
POL_System_TmpDelete
POL_Shortcut "Free Edition VB to C++ Converter.exe" "$TITLE"
POL_SetupWindow_Close
exit SvarMonday 30 March 2015 at 17:56
Monday 30 March 2015 at 18:09
Monday 30 March 2015 at 18:17
Monday 30 March 2015 at 18:27
|
| wrigh347 | Sunday 29 March 2015 at 4:51 |
wrigh347
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,50 @@ +#!/usr/bin/env playonlinux-bash +# Date : (2015-03-28 19-49) +# Last revision : (2015-03-28 20-33) +# Wine version used : System +# Distribution used to test : Linux Mint 17.1 LTS +# Author : wrigh347 +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Free edition VB to C++ Converter" +PREFIX="freeVB2CPP" + +POL_SetupWindow_Init + +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "Tangible Software Solutions Inc." "http://www.tangiblesoftwaresolutions.com" "wrigh347" "$PREFIX" + +# Create a 32bit virtual drive +POL_System_SetArch "x86" + +POL_System_TmpCreate "VBtoCPP" + +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" + +if [ "$INSTALL_METHOD" = "LOCAL" ] +then + POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation" + INSTALLER="$APP_ANSWER" +elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "http://www.tangiblesoftwaresolutions.com/Free_Edition_Downloads/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe" + INSTALLER="$POL_System_TmpDir/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe" +fi + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate + +POL_Install_dotnet35 + +POL_Wine_WaitExit "$TITLE" +POL_Wine "$INSTALLER" + +POL_System_TmpDelete + +POL_Shortcut "Free Edition VB to C++ Converter.exe" "$TITLE" + +POL_SetupWindow_Close +exit \ No newline at end of file New source code#!/usr/bin/env playonlinux-bash
# Date : (2015-03-28 19-49)
# Last revision : (2015-03-28 20-33)
# Wine version used : System
# Distribution used to test : Linux Mint 17.1 LTS
# Author : wrigh347
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Free edition VB to C++ Converter"
PREFIX="freeVB2CPP"
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Tangible Software Solutions Inc." "http://www.tangiblesoftwaresolutions.com" "wrigh347" "$PREFIX"
# Create a 32bit virtual drive
POL_System_SetArch "x86"
POL_System_TmpCreate "VBtoCPP"
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation"
INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://www.tangiblesoftwaresolutions.com/Free_Edition_Downloads/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe"
INSTALLER="$POL_System_TmpDir/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe"
fi
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate
POL_Install_dotnet35
POL_Wine_WaitExit "$TITLE"
POL_Wine "$INSTALLER"
POL_System_TmpDelete
POL_Shortcut "Free Edition VB to C++ Converter.exe" "$TITLE"
POL_SetupWindow_Close
exit SvarSunday 29 March 2015 at 10:48
|
| wrigh347 | Sunday 29 March 2015 at 3:55 |
wrigh347
|
WarningThis update has not been approved yet by the team. MeddelandenFree edition VB to C++ Converter is a free Visual Basic to C++ code converter. Differences@@ -0,0 +1,50 @@ +#!/usr/bin/env playonlinux-bash +# Date : (2015-03-28 19-49) +# Last revision : (2015-03-28 20-33) +# Wine version used : System +# Distribution used to test : Linux Mint 17.1 LTS +# Author : wrigh347 +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Free edition VB to C++ Converter" +PREFIX="freeVB2CPP" + +POL_SetupWindow_Init + +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "Tangible Software Solutions Inc." "http://www.tangiblesoftwaresolutions.com" "wrigh347" "$PREFIX" + +# Create a 32bit virtual drive +POL_System_SetArch "x86" + +POL_System_TmpCreate "VBtoCPP" + +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" + +if [ "$INSTALL_METHOD" = "LOCAL" ] +then + POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation" + INSTALLER="$APP_ANSWER" +elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "http://www.tangiblesoftwaresolutions.com/Free_Edition_Downloads/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe" + INSTALLER="$POL_System_TmpDir/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe" +fi + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate + +POL_Install_dotnet35 + +POL_SetupWindow_wait "Installation in progress." "$TITLE installation" +POL_Wine "$INSTALLER" + +POL_System_TmpDelete + +POL_Shortcut "Free Edition VB to C++ Converter.exe" "$TITLE" + +POL_SetupWindow_Close +exit \ No newline at end of file New source code#!/usr/bin/env playonlinux-bash
# Date : (2015-03-28 19-49)
# Last revision : (2015-03-28 20-33)
# Wine version used : System
# Distribution used to test : Linux Mint 17.1 LTS
# Author : wrigh347
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Free edition VB to C++ Converter"
PREFIX="freeVB2CPP"
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Tangible Software Solutions Inc." "http://www.tangiblesoftwaresolutions.com" "wrigh347" "$PREFIX"
# Create a 32bit virtual drive
POL_System_SetArch "x86"
POL_System_TmpCreate "VBtoCPP"
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation"
INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://www.tangiblesoftwaresolutions.com/Free_Edition_Downloads/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe"
INSTALLER="$POL_System_TmpDir/VB%20to%20C++%20Converter%20(Free%20Edition)%20Setup.exe"
fi
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate
POL_Install_dotnet35
POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
POL_Wine "$INSTALLER"
POL_System_TmpDelete
POL_Shortcut "Free Edition VB to C++ Converter.exe" "$TITLE"
POL_SetupWindow_Close
exit Svar |
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com
Install this program 