Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
4
Posts with Upvotes
4
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
3 Commented Posts
2 Endorsements
Ranked #621
Ranked #2K
~12.3K People Reached
Favorite Forums

15 Posted Topics

Member Avatar for M.Waqas Aslam

KeyLogger.. Anyways.. Here you go. Tested and works! Imports System.Runtime.InteropServices Public Class MyForm Public BackKeyIsDown As Boolean Public BackKeyDownCount As Integer Public EnterKeyIsDown As Boolean Public EnterKeyDownCount As Integer Public EscKeyIsDown As Boolean Public EscKeyDownCount As Integer Public OtherKeyIsDown As Boolean Public OtherKeyDownCount As Integer <DllImport("user32.dll")> _ Public Shared Function …

Member Avatar for Shyam_7
1
2K
Member Avatar for Pride

Hi guys, I've been working on Vb.net for about 2 and a half years. It's easy and always has been. I did almost everything. I need some new ideas to work on. I did all the basic stuff such as: picture viewer browser calculator 'explorer' - to view files/folders reads/writes …

Member Avatar for sashyn01
0
401
Member Avatar for rokokmalboro

First of all, I recommend the newest stable release of Visual Studio which is 2012, Visual Studio 2012 Ultimate RC. But most still prefer 2010 since it can support Xna and individual Express Editions. I don't know why people still use Visual Studio 2008. To your questions: 1 - Make …

Member Avatar for G_Waddell
0
204
Member Avatar for Sneaky Pete

1. Goto your form's property window and make sure '**KeyPreview**' is *true*. 2. Goto your form's events windows and make an *event* for '**KeyUp**'. 3. Insert the following code into the event subroutine you made in step 2. If e.KeyCode = Keys.Tab And ChkStart1.IsMatch(txtStart.Text) Then Start = Me.txtStart.Text & ".000" …

Member Avatar for Pride
0
245
Member Avatar for iFrolox

Instead of doing 'in Me.Controls', you have to do 'in Me.GroupBox1.Controls'. But since your testing controls out and in the groupbox, you gotta check both. Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click For Each phCheck As Control In Me.Controls If TypeOf phCheck Is CheckBox AndAlso DirectCast(phCheck, CheckBox).Checked …

Member Avatar for iFrolox
0
3K
Member Avatar for darthswift00

Is this what you mean? This is what inherit is. Public Class MyInheritableClass End Class Public Class MyClass Inherits MyInheritableClass End Class Or are you trying to make a static class? A [static class](http://msdn.microsoft.com/en-us/library/79b3xss3(v=vs.110).aspx) cannot be declared, which means you only have only one of it.

Member Avatar for Pride
0
93
Member Avatar for guilherme.carvalho.9250

Here I think this is what you want. Public Class MyForm Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click, task_viewer.Click Dim lines() As String = IO.File.ReadAllLines("C:\Users\Guilherme\Documents\database\data_base_tasks.txt") MyListBox.Items.Clear() For Each Line As String In lines MyListBox.Items.Add(Line) Next End Sub Private Sub RemoveLineButton_Click(sender As Object, e As EventArgs) …

Member Avatar for guilherme.carvalho.9250
0
2K
Member Avatar for ziyaddinsadigov

First time i'ma help someone on this forum. Try if this works: Make this: For Each myLine In strFileName '// loop thru Arrays. tempStr &= myLine & vbNewLine '// add Array and new line.\ ListBox1.Items.Add(tempStr) Next Into this: For Each myLine In strFileName '// loop thru Arrays. ListBox1.Items.Add(myLine) Next Checked, …

Member Avatar for Pride
0
2K
Member Avatar for M.Waqas Aslam

Depends, how are you going to accomplish this? Are you going to get the websites visited by a custom made application, or from another browser like Google Chrome? 'If it's from your own custom made application, i'm guessing your using the default WebBrowser control. Public Class MyForm Private Sub MyWebBrowser_DocumentCompleted(sender …

Member Avatar for Pride
0
115
Member Avatar for guilherme.carvalho.9250

Here buddy: Public Class MyForm Private Sub MyForm_Load(sender As Object, e As EventArgs) Handles MyBase.Load Dim MyDate As String = Date.Today.ToLongDateString Dim MyTimeSpan As New TimeSpan MyTimeSpan = TimeOfDay.TimeOfDay + New TimeSpan(0, 0, 5) My.Computer.FileSystem.WriteAllText("MyFile.txt", MyDate & " - " & MyTimeSpan.ToString, False) MyTimer.Interval = 750 'Don't make the Interval …

Member Avatar for Pride
0
413
Member Avatar for DyO1

First of all i don't understand why everyone uses IO, i understand no one used it here though. Anyways. Try this: Public Class MyForm Private Sub MyForm_Load(sender As Object, e As EventArgs) Handles MyBase.Load MySaveFileDialog.Filter = "Text File|*.txt" End Sub Private Sub MyButton_Click(sender As Object, e As EventArgs) Handles MyButton.Click …

Member Avatar for Pride
0
218
Member Avatar for DyO1

http://www.youtube.com/watch?v=xsfkZtq1Dus I would explain each code and type it up but i'm a bit lazy.

Member Avatar for DyO1
0
141
Member Avatar for Pride

Okay so im a programmer. C#, VB.Net, Html, Css, Jscript, some Java. So I'm here because I think I'm finally ready to make a good project that people would use/play, not one of those test/practice projects that I made for 3 years. I have a few ideas in mind. Anyways, …

Member Avatar for hericles
0
236
Member Avatar for fafa70

No need to convert. Public Class Invalidate_Circle_On_Circle Dim ShowCircle As Boolean Private Sub MyPanel_Paint(sender As Object, e As PaintEventArgs) Handles MyPanel.Paint If ShowCircle Then e.Graphics.DrawEllipse(Pens.Black, New Rectangle(10, 10, 20, 20)) End If End Sub Private Sub MyButton_Click(sender As Object, e As EventArgs) Handles MyButton.Click ShowCircle = True MyPanel.Invalidate() End Sub …

Member Avatar for Pride
0
775
Member Avatar for Pride

[URL="http://www.daniweb.com/business-exchange/project-partners-wanted/threads/411630/1756166"]http://www.daniweb.com/business-exchange/project-partners-wanted/threads/411630/1756166[/URL]

0
75

The End.