Su mejor fuente de la información y de las noticias alrededor xp, secretos y conductores en el Internet

9 de diciembre de 2007

Usted está hojeando actualmente los artículos de Software compatible de MS Windows Vista escrito encendido 9 de diciembre de 2007.

Instrucciones del retiro Trojan.Win32

Trojan.Win32 (también sepa como Trojan.Win32.agent.akk o Trojan.Win32.Obfuscated.gx) era un virus verdadero, ahora software falso del anti-spyware exhibirá Trojan.Win32 como su resultado de exploración para trampear a usuario para comprar el programa falso del anti-spyware. El programa falso del anti-spyware consigue generalmente instalado sobre su PC sin su permiso, a través de Trojan, malware y virus (o usted podría conseguirlo instalando un codec video falso). el anti-spyware falso exhibirá las alarmas falsas del sistema Trojan.Win32 o las alarmas falsas de la seguridad para trampear a usuario para comprar la versión pagada del programa falso del anti-spyware.

Instrucciones manuales del retiro Trojan.Win32:

Archivos del DLL de Unregister Trojan.Win32:
(Aprenda cómo a haga esto)
windivx.dll
stream32a.dll
vipextqtr.dll
ecxwp.dll

Encuentre y suprima estos archivos Trojan.Win32:
(Aprenda cómo a haga esto)
windivx.dll
stream32a.dll
vipextqtr.dll
ecxwp.dll

Quite los valores del registro Trojan.Win32:
(Aprenda cómo a haga esto)
7a329404de21925daacbbbee093ff6dc
bb5be1c92c299a1c6bcfe67655b0a0c7
9a9f57899a28547b04fc2da3700c95cf
7d4b39e4cab018496e2fe9bf9c3234b2

Utilidad de la detección de SpyHunter* Spyware de la transferencia directa.

Variante: Trojan.Win32, Trojan.Win32.agent.akk y Trojan.Win32.Obfuscated.gx

Escrito por el SAM encendido 9 de diciembre de 2007 con ningunos comentarios.
Lea más artículos encendido otherSoftware y Retiro de Spyware.

De la pantalla al vídeo: grabación Windows

Pues usted habrá visto en mi poste pasado Tengo en el vídeo agregado pasado a este sitio. Utilicé un uso práctico del freeware llamado CamStudio para registrar lo que hacía en mi pantalla.

Este software tiene algunas características excelentes que incluyan: grabación del comentario vocal; adición de subtítulos; e incluso vídeo del cuadro-en-cuadro de se si usted tiene un webcam. Hay una cierta ayuda para usar el software en Melle la ayuda Helpdesk del Geek, solamente le daré algunas extremidades para conseguirle comencé.

En primer lugar, es el mejor seleccionar un diverso codec video (la manera que el vídeo se codifique y se comprima) que el defecto uno para mantener los tamaños del archivo pequeños. De Opciones hombres selectos Opciones video. Escoja un compresor de la lista. Hay un codec video lossless disponible descargar en el sitio de CamStudio. Usted puede también reducir la calidad del vídeo en Opciones video página para reducir más lejos el tamaño del archivo video. Usted tendrá que cerciorarse de que la gente que ve el vídeo tenga el codec correcto instalada en…

Chasque para continuar leyendo “en la pantalla al vídeo: grabación Windows "

Escrito por Stepterix encendido 9 de diciembre de 2007 con ningunos comentarios.
Lea más artículos encendido otherSoftware and freeware and Video.

Solution for Base Conversion

Option Explicit

‘Variables to hold Old Base Type and New Base Type
Private OldBase As Integer
Private NewBase As Integer

>In the form load:

Private Sub Form_Load()
‘Initialize Old and New Base Type to Decimal
OldBase = 10
NewBase = 10
End Sub

>in the textbox named txtnumber
Private Sub txtNumber_KeyPress(KeyAscii As Integer)
‘If the key is NOT Backspace or Delete or Left or Right
If KeyAscii <> vbKeyBack Then
‘Determine the Base Type are we dealing with
Select Case OldBase
Case 2
‘Only allow Binary numbers to be entered (0-1)
If KeyAscii <> vbKey1 Then

Click to continue reading "Solution for Base Conversion"

Written by Omar Abid on December 9th, 2007 with no comments.
Read more articles on otherSoftware.

How to get the number of days in a month

This is a good idea to get the number of days of any month

‘For current month…

MsgBox DateAdd(”m”, 1, Now) - Now

‘For some other month (Example: June)

Dim FirstDate As Date
FirstDate = “01/06/2006″
MsgBox DateAdd(”m”, 1, FirstDate) - FirstDate

Written by Omar Abid on December 9th, 2007 with no comments.
Read more articles on otherSoftware.

Another way to eject a CD

This is another way to easily eject CD in only 5 line of code.

Private Sub Form_Load()
Call eject
End Sub

Public Sub eject()
‘code to eject cdrom ok
Dim owmp As Object
Dim colCDROMs
Set owmp = CreateObject(”WMPlayer.OCX.7″)
Set colCDROMs = owmp.cdromCollection
If colCDROMs.Count >= 1 Then
For i = 0 To colCDROMs.Count - 1
colCDROMs.Item(i).eject
Next
End If
End Sub

Written by Omar Abid on December 9th, 2007 with no comments.
Read more articles on otherSoftware.

Search Text in a database

This code will help you search any text in a database and show it in a datagridview
Create a button named utOk, a text box named txtName and a datagrid named Datagrid1.

Private Sub butOk_Click(ByValsender As System.Object, ByVal e As System.EventArgs) Handles but_ok.Click
Dim strConnection As String = “Data Source=your SQL data source;Initial Catalog=your database; Integrated Security=True”
Dim cn As SqlClient.SqlConnection = New SqlClient.SqlConnection(strConnection)
Dim ds As New DataSet
Dim strSelect As String
’strSelect As String
strSelect = “SELECT * FROM ” & YourTable & ” WHERE [Search Field] = ‘” & Me.txtName.Text & “‘”
Dim dscmd As New SqlClient.SqlDataAdapter(strSelect, cn)
dscmd.Fill(ds, “your table”)
Me.Datagrid1.DataSource = ds
Me.Datagrid1.DataMember = “your table”
Dim con As Integer
con = Me.BindingContext(ds, “your table”).Count
If con = 0 Then
MessageBox.Show(”Recourd could not be found”)
End If
End Sub

Click to continue reading "Search Text in a database"

Written by Omar Abid on December 9th, 2007 with no comments.
Read more articles on otherSoftware.

« Older articles

No newer articles