Question:
currently using visual basics and need help please?
anonymous
2006-09-26 14:57:37 UTC
ok so i am a newbie and i am finished with my first page:)
now i want it to contect to another page when clicking a button that i put, how can i do this, can anybody give me the proper codes.(remember i am new so don't make it sound complicated please)
Three answers:
SmartSpider
2006-09-26 15:38:48 UTC
In the OnClick method of the button write the code

.hide

.show



where is the name of the form you are currently on (ie the one from which you want to navigate) and is the name of the form that you want to go to.
Krex
2006-09-27 07:55:34 UTC
a newbie should have a gud vb book, a gud knowledge of properties and methods.. and MUST KNOW how to search..

Use MSDN

Get all vb codes from here:-

http://www.vbcode.com/Asp/code.asp?lstCategory=Forms

Dont jst copy paste ... learn them..
James R
2006-09-27 15:12:24 UTC
Make the form apear with

form.visable = true



and make the other form dissapear with

form.visable = false



or



form.hide



if you want it to stay in memory(I think)


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...