Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 2 online users. » 0 Member(s) | 1 Guest(s) Google
|
Latest Threads |
Womans from your city - V...
Forum: Random Discussion
Last Post: iHOMEz
02-27-2025, 12:59 PM
» Replies: 1
» Views: 2,785
|
Looking for Adventure? Fi...
Forum: Random Discussion
Last Post: iHOMEz
01-08-2025, 11:00 PM
» Replies: 1
» Views: 1,808
|
Find Local Women Looking ...
Forum: Random Discussion
Last Post: iHOMEz
12-27-2024, 12:11 AM
» Replies: 0
» Views: 976
|
Prettys Womans in your to...
Forum: Random Discussion
Last Post: iHOMEz
10-30-2024, 07:45 AM
» Replies: 0
» Views: 1,804
|
Prettys Womans in your ci...
Forum: Random Discussion
Last Post: iHOMEz
10-26-2024, 10:50 AM
» Replies: 0
» Views: 1,748
|
Beautiful Womans from you...
Forum: Random Discussion
Last Post: iHOMEz
10-19-2024, 02:48 PM
» Replies: 0
» Views: 1,891
|
Prettys Womans in your ci...
Forum: Random Discussion
Last Post: iHOMEz
10-06-2024, 05:00 PM
» Replies: 0
» Views: 2,019
|
Supreme Сasual Dating - A...
Forum: Random Discussion
Last Post: iHOMEz
06-14-2024, 11:28 AM
» Replies: 0
» Views: 2,837
|
Beautiful Womans in your ...
Forum: VB.NET
Last Post: iHOMEz
06-09-2024, 09:23 PM
» Replies: 0
» Views: 3,033
|
Hangman in Rust
Forum: Other
Last Post: brandonio21
02-04-2018, 11:14 AM
» Replies: 2
» Views: 22,574
|
|
|
How can I read a link from mysql databse??? |
Posted by: mnxford - 03-19-2013, 11:12 AM - Forum: Programming Help
- Replies (9)
|
 |
Hello,
I watched all the brandonio's video tutorials on youtube..
I worked according to his video tutorials....
Now at one stage I got a problem here...I made an updater for my software using UpdateVB component and wants to get the version.txt links and SFX download link from the database...I tried something but it doesn't work....
What have I tried:
[code2=vbnet]Imports MySql.Data.MySqlClient
Public Class updater
Public conn As MySqlConnection
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
conn = New MySqlConnection(ServerString)
Try
conn.Open()
Dim sqlquery As String = "SELECT vlink, dlink, ftpu, dtpp FROM updater"
Dim data As MySqlDataReader
Dim adapter As New MySqlDataAdapter
Dim command As New MySqlCommand
command.CommandText = sqlquery
command.Connection = conn
adapter.SelectCommand = command
data = command.ExecuteReader
While data.Read()
If data.HasRows() Then
Dim vlink As String = data(1).ToString
Dim dlink As String = data(2).ToString
Dim ftpu As String = data(3).ToString
Dim ftpp As String = data(4).ToString
End If
End While
UpdateVB1.checkforupdate("vlink", "0.0.9", "dlink", "ftpu", "ftpp", showUI:=True)
data.Close()
conn.Close()
Catch ex As Exception
End Try
End Sub
End Class[/code2]
but by my codes the updater didn't response at all and I also get no error...
Please help me how can I do this or by which codes I can solve my problem...I am a beginner in vb.net..
Please help me...
Thanks in advance.....
|
|
|
help with making a simple program |
Posted by: Yevzor - 03-18-2013, 02:20 AM - Forum: Programming Help
- Replies (2)
|
 |
Hello just a little info what i need help with a little program, i use a VPS for ssh server tunneling to help with my latency for gaming from australia to usa.
it uses 2 programs called proxifer and putty
i want to make a lil program with a interface having username, password text box and a connect button, when those are typed in and i press connect to auto open the proxifer.exe, auto open the putty.exe, load my server settings and auto type the user/password(in putty), is this possbile to do? and is it very hard?
|
|
|
SNAKE |
Posted by: brandonio21 - 03-13-2013, 08:43 PM - Forum: Share Your Programs
- No Replies
|
 |
I was recently challenged by a friend to make a working version of the classic "Snake" videogame in less than two hours. After about 1 hour and 50 minutes, I had a completed project.
Play it here!
<!-- m --><a class="postlink" href="http://brandonsoft.com/PersonalProjects/Snake/app.html">http://brandonsoft.com/PersonalProjects/Snake/app.html</a><!-- m -->
|
|
|
I need help with converting from ASCII to HEX on VB 2010 |
Posted by: Somebody<3 - 03-10-2013, 06:17 AM - Forum: VB.NET (Visual Basic 2010/2008)
- Replies (3)
|
 |
Hello, to start off I really don't know how I can setup the scripting for the program.
I do have an example website on how I want my program to work, but I am only wanting to borrow certain features from it:
<!-- m --><a class="postlink" href="http://mikezilla.com/exp0012.html">http://mikezilla.com/exp0012.html</a><!-- m -->
What parts I want to add to my program is:
-Taking the ASCII Text with the encode button
-Have the Hex text box (Without the decode button)
I honestly have tried to do this but I got confused and failed at it. Help is much appreciated.
|
|
|
Prime Finder |
Posted by: WitherSlayer - 03-09-2013, 07:36 PM - Forum: Code Snippets
- Replies (1)
|
 |
This program will ask you for a number and then it will tell you if your number is prime or not.
[code2=java]import java.util.Scanner;
public class primeFinder {
static Scanner scanner = new Scanner(System.in);
public static void main(String[] args)
{
System.out.println("What number would you like to find if it is prime or not:");
int userNum = scanner.nextInt();
int i;
for (i = 2; i < userNum;i++)
{
int g = userNum % i;
if (g == 0)
{
System.out.println("Your number is not prime!");
break;
}
}
if(i == userNum)
{
System.out.println("Your number is prime!");
}
}
}[/code2]
|
|
|
Report generation in VB 2008 |
Posted by: vijayraj34 - 03-04-2013, 11:37 AM - Forum: VB.NET (Visual Basic 2010/2008)
- No Replies
|
 |
hi bro, i made a student database system. I want to generate a report, it should contain last inserted record of database table (only id,name and address). Am having trouble in connecting form with report , sql query as well as the whole procedure.
note: The report should be generated when i press finish button.
Please Answer me in step by step procedure or else make a video tutorial ASAP.
|
|
|
E-Tech Timer |
Posted by: anlo - 03-03-2013, 09:51 PM - Forum: Share your programs!
- Replies (1)
|
 |
Hi everyone,
I've made a timer in VB.Net (with inspiration from Brandon's Timer 9). It's called E-Tech Timer, and it's actually pretty popular. It has many cool features such as the ability to log your time, start at a defined time, or alert at a certain time. The project is hosted on Codeplex: http://etechtimer.codeplex.com
It would be great to see some of the forum members helping out with this project. If you want to, just download the code and edit it to your heart's content. There are some goals, too (there is a link on the homepage).
It's been featured on Softpedia (http://bit.ly/etimer1) and I Love Free Software (http://bit.ly/timerblog). That's pretty exciting seeing as I'm only 12 years old!
Andrew
lorimer.id.au
|
|
|
|