No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
8 Posted Topics
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 …
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: …
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 …
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 …
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)
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 …
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 …
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 …
The End.
vbDotMe