Free edition VB to C++ Converter
Informations
Créateur | Messages |
---|---|
wrigh347
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience0 0 DescriptionFree edition VB to C++ Converter is a Visual Basic .NET to C++ converter. Code source#!/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:
ContribuerMembre | Messages |
wrigh347 | Samedi 11 Avril 2015 à 22:30 |
wrigh347
|
InformationCette mise à jour a été acceptée par l'équipe MessagesThis 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 Nouveau code source#!/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 RéponsesSamedi 11 Avril 2015 à 22:34
|
wrigh347 | Mercredi 1 Avril 2015 à 1:34 |
wrigh347
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesI 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 Nouveau code source#!/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 Réponses |
Ronin DUSETTE | Mardi 31 Mars 2015 à 6:54 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesAdded 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 Nouveau code source#!/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 RéponsesEdité par RoninDusette |
petch | Lundi 30 Mars 2015 à 18:14 |
petch
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesAdded 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 Nouveau code source#!/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 RéponsesLundi 30 Mars 2015 à 18:27
Lundi 30 Mars 2015 à 19:32
Lundi 30 Mars 2015 à 19:35
Lundi 30 Mars 2015 à 19:48
Mardi 31 Mars 2015 à 6:51
Mardi 31 Mars 2015 à 7:56
Mardi 31 Mars 2015 à 17:58
|
wrigh347 | Dimanche 29 Mars 2015 à 19:44 |
wrigh347
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesThis 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 Nouveau code source#!/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 RéponsesLundi 30 Mars 2015 à 17:56
Lundi 30 Mars 2015 à 18:09
Lundi 30 Mars 2015 à 18:17
Lundi 30 Mars 2015 à 18:27
|
wrigh347 | Dimanche 29 Mars 2015 à 4:51 |
wrigh347
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 RéponsesDimanche 29 Mars 2015 à 10:48
|
wrigh347 | Dimanche 29 Mars 2015 à 3:55 |
wrigh347
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesFree 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 Nouveau code source#!/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 Réponses |
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