Login Register






[VB.NET] Help . filter_list
Author
Message
[VB.NET] Help . #1
Question1) I WANT A BUTTON TO OPEN ' FORM 2 ' ( BUTTON IS AT FORM1 )
IS THIS CODE CORRECT ?

Code:
Dim SecondForm As New frmSecond SecondForm.Show()

Question2) I WANT WHEN THE APP LAUNCHES IT OPEN'S A WEPAGE ( www.hackcommunity.com e.g )

Code:
Process.start("http://www.hackcommunity.com")
[Image: tumblr_lawowkq1WB1qd0ix2o1_500.png]

Reply

RE: [VB.NET] Help . #2
You don't need a new instance of the Form2, so just open the Form2 directly.
Code:
Form2.ShowDialog 'Or Form2.Show 'Only a slight difference between these.

And,
Code:
Process.start("http://www.hackcommunity.com")
[Image: rytwG00.png]
Redcat Revolution!

Reply

RE: [VB.NET] Help . #3
OKay , i understand now , thanks .
btw do you know how to have an awesome GUI ?
[Image: tumblr_lawowkq1WB1qd0ix2o1_500.png]

Reply

RE: [VB.NET] Help . #4
I have a Tutorial for it:
[link=http://hackcommunity.com/Thread-Tutorial-VB-Net-How-To-Make-a-Professional-GUI]How To Make a Professional GUI in VB.Net[/link]
[Image: rytwG00.png]
Redcat Revolution!

Reply

RE: [VB.NET] Help . #5
Btw To Exit The Form With A Button Use What Code ?
[Image: tumblr_lawowkq1WB1qd0ix2o1_500.png]

Reply

RE: [VB.NET] Help . #6
Formname.Close
[Image: rytwG00.png]
Redcat Revolution!

Reply

RE: [VB.NET] Help . #7
AxWinsock1 , what is the tool from the toolbox ?
[Image: tumblr_lawowkq1WB1qd0ix2o1_500.png]

Reply

RE: [VB.NET] Help . #8
That is probably the Winsock COM control in VB.Net. It is used to send and receive network packets.
[Image: rytwG00.png]
Redcat Revolution!

Reply

RE: [VB.NET] Help . #9
where can i access the COM control i'm sorry i'm noob ><
[Image: tumblr_lawowkq1WB1qd0ix2o1_500.png]

Reply

RE: [VB.NET] Help . #10
Download it and browse from the Toolbox. It is a VB6 control, so you might face some problems using it.
[Image: rytwG00.png]
Redcat Revolution!

Reply