Recent content by vedika

  1. V

    How do I only get required row into my dataset

    You may try this basic code in VB.Net. It worked for me. Dim ds As New DataSet Dim dt As DataTable Dim dr As DataRow Dim cl As DataColumn Dim i As Integer dt = New DataTable() cl = New DataColumn( "theColumn", Type.GetType("System.Int32")) dt.Columns.Add(cl) dr = dt.NewRow() dr("theColumn") = 1...
  2. V

    Vb.net 1st real attempt.

    Thanks for this help.
  3. V

    Application Title bar for each accdr file.

    Thanks for this code and help. I was getting same problem luckily got answer in this forum.
  4. V

    Can i import data from portal to Access2010

    Exporting Data from Microsoft Access 2010 1. Launch Micorsoft Access and open Database* 2. Open ODBC Datasource, click on Advanced tab and*add* 'SuppressInfoForDataTypes=nvarchar'. This property will instruct*the ODBC driver that datatype for the nvarchar datatype should not returned for this...
  5. V

    Vb.net

    Visual Basic can mean more than one thing. Originally it was a standalone programming tool for creating Windows GUI apps. The last version of this was Visual Basic 6.0 from 1998. This version is dead. If you liked its simplicity and want to use something similar consider*Xojo, which is...
  6. V

    DOT NET Technology

    VB.Net is implemented by Microsoft’s .Net Framework which has completely support for the Object-Oriented concepts . There are some features are here of VB.Net • Standard Library • Boolean Conditions • Assembly Versioning • Easy-to- use Generics • Indexers • Conditional...
  7. V

    Load form on TabControl

    You handle the Click event when you to do something when the user clicks something. That's most usual for a Button but might be logical for some other controls too. Doing something when the user clicks a TabControl would be unusual to say that least. SelectedIndexChanged might be more usual. But...
  8. V

    Help going from VB 5 to VB.Net

    These are steps to migrate to VB.Net Decide whether to upgrade or not. There are program types that are best left in your current VB version. Projects that use UserControls, WebClasses, DHTML pages, VB's add-in model and other special techniques cannot easily be upgraded. Use a compatibility...
  9. V

    How to insert date and time into access

    You may try this code to insert data and time in MS Access using VB.Net Dim purchasedatetime As Date = System.DateTime.Now Str = "Insert into Customer_Order (Order_Date) values (@Order_Date)" cmd = New OleDbCommand(Str, cn) 'open the connection With cmd...
  10. V

    Saving Data in VB Net

    You may try this code to save data to VB.Net Imports System.Data.OleDb Public Class Form1 Dim cnn As String = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Users\ching13\Desktop\watta2.accdb" Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
  11. V

    Introduction

    I am Vedika Ledange working with India Infotech as VB.Net Developer. Being a fresher I am here to learn more technical things which will help me to solve many programming problems.
Top Bottom