Picking Up the Pace on PowerExtension
-
Thursday, October 11, 2012 2:17 AM
Hello, everyone! I am very sorry for the time I have taken off developing PowerExtension and fixing its bugs. I have decided to pick back up development of PowerExtension. I am very pleased with some of the new suggestions like:
PowerData to store information quickly without having to write to a .TXT file. All the set, new, get, and clear commands would be in the module.
PowerConfiguration to store user variables like window size, high scores, usernames, and more easily.
PowerChar to convert numbers and letters to other formats and check their type.
If you have any ideas, please feel free to post them below. Also, if you have a program that uses PowerExtension and you would like it to be packages with PowerExtension as an example program, please feel free to post those. Thank you!
-Noah J. Buscher "Coding is Art"
- Edited by Noah Buscher Thursday, October 11, 2012 2:17 AM
- Changed Type Noah Buscher Friday, October 12, 2012 10:56 PM
- Changed Type Noah Buscher Friday, October 12, 2012 10:56 PM
All Replies
-
Thursday, October 11, 2012 2:50 AMI'm glad to see that your coming back to work on PowerExtension!
I am a 10 year old that loves math, games, and computers. "Everyone is potentially great, you just have to turn it into kinetic greatness."
-
Thursday, October 11, 2012 10:39 PMYes! I just got working with a new developer with some great ideas, so please stay tuned on what's to come! :)
-Noah J. Buscher "Coding is Art"
-
Thursday, October 11, 2012 10:43 PMI heard some rumours, is it true that there will be a GERMAN version of PowerExtension?
it's not a bug- it's a feature
-
Thursday, October 11, 2012 10:52 PM
I heard some rumours, is it true that there will be a GERMAN version of PowerExtension?
it's not a bug- it's a feature
Yes! We hope to release it soon!-Noah J. Buscher "Coding is Art"
-
Saturday, October 13, 2012 5:54 PMThe German version of PowerExtension is now available for download! Enjoy!
-Noah J. Buscher "Coding is Art"
-
Saturday, October 13, 2012 8:34 PM
And where can I download it in my mother language? :D (German)
I can't find a link. I look if your grammar is right. :P
Greetings Timo
-
Saturday, October 13, 2012 8:38 PM
usually here: https://powerextension.codeplex.com/
there it was at least yesterday /zumindest gestern war's noch dort...
it's not a bug- it's a feature
-
Saturday, October 13, 2012 8:44 PM
And where can I download it in my mother language? :D (German)
I can't find a link. I look if your grammar is right. :P
Greetings Timo
It is in the Downloads page... http://powerextension.codeplex.com/releases/view/96140. :)-Noah J. Buscher "Coding is Art"
-
Saturday, October 13, 2012 8:51 PM
You've got there a spelling mistake, but not in your german text : there it reads "Power Exension"...
I assume that the english version is not to be supposed to stay inside the 'lib'-folder any longer?
it's not a bug- it's a feature
- Edited by Rene_Miner Saturday, October 13, 2012 8:58 PM
-
Saturday, October 13, 2012 9:02 PM
You've got there a spelling mistake, but not in your german text : there it reads "Power Exension"...
I assume that the english version is not to be supposed to stay inside the 'lib'-folder any longer?
it's not a bug- it's a feature
Can you clarify? Thanks!-Noah J. Buscher "Coding is Art"
-
Saturday, October 13, 2012 9:03 PMHEAD OVER TO THE POWEREXTENSION PAGE TO SEE A NEW COMMERCIAL!
-Noah J. Buscher "Coding is Art"
-
Saturday, October 13, 2012 9:24 PM
https://powerextension.codeplex.com/releases/view/96140
lower left area, two lines
German Version for PowerEx(t)ension / shouldn't be "of"?
deutsche Version für PowerEx(t)ension / should be "von" or "der" instead of "für" or just leave it out, that's deutsch!
it's not a bug- it's a feature
- Edited by Rene_Miner Saturday, October 13, 2012 9:42 PM
-
Sunday, October 14, 2012 1:23 AMAnswerer
Hey guys! I, as part of the PowerPlus team and IndyDev software member, am working on a Spanish translation of the PowerPlus extension. Here is what I have so far (for the file class):
Imports System Imports Microsoft.SmallBasic.Library Imports System.Threading Imports System.IO Imports System.Windows.Forms Imports System.Net.Mail Imports System.Collections.Generic Imports System.Text Imports System.Windows Imports System.Reflection Imports System.Diagnostics Imports System.Speech.Synthesis ''' <summary> ''' Se permite performar diversas operaciones de archivo ''' </summary> <SmallBasicType()> _ Public Module PoderExpediente ''' <summary> ''' Se permite renombar archivos ''' </summary> ''' <param name="filePath">La ruta del archivo</param> ''' <param name="newName">Nuevo nombre del archivo</param> ''' <returns></returns> ''' <remarks></remarks> Public Function RenameFile(ByVal FilePath As Primitive, ByVal NewName As Primitive) As Primitive My.Computer.FileSystem.RenameFile(FilePath.ToString, NewName.ToString) End Function ''' <summary> ''' Se permite mover archivos ''' </summary> ''' <param name="SourceFilePath">La ruta del archivo</param> ''' <param name="NewFilePath">La ruta nueva del archivo</param> ''' <returns></returns> ''' <remarks></remarks> Public Function ReLocate(ByVal SourceFilePath As Primitive, ByVal NewFilePath As Primitive) As Primitive My.Computer.FileSystem.MoveFile(SourceFilePath.ToString, NewFilePath.ToString) End Function ''' <summary> ''' Se permite comprobar si existe un archivo ''' </summary> ''' <param name="SourceFilePath">La ruta del archivo</param> ''' <returns>Cierto si existe un archivo, o Flaso si no lo existe</returns> ''' <remarks></remarks> Public Function FileExists(ByVal SourceFilePath As Primitive) As Primitive If My.Computer.FileSystem.FileExists(SourceFilePath.ToString) = "True" Then Return "Cierto" Else Return "Falso" End If End Function ''' <summary> ''' Se permite leer el contenido de un archivo ''' </summary> ''' <param name="SourceFilePath">La ruta del archivo</param> ''' <returns>El texto del archivo</returns> ''' <remarks></remarks> Public Function Read(ByVal SourceFilePath As Primitive) As Primitive Return My.Computer.FileSystem.ReadAllText(SourceFilePath) End Function ''' <summary> ''' Se permite escribir a un archivo de texto ''' </summary> ''' <param name="SourceFilePath">La ruta del archivo</param> ''' <param name="Contents">El texto para escribir</param> ''' <returns></returns> ''' <remarks></remarks> Public Function Write(ByVal SourceFilePath As Primitive, ByVal Contents As Primitive) As Primitive My.Computer.FileSystem.WriteAllText(SourceFilePath.ToString, Contents.ToString, True) End Function ''' <summary> ''' Se permite eliminar un archivo ''' </summary> ''' <param name="DeleteFilePath">El archivo para eliminar</param> ''' <returns></returns> ''' <remarks></remarks> Public Function DeleteFile(ByVal DeleteFilePath As Primitive) As Primitive My.Computer.FileSystem.DeleteFile(DeleteFilePath.ToString) End Function ''' <summary> ''' Se permite crear directorios ''' </summary> ''' <param name="FilePath">La ruta del directorio nuevo</param> ''' <returns></returns> ''' <remarks></remarks> Public Function CreateDirectory(ByVal FilePath As Primitive) As Primitive My.Computer.FileSystem.CreateDirectory(FilePath.ToString) End Function ''' <summary> '''Se permite eliminar directorios ''' </summary> ''' <param name="FilePath">La ruta del directiorio para deleter</param> ''' <returns></returns> ''' <remarks></remarks> Public Function DeleteDirectory(ByVal FilePath As Primitive) As Primitive My.Computer.FileSystem.DeleteDirectory(FilePath.ToString, FileIO.DeleteDirectoryOption.DeleteAllContents) End Function End Module
I know that there are quite a few Spanish speakers on these forums. I am a high school student in third year Spanish but would like some help (and corrections =) ). Anybody want to work with me?
- Edited by gungan37Editor Sunday, October 14, 2012 1:24 AM Typo
-
Sunday, October 14, 2012 10:03 AM
https://powerextension.codeplex.com/releases/view/96140
lower left area, two lines
German Version for PowerEx(t)ension / shouldn't be "of"?
deutsche Version für PowerEx(t)ension / should be "von" or "der" instead of "für" or just leave it out, that's deutsch!
it's not a bug- it's a feature
Nah Rene. "deutsche" has a capital letter at the start! So it must be
Deutsche Version (von) der PowerExtension
And Rene is right. You spelled PowerExtension on the downloadside false.
And thanks very much for the downloadlink. I will try it now. :D
Greetings Timo
- Edited by Timo Sö Sunday, October 14, 2012 10:06 AM

