Menú

Mostrar Mensajes

Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.

Mostrar Mensajes Menú

Mensajes - Eleкtro

#9701
Cita de: spiritdead en  1 Enero 2013, 00:24 AM
si lo necesitas urgente, avisame y por teamviewver se te enseña rapido, dificil no es XD

Gracias spiritdead pero no me urge, aún estoy aprendiendo a usar el listview convencional.




@seba123Neo

¿Como lo hago funcionar?

Me da error en las variables:
vColumnaOrden
   vOrden

Dicen que no están declaradas, y no se con que tipo de valor debo setearlas ni nada xD

Código (vbnet) [Seleccionar]
 Private Sub GListView_ColumnClick(ByVal sender As Object, ByVal e As System.Windows.Forms.ColumnClickEventArgs) Handles GListView.ColumnClick

       Dim vIndiceColumna As ColumnHeader = GListView.Columns(e.Column)

       Dim vTipoOrden As System.Windows.Forms.SortOrder

       If vColumnaOrden Is Nothing Then
           vTipoOrden = SortOrder.Ascending
           vOrden = SortOrder.Ascending
       Else
           If vIndiceColumna.Equals(vColumnaOrden) Then
               If vOrden = SortOrder.Ascending Then
                   vTipoOrden = SortOrder.Descending
                   vOrden = SortOrder.Descending
               Else
                   vTipoOrden = SortOrder.Ascending
                   vOrden = SortOrder.Ascending
               End If
           Else
               vTipoOrden = SortOrder.Ascending
               vOrden = SortOrder.Ascending
           End If
       End If

       vColumnaOrden = vIndiceColumna

       GListView.ListViewItemSorter = New COrdenarListview(e.Column, vTipoOrden)
       GListView.Sort()
   End Sub





EDITO:
Seba123Neo, si no he captado mal la idea, al final lo he hecho así, y funciona bien, pero no sé si es peor que tu snippet:



Código (vbnet) [Seleccionar]
   
' En las declaraciones...
Dim ColumnOrder As String = "Down"


Private Sub GListView_ColumnClick(ByVal sender As Object, ByVal e As System.Windows.Forms.ColumnClickEventArgs) Handles GListView.ColumnClick
       If ColumnOrder = "Down" Then
           Me.GListView.ListViewItemSorter = New COrdenarListview(e.Column, SortOrder.Ascending)
           GListView.Sort()
           ColumnOrder = "Up"
       ElseIf ColumnOrder = "Up" Then
           Me.GListView.ListViewItemSorter = New COrdenarListview(e.Column, SortOrder.Descending)
           GListView.Sort()
           ColumnOrder = "Down"
       End If
   End Sub
#9702
Ya lo he conseguido, os dejo la solución (Vivan los snippets xD):


Main form:

Código (vbnet) [Seleccionar]
   Private Sub OnMouseHover(sender As Object, e As EventArgs) Handles Button1.MouseHover
       Form2.Show()
   End Sub

   Private Sub OnMouseLeave(sender As Object, e As EventArgs) Handles Button1.MouseLeave
       ' Hay que liberarlo, con un form2.close o form2.hide solo conseguiremos que se centre la primera vez!
       Form2.Dispose()
   End Sub

#Region " CenterForm function "

   Function centerForm(ByVal Form_to_Center As Form, ByVal Form_Location As Point) As Point
       Dim pLocation As New Point
       pLocation.X = (Me.Left + (Me.Width - Form_to_Center.Width) / 2) '// set the X coordinates.
       pLocation.Y = (Me.Top + (Me.Height - Form_to_Center.Height) / 2) '// set the Y coordinates.
       Return pLocation '// return the Location to the Form it was called from.
   End Function

#End Region


Form secundario:
Código (vbnet) [Seleccionar]
   Private Sub Form2_Load(sender As Object, e As EventArgs) Handles MyBase.Load
       Me.Location = Form1.centerForm(Me, Me.Location)
   End Sub
#9703
tendré en cuenta sus sugerencias, gracias
#9704
Esto no sé hacerlo así que he buscado en Google,
He probado las 2 maneras que se comentan aquí pero ninguna me funciona: http://stackoverflow.com/questions/1000510/how-to-get-the-names-of-all-resources-in-a-resource-file

Necesito hacer algo así:

Código (vbnet) [Seleccionar]
  Private Sub SearchInResources(ByVal PatternSTR As String)
       For Each ResourceFile In My.Resources ' Esto no funciona cláramente xD
           If ResourceFile.EndsWith(".txt") Then
               Dim fileContent As String = ResourceFile
               Dim stringStream As New System.IO.StringReader(fileContent)
               If stringStream.contains(PatternSTR) Then
                   ' Cosas...
               End If
           End If
       Next
   End Sub
#9705
Bueno, está es la aplicación oficial donde voy a intentar vender unas cosas por internet así que necesito perfeccionarla lo máximo posible...

De nuevo les pido sugerencias acerca del diseño, siempre es lo que más me preocupa xD

¿Lo ven bien diseñado?
¿Bien reparticionado la posicion y el tamaño de los elementos?
¿gusta o no gusta visiblemente hablando?
¿Cambiarian algo? (aparte de los botones feos azules xD)
¿Algo que crean que se pueda mejorar?

Gracias a los que comenten  ;D



#9706
El ejercicio se puede simplificar mucho xD

Código (vbnet) [Seleccionar]
Public Class Form1
    Private Sub BtnSalir_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnSalir.Click
        Application.Exit()
    End Sub

    Private Sub BtnTexto_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnTexto.Click
        My.Computer.FileSystem.WriteAllText(Environment.CurrentDirectory & "\" & Me.TxtNombre.Text & ".TXT", Me.TxtTexto.Text, False)
    End Sub
End Class


Saludos!
#9707
En el evento OnMouseHover de un picturebox estoy intentando mostrar un form con la propiedad "CenterParent", pero cuando intento emparentar el form no me deja iniciar la aplicación y me salta error.

Código (vbnet) [Seleccionar]
   Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
       Try
           Form2.Parent = Me
       Catch ex As Exception
           MsgBox(ex.Message)
           ' Error: top-level control cannot be added to a control
       End Try
   End Sub
#9708
Los robots no estamos programados para dormir,

Me alegra que a alguno le sirva el pack

Un saludo!
#9709
Cita de: Danyfirex en  7 Enero 2013, 14:57 PM
googleando 1 Minuto conseguí este código.  :silbar:

Idem.

Este es un poco distinto.

Código (python) [Seleccionar]
def ascii_to_bin(char):
ascii = ord(char)
bin = []
while (ascii > 0):
if (ascii & 1) == 1:
bin.append("1")
else:
bin.append("0")
ascii = ascii >> 1
bin.reverse()
binary = "".join(bin)
zerofix = (8 - len(binary)) * '0'
return zerofix + binary


# Ejemplo:

String = 'hello'

binary = []
for char in String:
binary.append(ascii_to_bin(char))

print binary
print " ".join(binary) # 01101000 01100101 01101100 01101100 01101111


Saludos
#9710
MEGA-PACK DE VISUAL STUDIO 2012
Contiene un instalador personalizado + Recursos de todo tipo



¡ Llegó la nueva versión actualizada del instalador !

He corregido un error que sufrieron algunas personas con la carpeta de instalación del VS en la version antigua de este instalador...
Además lo he optimizado tanto en el sistema de la instalación de los componentes, como en su desinstalación... ...Y contiene más librerías, más controles, y más snippets!



El instalador contiene todo lo necesario para empezar a programar en .NET, aunque está ligéramente orientado al desarrollo para VB.NET.


La instalación completa y la instalación por defecto han sido testeadas en Windows 7 de 32 y 64 Bits, en Windows XP tampoco debería haber problemas.



Imágenes:

   

   

   



   



Contenido:


  • Componentes originales opcionales de VS2012 (Paquetes offline):
    .NET FX 4
    .NET FX 4.5
    Bliss
    Report Viewer
    IntelliTrace
    SDK Tools 3
    SDK Tools 4
    WCF Data Services


  • Componentes originales opcionales de VS2012 (Paquetes descargables):
    Blend
    Microsoft Foundation Class For C++
    Microsoft Help Viewer 2.0
    Microsoft LightSwitch
    Microsoft office developer tools
    Microsoft portable library multi-targeting pack
    Microsoft report viewer add-on
    Microsoft sharepoint developer tools
    Microsoft silverlight 5 SDK
    Microsoft SQL DAC
    Microsoft SQL DOM
    Microsoft SQL Server 2012 Express LocalDB
    Microsoft SQL Server 2012 management objects
    Microsoft SQL Server 2012 system clr types
    Microsoft SQL Server 2012 transact-SQL
    Microsoft SQL Server Compact Edition
    Microsoft SQL Server Compact edition tools
    Microsoft SQL Server Data tools
    Microsoft Visual c++ 2012 Compilers
    Microsoft Visual c++ 2012 core libraries
    Microsoft Visual c++ 2012 debug runtime
    Microsoft Visual c++ 2012 desingtime
    Microsoft Visual c++ 2012 extended libraries
    Microsoft Visual Studio team foundation server 2012 storyboarding
    Microsoft web deploy dsqlpackage provider
    Microsoft web developer tools
    Silverlight developer kit
    Visual Studio Analytics
    Visual Studio Dotfuscator
    Visual Studio extensions for windows library for javascript
    Visual Studio profiler
    WCF RIA Services 1.0 SP2
    Windows Software development kit


  • Idiomas para la IDE:
    Castellano


  • Extensiones para la IDE:
    Auto Scroll
    Batch Format
    Code Jumper
    Image optimizer
    Language convert
    Middle click to definition
    Piczard
    Progressive Scrool
    Regular expression tester
    Sticky highlight
    Toogle tabs
    Translator
    Trout Zoom
    XAML Styler


  • Librerías:
    DotNetZip
    EASendMail
    MediaInfo
    SevenZipSharp
    VistaCoreAudioApi


  • Controles (Suites y Toolkits):
    Ai Controls
    Cloud Toolkit
    DotNetBar
    Extended Dot Net
    Krypton
    ObjectListView
    WindowsFormsToolkit


  • Controles de terceros):
    [ Buttons ] AdvButton
    [ Buttons ] ArrowButton
    [ Buttons ] ButtonBarsControl
    [ Buttons ] CButtonLib
    [ Buttons ] DOAShape
    [ Buttons ] GlowButton
    [ Buttons ] Iconits
    [ Buttons ] ImageButton
    [ Buttons ] OfficeButton
    [ Buttons ] PulseButton
    [ Buttons ] SplitButton
    [ Buttons ] TripleButton
    [ CheckBoxes ] DontShowAgainCheckbox
    [ ColorPickers ] ColorPickerLib
    [ ColorPickers ] gColorBlender
    [ ComboBoxes ] CheckedCombobox
    [ ComboBoxes ] ImageComboBox
    [ Date-Time ] DateAndTimeControls
    [ GroupBoxes ] CodeVendor.Controls
    [ GroupBoxes ] Owf.Controls.OutlookGroupBox
    [ GroupBoxes ] UIToolbox.CheckGroupBox
    [ GroupBoxes ] UIToolbox.RadioGroupBox
    [ Knobs ] KnobControl
    [ Labels ] BorderLabel
    [ Labels ] DOATransparentLabel
    [ Labels ] dzzControls
    [ Labels ] gLabel
    [ Labels ] GradientLabel
    [ Labels ] iGreen.Controls.uControls.uLabelX
    [ Labels ] Owf.Controls.OwfProgressControl
    [ Labels ] TransparentLabel
    [ Labels ] VerticalLabel
    [ ListBoxes ] ColorListBox
    [ Listviews ] gCursor
    [ Listviews ] gListviewControl
    [ Listviews ] TransparentListView
    [ Menus ] CustomizableStrips
    [ Menus ] CustomToolStrip
    [ Miscellaneous ] Animator
    [ Miscellaneous ] AwesomeShapeControl
    [ Miscellaneous ] CG.Animation
    [ Miscellaneous ] CoolBlinkies
    [ Miscellaneous ] CountDownTimer
    [ Miscellaneous ] DriveComboBox
    [ Miscellaneous ] ErrorControls
    [ Miscellaneous ] Owf.Controls.DigitalDisplayControl
    [ Miscellaneous ] ShaperRater
    [ Miscellaneous ] StarRateControl
    [ Miscellaneous ] StarRating
    [ Miscellaneous ] Vista GUI
    [ Miscellaneous ] VistaMenuControl
    [ Miscellaneous ] WizardControl
    [ NumberPickers ] CoolSoft.NumericUpDownEx.VB
    [ NumberPickers ] GLUI.NET
    [ Ookii Dialogs ] Ookii.Dialogs
    [ Ookii Dialogs ] Ookii.Dialogs.Wpf
    [ Panels ] AlphaGradientPanel
    [ Panels ] gGlowBox
    [ Panels ] GradientPanel
    [ Panels ] KISControls
    [ Panels ] MBPanel
    [ Panels ] OVT.CustomControls
    [ Panels ] Owf.Controls.A1Panel
    [ Panels ] Owf.Controls.OutlookPanelEx
    [ Panels ] UI.Glass.Panel
    [ Panels ] VS2008Panel
    [ PictureBoxes ] Imagecontrol
    [ ProgressBars ] AmazingProgressBar
    [ ProgressBars ] BusyBarLib
    [ ProgressBars ] Deltares.Controls
    [ ProgressBars ] EasyProgressBarPacket
    [ ProgressBars ] JCS.Components.NeroBar
    [ ProgressBars ] MRG.Controls.UI
    [ ProgressBars ] Owf.Controls.VistaProgressBar
    [ ProgressBars ] ProgBar
    [ ProgressBars ] ProgressBarGoogleChrome
    [ ProgressBars ] ProgressBars
    [ ProgressBars ] SPB
    [ ProgressBars ] Windows7ProgressBar
    [ RichTextBoxes ] CodeTextBox
    [ RichTextBoxes ] FastColoredTextBox
    [ RichTextBoxes ] RicherTextBox
    [ RichTextBoxes ] RichTextBoxLinks
    [ ScrollBars ] CustomScrollBar
    [ Tabs ] JacksonSoft.CustomTabControl
    [ Tabs ] KRBTabControl
    [ Tabs ] TDHTabCtl
    [ Tabs ] UxTabControl
    [ Tabs ] VSTabControl
    [ Tabs ] XPTabControl
    [ Textboxes ] AlphaBlendTextBox
    [ Textboxes ] Blinkertextbox
    [ Textboxes ] ChreneLib
    [ Textboxes ] Custom Featured MessageBox
    [ Textboxes ] DropDownContainer
    [ Textboxes ] ExtendedTextBox
    [ Textboxes ] iptb
    [ Textboxes ] NCI.Windows.Controls
    [ Textboxes ] TextBoxHint
    [ TimePickers ] gTimePickerControl
    [ TitleBars ] gTitleBarLib
    [ TitleBars ] TitleBarControl
    [ TitleBars ] window control box
    [ ToolBoxes ] Guifreaks.Common
    [ ToolBoxes ] Guifreaks.NavigationBar
    [ ToolBoxes ] MozBar
    [ ToolBoxes ] pplStuff.Controls.ToolBox
    [ ToolBoxes ] ToolBox
    [ ToolBoxes ] XPControlLib
    [ Tooltips ] iToolTip
    [ Tooltips ] NotificationWindow
    [ TrackBars ] gTrackBar
    [ TrackBars ] MACTrackBarLib
    [ TreeViews ] MBTreeViewExplorer
    [ Vista ] VistaControls
    [ WebBrowsers ] WebBrowserEx
    [ Windows API Code Pack ] Microsoft.WindowsAPICodePack


  • Menú de snippets predefinidos (Para VB.NET):
    [ Application ] Add controls in real-time
    [ Application ] Add controls with events in real-time
    [ Application ] Append text to control
    [ Application ] Center Form
    [ Application ] Change Language
    [ Application ] Click a control to move it
    [ Application ] Context Menu
    [ Application ] Fade IN-OUT
    [ Application ] For each checkbox in...
    [ Application ] For each control in...
    [ Application ] Form Docking
    [ Application ] FullScreen
    [ Application ] Get Current APP Name
    [ Application ] Get Current APP Path
    [ Application ] Get User Config - copia
    [ Application ] Get User Config
    [ Application ] GlobalHotkeys
    [ Application ] Hotkeys
    [ Application ] Ignore Exceptions
    [ Application ] InputBox
    [ Application ] Load INI Settings
    [ Application ] Load Resource To Disk
    [ Application ] Minimize to systray
    [ Application ] Move Control
    [ Application ] Move Form
    [ Application ] Round Borders
    [ Application ] Select all checkboxes
    [ Application ] Set Control Border Color
    [ Application ] Set Control Hint
    [ Application ] Show or hide form in NotifyIcon
    [ Application ] Trial Period
    [ Audio ] Play WAV LOOP
    [ Audio ] Play WAV
    [ Audio ] Rec Sound
    [ Audio ] Stop sound
    [ Colors ] Get Random QB Color
    [ Colors ] Get Random RGB Color
    [ Console ] Hide or show console
    [ Console ] Join Arguments
    [ Console ] Menu with arrows
    [ Console ] Parse arguments
    [ Controls ] [LinkLabel] - New LinkLabel
    [ Controls ] [ListView] - ItemChecked Event
    [ Controls ] [ListView] - ListView Sort Column event
    [ Controls ] [MessageBox] Centered MessageBox
    [ Controls ] [MessageBox] Question - Cancel operation
    [ Controls ] [MessageBox] Question - Exit application
    [ Controls ] [OpenFileDialog] - New dialog
    [ Controls ] [RichTextBox] Load TextFile in RichTextbox
    [ Controls ] [SaveFileDialog] - New dialog
    [ Controls ] [Textbox] Allow only letters
    [ Controls ] [Textbox] Allow only numbers
    [ Controls ] [Textbox] Drag-Drop a file
    [ Controls ] [Textbox] Drag-Drop a folder
    [ Controls ] [Textbox] wait for ENTER key
    [ Controls ] [WebBrowser] Wait for webpage to be loaded
    [ Cryptography ] AES Decrypt
    [ Cryptography ] AES Encrypt
    [ Cryptography ] Base64 To String
    [ Cryptography ] Encrypt-Decrypt string (Method 1)
    [ Cryptography ] Encrypt-Decrypt string (Method 2)
    [ Cryptography ] String To Base64
    [ Custom APIS ] MediaInfo Examples
    [ Custom APIS ] MediaInfo [CLASS]
    [ Custom APIS ] SevenZipSharp Compress
    [ Custom APIS ] SevenZipSharp Extract
    [ Custom APIS ] SevenZipSharp FileInfo
    [ Custom APIS ] [VistaCoreAudioAPI] - Fade Master Volume
    [ Custom APIS ] [VistaCoreAudioAPI] - Get Master Volume
    [ Custom APIS ] [VistaCoreAudioAPI] - Mute Master Volume
    [ Custom APIS ] [VistaCoreAudioAPI] - Set Master Volume
    [ Custom APIS ] [Windows API Code Pack] - Set TaskBar Status
    [ Custom APIS ] [Windows API Code Pack] - Set TaskBar Value
    [ Custom Controls ] PopCursor example
    [ Custom Controls ] PopCursor [CLASS]
    [ Custom Controls ] [Ooki VistaFolderBrowserDialog] - New dialog
    [ Custom Controls ] [RichTextBoxEx] - Insert FileLink
    [ Directories ] Can Access To Folder
    [ Directories ] Directory Exist
    [ Directories ] Get Directory Size
    [ Directories ] Make Dir
    [ Directories ] Set Folder Access
    [ Files ] Can Access To File
    [ Files ] Change File Attributes
    [ Files ] Compare Files
    [ Files ] Copy File With Cancel
    [ Files ] Copy File
    [ Files ] Create ShortCut (.lnk)
    [ Files ] Delete File
    [ Files ] File Add Attribute
    [ Files ] File Exist
    [ Files ] File Have Attribute
    [ Files ] File Remove Attribute
    [ Files ] Get All Files
    [ Files ] Get File Info [FUNCTION]
    [ Files ] Get File Info
    [ Files ] Get Files By FileExtensions
    [ Files ] Move File
    [ Files ] Rename File
    [ Files ] Resolve shortcuts (.lnk)
    [ Files ] Set File Access
    [ Files ] Validate Windows FileName
    [ Fonts ] Font Is Installed
    [ Fonts ] Get Installed Fonts
    [ Fonts ] Use Custom Text-Font
    [ Hardware ] Get Connected Drives
    [ Hardware ] Get CPU ID
    [ Hardware ] Get Drives Info
    [ Hardware ] Get Free Disk Space
    [ Hardware ] Get Motherboard ID
    [ Hardware ] Get Printers
    [ Hardware ] Monitorize Drives
    [ Hashes ] Get CRC32
    [ Hashes ] Get MD5 Of File
    [ Hashes ] Get MD5 Of String
    [ Hashes ] Get SHA1 Of File
    [ Hashes ] Get SHA1 Of String
    [ Image ] Desktop ScreenShot
    [ Image ] Drag-Drop a image
    [ Image ] For each Image in My.Resources
    [ Image ] Form ScreenShot
    [ Image ] Get Image Sector
    [ Image ] GrayScale Image
    [ Image ] Resize Image File
    [ Image ] Resize Image Resource
    [ Image ] Save ImageFile
    [ Internet ] Download URL
    [ Internet ] FTP Upload
    [ Internet ] Get IP Adress
    [ Internet ] Get URL SourceCode
    [ Internet ] GMail Sender
    [ Internet ] Hotmail Sender
    [ Internet ] Is Internet Avaliable
    [ Internet ] Send POST PHP
    [ Internet ] URL Decode
    [ Internet ] URL Encode
    [ Internet ] Validate URL
    [ Miscellaneous ] Byte To Char
    [ Miscellaneous ] Captcha Generator
    [ Miscellaneous ] Char To Byte
    [ Miscellaneous ] Convert Time
    [ Miscellaneous ] Elapsed Time [FUNCTION]
    [ Miscellaneous ] Elapsed Time
    [ Miscellaneous ] Get Enum Name
    [ Miscellaneous ] Get Enum Value
    [ Miscellaneous ] Get FrameWork Of File
    [ Miscellaneous ] Get Percentage
    [ Miscellaneous ] Get Random Number
    [ Miscellaneous ] Get Random Password
    [ Miscellaneous ] Hex to Byte-Array
    [ Miscellaneous ] Minimize VS IDE when APP is in execution
    [ Miscellaneous ] Number Is In Range
    [ Miscellaneous ] Number Is Prime
    [ Miscellaneous ] Sleep
    [ Multi-Threading ] Invoke Control
    [ Multi-Threading ] New BackgroundWorker [CLASS]
    [ Multi-Threading ] New Thread
    [ Multi-Threading ] Raise Events Cross-Thread
    [ OS ] Get Cursor Pos
    [ OS ] Get Local Date
    [ OS ] Get Local Day
    [ OS ] Get Local Time
    [ OS ] Get OS Architecture
    [ OS ] Get OS Edition
    [ OS ] Get OS Version
    [ OS ] Get Screen Resolution
    [ OS ] Get TempDir
    [ OS ] Get UserName
    [ OS ] Mouse Click
    [ OS ] Move Mouse
    [ OS ] Set Cursor Pos
    [ OS ] Set PC State
    [ OS ] Set System Cursor
    [ OS ] User Is Admin
    [ Process ] Close Process
    [ Process ] Flush Memory
    [ Process ] Get Process Handle
    [ Process ] Get Process PID
    [ Process ] Get Process Window Title
    [ Process ] Kill Process
    [ Process ] Process is running
    [ Process ] Run Process [FUNCTION]
    [ Process ] Run Process
    [ Process ] SendKeys To App
    [ Process ] Wait For Application To Load
    [ Registry ] Associate File Extension
    [ Registry ] Registry Edit [FUNCTIONS]
    [ Services ] Get Service Status
    [ Services ] Start or stop service
    [ Size ] Convert Bytes
    [ Size ] Convert To Disc Size
    [ String ] Binary To String
    [ String ] Decimal To Hexadecimal
    [ String ] Delimit String
    [ String ] Find RegEx
    [ String ] Find String Ocurrences
    [ String ] Hex To String
    [ String ] Hexadecimal To Decimal
    [ String ] Remove Last Char
    [ String ] Reverse String
    [ String ] String Is Alphabetic
    [ String ] String Is Email
    [ String ] String Is Numeric
    [ String ] String Is URL
    [ String ] String to Binary
    [ String ] String to Case
    [ String ] String To Hex
    [ Syntax ] GlobalVariables [CLASS]
    [ Syntax ] Handle the same event for various controls
    [ Syntax ] New Dictionary
    [ Syntax ] New Hashtable
    [ Syntax ] New Property
    [ Syntax ] New Select Case
    [ Syntax ] Overload Example
    [ Text ] Copy from clipboard
    [ Text ] Copy to clipboard
    [ Text ] Delimit TextFile
    [ Text ] For each TextFile in My.Resources
    [ Text ] Randomize TextFile
    [ Text ] Read Line From TextFile
    [ Text ] Read TextFile - copia
    [ Text ] Read TextFile
    [ Text ] TextFile Is Unicode
    [ Text ] Write Log
    [ Text ] Write Text To File



    NOTA: El instalador sólamente contiene los paquetes offline necesários, si desean instalar más componentes los pueden seleccionar en mi instalador personalizado, y el instalador de Microsoft se ocupará de descargar los paquetes e instalarlos.



    Descarga:
    http://elektrostudios.tk/Visual Studio 2012.exe



    Que lo disfruten!



    Tutorial expréss de instalación:
    Está grabado por el compañero Seazoux (iKillNukes), El tutorial es para la versión antigua del instalador.

    [youtube=640,360]http://www.youtube.com/watch?feature=player_embedded&v=DaC-OifsUBQ#![/youtube]








    Tools:

  • .NET reflector 7.7.0.236 + ADDINS (Craqueado)
    - Navega por el código fuente de un executable incluso sin disponer del código fuente
    - Muchas cosas más xD




    CORREGIDO:






  • .NET Shrink 2.5 (Craqueado)
    - Junta recursos a tu executable
    - Comprime el executable
    - Añade protección anti PE y contraseña al executable










  • Convert .NET 5.6 (Free version)
    - Convierte códigos de C# a VB.NET y viceversa (Aunque se equivoca bastante con códigos complejos, la verdad)










  • IL Merge 2.12.0803

    - Junta recursos a tu executable