Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~8K People Reached
Favorite Forums

8 Posted Topics

Member Avatar for pardeep3dec

I'm no expert but this is what I use, coded for myself. All you need to do is enter the number to text and the carrier, your email and mail server and test it out. You can always add textboxes for the phone number and such, but like I said …

Member Avatar for Tran_10
0
548
Member Avatar for JBD2

You could change your code to this: Dim Path As String = My.Computer.FileSystem.SpecialDirectories.CurrentUserApplicationData _ & "\Roaming\Microsoft\Windows\Start Menu\Programs\" My.Computer.FileSystem.CopyFile(Path & "The name of my program.exe", _ Path & "Startup\The name of my program.exe") Or if your program already works just fine before moving it to the startup folder you could just: …

Member Avatar for Mr.M
0
4K
Member Avatar for nettripper

This is the only way I know of(there is probably a way more effective way with half the code) to do this. This is an old keylogger I wrote about a year ago. I removed half of the functions and set it to block both windows keys... Drop it in …

Member Avatar for vbDotMe
0
2K
Member Avatar for paoi00

Try just using `SELECT * FROM EditAccount` then your adapter will hold everything. Then use process of elimination to figure it out. Try this: Dim con As New OleDb.OleDbConnection Dim dbProvider As String Dim dbSource As String dbProvider = "PROVIDER=Microsoft.ACE.OLEDB.12.0;" dbSource = "Data Source = F:\CBFMNHS Enrollment System\CBFMNHS Enrollment System\bin\Debug\Enrollment …

Member Avatar for paoi00
0
509
Member Avatar for major_lost

Also, you can add `vbcrlf` or `vbnewline` to drop to the next line. ex. Console.WriteLine("Date: {0}" & vbcrlf & "Time: {1}", Now.Date, Now.TimeOfDay)

Member Avatar for major_lost
0
166
Member Avatar for vbDotMe

Hi, I'm trying to setup sort of a LAN keep-alive proxy... Ex.: * My Xbox 360 is connected strait to my computer via an ethernet cable. * My computer is connected to the internet via a Wi-Fi adapter. * Everything works fine and I can access the internet on the …

Member Avatar for vbDotMe
0
141
Member Avatar for vbDotMe

Good morning, afternoon, evening, or night depending where and when you happen to read this. My alias is vbDotMe, I am 20 years old and I work with VB.NET and HTML. Unlike probably most of the members here, I do not have a job in programming of any kind. Everything …

Member Avatar for vbDotMe
0
113
Member Avatar for roshu10

Not sure exactly what you are trying to do but using `System.Threading.Thread.Sleep(X)` will freeze the entire application until the timer is up. Try this: Sub Wait(byval X as integer) Dim sTime = Now Dim eTime = sTime.AddSeconds(X) Do Until Now = eTime Loop End Sub Using that method your application …

Member Avatar for vbDotMe
0
136

The End.