Search results for query: *

  1. B

    [VB.NET2005] 3-tier layer application

    Hi, There is article on database application development based on layers. http://blog.vkinfotek.com
  2. B

    datagridview column sum

    Calculating total of columns in a datagridview control Hi, Calculating total of columns in a datagridview control The function CreditTotal() Calculates the total of Credit column of the DataTable ‘PrivateDataTable’ which in turn binds to DataGridView control. This function returns the total...
  3. B

    does ado.net have a liveconnection?

    Reply to ADO.Net live Connection Hi, ADO.net is what you will b eusing in most of your .Net applications, because of its disconnected architecture. However, you should keep in mind that ADO.NET is firmly targeted at n-tier Web applications, or applications that are distributed over a number of...
  4. B

    Difference between Recordset in VB and Dataset in .net

    Original Post Hi, My attempt is to always answer Newbie Questions without confusing the newbie. I want the newbie to answer more questions after reading my reply so that they can feel they have learnt it themselves and also meet my objective of giving information in stages. Regards Bhar...
  5. B

    Overall problems with Databases (connection) in .net

    Developing apps in VB.net Hi, There are differences between vb6 and .Net. You should basically cocentrate on disconnected architecture for accessing the data and updating the data through dataadapters. Developing Client/Server apps are very easy. Split the classes based on the standard...
  6. B

    Difference between Recordset in VB and Dataset in .net

    Hi, Recordset provides data one row at a time. Dataset is a data structure which represents the complete table data at same time. Recordset has the logic to update and manipulate data Dataset is just a data store and manipulation is done through DataAdapters in .NET. The main diff betwn...
  7. B

    Trying to get login to work

    Forms-based Authentication in ASP.Net application Hi, Forms Authentication allows developers to store the authentication information, such as username and password, in the Web.config file. The user’s request will go to IIS first and the user is authenticated by IIS. If the anonymous access is...
  8. B

    Data Adapter resources?

    Updating the datasource Hi, Updating the datasource is done using the update method of the DataAdapter class. This method is responsible for examining the RowState property of each of the DataRow objects in the Rows collection. The Rows Collection is a member of each of the DataTable objects...
  9. B

    Design of a Commercial Application

    Developing commercial application using VB.Net Hi, Five years back i developed a product using VO 2.0 and DataReport. Since 2000 onwards i have been with Microsoft products. It is right time for you to switch over to the .net development. You will surely like the MS products and you can...
  10. B

    Information for a relational databases, viewing and saving data, explained clearly?

    Books for inserting, saving, editing and retrieving data. Hi, The "Application Series" of books are written with specic goal of teaching : The coding techniques for inserting, saving, editing and retrieving data. These techniques are explained using VB.Net, ASP.Net, for the SQL Server...
  11. B

    Good Information for Beginners - Assemblies

    Good article on Assemblies Hi, you can also see this link:http://www.vkinfotek.com/assembly.html and http://www.vkinfotek.com/assemblyhowto.html Regards bhar
  12. B

    Book on Database programming

    Hi, log on to http://www.vkinfotek.com. There is a good book on .net programming.
  13. B

    Updating data through Transaction Control

    Updating the database Hi, Why do you want to do like that? Regards bhar http://www.vkinfotek.com
  14. B

    VS2005 and VB.Net Question...

    Re: Creating a vb6 application in VS2005 Hi, Not possible to create vb6 windows app in VS2005. Regards bhar http://www.vkinfotek.com
  15. B

    Move through dataset and assign to form

    RE: Default Move through dataset and assign to form Hi, You need to study about the Binding Context object. To change the current location in a DataTable, use the BindingContext object. This object is a property of the form and keeps track of the current position in each Datatable of each...
  16. B

    VB.NET training in Kuala Lumpur,Malaysia

    Good resouce for VB.Net Learning Hi, Log on to http://www.vkinfotek.com Regards bhar Knowledge is power
  17. B

    Reporting basics?

    Learn reports basics Hi, TRy this Title:"Database programming using VB.net and Sql server 2000". This book teaches you the complete database application development including masters, transactions and reports. Visit http://www.vkinfotek.com.
  18. B

    Overloading

    Procedure Overloading in VB.Net Hi, Defining of multiple procedures using the same name but different argument lists is known as Procedure OverLoading. We can overload a procedure to define similar procedures without having to differentiate them by name. We can overload a procedure by varying...
  19. B

    Reference Books

    Good book on .net Hi, Try this book:"Database programming using VB.Net and SQL server 2000". This book teaches the programming the Accounting module (ERP) along with domain knowledge. Regards bhar knowledge is power.
  20. B

    Connecting to SQL Server with VB.NET

    Hi, Use this code. 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 on a...
Back
Top