Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #3K
~734 People Reached
Favorite Tags

5 Posted Topics

Member Avatar for thebigo

Hello I have a VB.NET application that needs to backup a database then restore to a new database in the same Server as I am upgrading an application and I want to retain the existing database. I create a blank database using the following: [code]cmdSA.CommandText = "CREATE DATABASE [newDatabase]" cmdSA.ExecuteNonQuery()[/code] …

Member Avatar for thebigo
0
304
Member Avatar for thebigo

Hello I have two tables a Master and Child. I want to return a recordset that has all of the Master records and any related child values. Sample Data: [INDENT][B]Master Table[/B] 'id' 'field1' 1 Test1 2 Test2 3 Test3 [B]Child Table[/B] 'id' 'masterID' 'field1' 1 2 Child1[/INDENT]The following code will …

Member Avatar for Ramy Mahrous
0
117
Member Avatar for santhanalakshmi

Why not use Session Variables? Once the user is verified create a Session variable (e.g. Session("Verified") = "Yes"). In the Page Load check if the value is Yes. Much easier and quicker than a database access plus MS Access sucks as a multi-user database.

Member Avatar for JackyGZ
0
158
Member Avatar for GL.Za

Hello I'm not sure why you need to store the data first. This works for me ... [code] dim checkLogin = from x in DataContext.table _ Where x.User = UserName.toString AND x.Password = Password.toString _ Select x if checkLogin.count = 1 then ' valid user else ' invalid user end …

Member Avatar for GL.Za
0
90
Member Avatar for thebigo

Hello I am re-writing an application from VS2003 to VS2008 (.NET 3.5). In the older version there was a file named 'AssemblyInfo.vb' that held version numbers, copyright information etc. I can't find anything to replace it in VS 2008. Basically I want to create an About Box for my web …

0
65

The End.