Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
VB .Net - Connection object
Name: duquetten Date: July 20, 2005 at 11:16:37 Pacific OS: XP CPU/Ram: 2.4 GHz/1 GB
Comment:
Hi all, I created a form in VB .Net called frmStart. If the user clicks Yes on the form, they are brought to another form called frmYes. On this form there are several fields for them to fill in. Then they click a submit button. The action associated with clicking the button is to call another function (Private Sub) and pass it the user data. btSUB_frmYes is the name of the button so: Private btSUB_frmYes_Click () . . . code that processes the form data Call updateThruputDB(strFileName, blResult,strComments)
End Sub In Priave updateThruputDB( . . . ) I want to say: Dim cnThruputDB AS Connection but Connection is not an option, in the list that appears I only have ConnectionState.
I have looked all over the web and can not figure this out. Can someone please explain why "Connection" is not available? I created this in Visual Studio .Net as a windows application that is compiled and the starting point is frmStart. Thanks!
Summary: I have this project to do in my VB.net class The project is write a vb.net program that makes reservations for a hotel storing the reservations in a Orcale 8 database Database schema Table Guests(...
Summary: hi guys, i'm a new learner of programming and currently going thru vb.net. i'm working on a windows app which requires to have a user login and password authenticated which are alraedy stored in the s...
Summary: I have been struggling with data connection with vb.net and oracle as my database. The problem is that with the web application, the database connectivity is proper but with a web application it show...