elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.


Tema destacado: Guía rápida para descarga de herramientas gratuitas de seguridad y desinfección


  Mostrar Mensajes
Páginas: 1 ... 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 [1003] 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 ... 1254
10021  Programación / .NET (C#, VB.NET, ASP) / Re: Listview, ¿ordenar el contenido al clickar sobre una columna? en: 8 Enero 2013, 18:28 pm
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:
Código:
 vColumnaOrden
    vOrden
Dicen que no están declaradas, y no se con que tipo de valor debo setearlas ni nada xD

Código
  1.  Private Sub GListView_ColumnClick(ByVal sender As Object, ByVal e As System.Windows.Forms.ColumnClickEventArgs) Handles GListView.ColumnClick
  2.  
  3.        Dim vIndiceColumna As ColumnHeader = GListView.Columns(e.Column)
  4.  
  5.        Dim vTipoOrden As System.Windows.Forms.SortOrder
  6.  
  7.        If vColumnaOrden Is Nothing Then
  8.            vTipoOrden = SortOrder.Ascending
  9.            vOrden = SortOrder.Ascending
  10.        Else
  11.            If vIndiceColumna.Equals(vColumnaOrden) Then
  12.                If vOrden = SortOrder.Ascending Then
  13.                    vTipoOrden = SortOrder.Descending
  14.                    vOrden = SortOrder.Descending
  15.                Else
  16.                    vTipoOrden = SortOrder.Ascending
  17.                    vOrden = SortOrder.Ascending
  18.                End If
  19.            Else
  20.                vTipoOrden = SortOrder.Ascending
  21.                vOrden = SortOrder.Ascending
  22.            End If
  23.        End If
  24.  
  25.        vColumnaOrden = vIndiceColumna
  26.  
  27.        GListView.ListViewItemSorter = New COrdenarListview(e.Column, vTipoOrden)
  28.        GListView.Sort()
  29.    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
  1.  
  2. ' En las declaraciones...
  3. Dim ColumnOrder As String = "Down"
  4.  
  5.  
  6. Private Sub GListView_ColumnClick(ByVal sender As Object, ByVal e As System.Windows.Forms.ColumnClickEventArgs) Handles GListView.ColumnClick
  7.        If ColumnOrder = "Down" Then
  8.            Me.GListView.ListViewItemSorter = New COrdenarListview(e.Column, SortOrder.Ascending)
  9.            GListView.Sort()
  10.            ColumnOrder = "Up"
  11.        ElseIf ColumnOrder = "Up" Then
  12.            Me.GListView.ListViewItemSorter = New COrdenarListview(e.Column, SortOrder.Descending)
  13.            GListView.Sort()
  14.            ColumnOrder = "Down"
  15.        End If
  16.    End Sub
10022  Programación / .NET (C#, VB.NET, ASP) / Re: No me deja emparentar el form (Form.parent =) en: 8 Enero 2013, 17:34 pm
Ya lo he conseguido, os dejo la solución (Vivan los snippets xD):


Main form:

Código
  1.    Private Sub OnMouseHover(sender As Object, e As EventArgs) Handles Button1.MouseHover
  2.        Form2.Show()
  3.    End Sub
  4.  
  5.    Private Sub OnMouseLeave(sender As Object, e As EventArgs) Handles Button1.MouseLeave
  6.        ' Hay que liberarlo, con un form2.close o form2.hide solo conseguiremos que se centre la primera vez!
  7.        Form2.Dispose()
  8.    End Sub
  9.  
  10. #Region " CenterForm function "
  11.  
  12.    Function centerForm(ByVal Form_to_Center As Form, ByVal Form_Location As Point) As Point
  13.        Dim pLocation As New Point
  14.        pLocation.X = (Me.Left + (Me.Width - Form_to_Center.Width) / 2) '// set the X coordinates.
  15.        pLocation.Y = (Me.Top + (Me.Height - Form_to_Center.Height) / 2) '// set the Y coordinates.
  16.        Return pLocation '// return the Location to the Form it was called from.
  17.    End Function
  18.  
  19. #End Region

Form secundario:
Código
  1.    Private Sub Form2_Load(sender As Object, e As EventArgs) Handles MyBase.Load
  2.        Me.Location = Form1.centerForm(Me, Me.Location)
  3.    End Sub
  4.  
10023  Programación / .NET (C#, VB.NET, ASP) / Re: Sugerencias sobre el diseño de esta APP en: 8 Enero 2013, 16:49 pm
tendré en cuenta sus sugerencias, gracias
10024  Programación / .NET (C#, VB.NET, ASP) / [SOLUCIONADO] Obtener todos los recursos de tipo TEXTO de My.Resources en: 8 Enero 2013, 16:45 pm
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
  1.   Private Sub SearchInResources(ByVal PatternSTR As String)
  2.        For Each ResourceFile In My.Resources ' Esto no funciona cláramente xD
  3.            If ResourceFile.EndsWith(".txt") Then
  4.                Dim fileContent As String = ResourceFile
  5.                Dim stringStream As New System.IO.StringReader(fileContent)
  6.                If stringStream.contains(PatternSTR) Then
  7.                    ' Cosas...
  8.                End If
  9.            End If
  10.        Next
  11.    End Sub
10025  Programación / .NET (C#, VB.NET, ASP) / Sugerencias sobre el diseño de esta APP en: 8 Enero 2013, 04:39 am
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



10026  Programación / .NET (C#, VB.NET, ASP) / Re: Ayuda con un ejercicio (imports.IO) en: 8 Enero 2013, 04:32 am
El ejercicio se puede simplificar mucho xD

Código
  1. Public Class Form1
  2.    Private Sub BtnSalir_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnSalir.Click
  3.        Application.Exit()
  4.    End Sub
  5.  
  6.    Private Sub BtnTexto_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnTexto.Click
  7.        My.Computer.FileSystem.WriteAllText(Environment.CurrentDirectory & "\" & Me.TxtNombre.Text & ".TXT", Me.TxtTexto.Text, False)
  8.    End Sub
  9. End Class

Saludos!
10027  Programación / .NET (C#, VB.NET, ASP) / [SOLUCIONADO] No me deja emparentar el form (Form.parent =) en: 8 Enero 2013, 01:25 am
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
  1.    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
  2.        Try
  3.            Form2.Parent = Me
  4.        Catch ex As Exception
  5.            MsgBox(ex.Message)
  6.            ' Error: top-level control cannot be added to a control
  7.        End Try
  8.    End Sub
10028  Informática / Software / Re: [APORTE] MEGA-PACK para iniciarse en VS2012 x64 (Instalador + Recursos + Tools) en: 7 Enero 2013, 17:05 pm
Los robots no estamos programados para dormir,

Me alegra que a alguno le sirva el pack

Un saludo!
10029  Programación / Python / Re: >>>>>>>>>>>>>>Convertir binarios en python<<<<<<<<<<<<<<< en: 7 Enero 2013, 15:03 pm
googleando 1 Minuto conseguí este código.  :silbar:

Idem.

Este es un poco distinto.

Código
  1. def ascii_to_bin(char):
  2. ascii = ord(char)
  3. bin = []
  4. while (ascii > 0):
  5. if (ascii & 1) == 1:
  6. bin.append("1")
  7. else:
  8. bin.append("0")
  9. ascii = ascii >> 1
  10. bin.reverse()
  11. binary = "".join(bin)
  12. zerofix = (8 - len(binary)) * '0'
  13. return zerofix + binary
  14.  
  15.  
  16. # Ejemplo:
  17.  
  18. String = 'hello'
  19.  
  20. binary = []
  21. for char in String:
  22. binary.append(ascii_to_bin(char))
  23.  
  24. print binary
  25. print " ".join(binary) # 01101000 01100101 01101100 01101100 01101111

Saludos
10030  Informática / Software / VisualStudio 2012 U. (Instalador+Plantillas+Snippets+Libs+Controles+Tools) en: 7 Enero 2013, 14:37 pm
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.









    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





Páginas: 1 ... 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 [1003] 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 ... 1254
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines