Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~6K People Reached
Favorite Tags

17 Posted Topics

Member Avatar for Bharati Krishna

Hi, For the benefit of newbies here is a list of all the topics you need to know to program a connection using VB to a SQL Server database and develop a database software. 1. Network Operating system. 2. SQL Server 2000 Installation on a Client / Server Network. 3. …

Member Avatar for meer_366
0
653
Member Avatar for Squires

Hi, Application series books published by VK publishers are good. Regards Bhar [QUOTE=Squires]I've looked around the forums and did not find a lot of book reviews, so I figure I'll ask. Generally speaking, what are some good programming books? Any specific authors or series that you would recommend? Now to …

Member Avatar for DenizGursel
0
190
Member Avatar for marequi

Hi, Authenticating Users with a Database Table To support a custom user registration system, we need to store usernames and passwords in a database table, so that we can make this as a scalable solution. Step1 :Create a table in the database named as UserTable. The structure of the table …

Member Avatar for Fungus1487
0
323
Member Avatar for johnangxun

Hi, The code for the Button_Click() of Login page. Sub Button_Click(By Val As Object, By Val As EventArgs) If IsValid Then If FormsAuthentication.Authenticate(txtUsername.Text, txtPassword.Text) Then FormsAuthentication.RedirectFromLoginPage(txtUsername.Tex,False) Else lblMessage.Text="Bad Username/Password") End If End If End Sub The above code will first check the username and password passed by the user. If …

Member Avatar for Bharati Krishna
0
253
Member Avatar for David Super

Hi, Dim Con As New OleDb.OleDbConnection("Provider=MySQLProv;Data Source=DATABASE;User Id=YOURSQLUSERNAME;Password=YOURSQLPASSWORD;") Dim Com As New OleDb.OleDbCommand("SELECT * FROM TABLENAME ORDER BY DESIREDFIELD ASC", Con) Com.Connection.Open() regards bhar [url]http://www.vkinfotek.com[/url]

Member Avatar for Bharati Krishna
0
291
Member Avatar for peer mohamed

Hi, The following code segment demonstrates how to create a connect to a Microsoft Access database using an OleDbConnection. Connection string for MS Access via OLE DB: Dim connection As OleDbConnection connection = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\mydir\access.mdb;User Id=;Password=;") connection.Open(); Regards bhar Knowledge is power [url]http://www.vkinfotek.com[/url] [QUOTE=peer mohamed]I am a beginer for …

Member Avatar for Bharati Krishna
0
103
Member Avatar for Vickyy

Hi, You can develop a module of ERP which is currently hot in the IT market. This will help you to appear for ERP related job interviews. Develop a module like Accounting/ Inventory using vb.net and SQL server 2000/2005 with a focus on database connections using ADO.net, OOPs Programming, multi-tier …

Member Avatar for Bharati Krishna
1
477
Member Avatar for vhinehds

Hi, If you want to develop a complete Database Application using classes, I would advise you to refer this book Titled:" Develop an Accounting package using vb and SQL server 2000". You can build a class to access data (through methods) from SQL server, update data, Managing Connection and any …

Member Avatar for Bharati Krishna
0
1K
Member Avatar for nnchoudary

Hi, Start with good tutorials or with good books. Try this title:"Database programming using vb.net and sql server", by VK publishers. This books will give you the complete application development in vb.net.

Member Avatar for Bharati Krishna
0
176
Member Avatar for root

Hi, Good books on .net technologies, log on to :[url]http://www.vkinfotek.com[/url]. knowledge is Power bhar

Member Avatar for root
0
369
Member Avatar for benyam_dessu

Hi, For complete Grid programming, try this title: "Develop an Accounting package using Vb and SQL server, Client/Server version", by VK publishers. Regards bhar

Member Avatar for Bharati Krishna
0
129
Member Avatar for Viji

Hi, If she is intrested in Database programming, ask her to refer this Title:"Database programming using VB.Net and SQL server" by VK publishers. Regards bhar

Member Avatar for Bharati Krishna
0
149
Member Avatar for arnoldsmith30

Hi, Visit this link :[url]http://www.vkinfotek.com[/url] for good books in ASP.Net Regards bhar [QUOTE=arnoldsmith30]:D To have an deep knowledge in any topic we need to have an exhaustive knowledge. Only cramming from a book or solving some practice questions will not provide an effective knowledge.I am planning for exam 70-305. I …

Member Avatar for Bharati Krishna
0
102
Member Avatar for TennKV

Hi, This book " Data base programming using vb.net and sqlserver" will help you to develop the full application in .Net. try this link:[url]http://www.vkinfotek.com[/url] regards bhar

Member Avatar for Bharati Krishna
0
217
Member Avatar for hgim

Hi, You can also develop the code for add, modify and delete the records from one form. Try this book Titled:" Develop an accounting package using vb ". It should help you out.

Member Avatar for hatem
0
147
Member Avatar for shelly121

Hi, Try this code. For MS access, change accordingly. Purpose :To retrieve data from the database using Data Reader and Data Commands. When this code is executed, the data in a database is displayed in two textbox controls. Preparation: Design a form using .NET environment and place two textbox controls …

Member Avatar for Robert Walker
0
285
Member Avatar for Mr Gates

Among the many great features, Data Handling is impressive and seems to fit the requirements of web developers perfectly. Regards Bharati Krishna [url]http://www.vkinfotek.com[/url]

Member Avatar for dmohanty
0
821

The End.