Search results for query: *

  • Users: tashiduks
  • Content: Threads
  • Order by date
  1. tashiduks

    Question Move Data from one datagridview to another datagridview

    Hi Everyone, Currently i am working with Datagrid. I want to move the data from one datagrid to another. I can populate the data in datagrid using combo box. Now i am stuck with how to move the data between datagrid and save the data using save button. I following code till now which is working...
  2. tashiduks

    Question How to take a value form one form to another from

    Hi, I have a Two Forms Created under one Class Library. My Project Looks Like that: MyProjectClass (class Library) - frmMain.vb - frmLogin.vb - Class1.vb Now when i run first it loads the "frmLogin". After typing valid User Name and Password, it opens...
  3. tashiduks

    Help to change my subroutine to Function

    Hi, I am in learning process of VB.NET functions. Till now i have been using subroutine for any purpose/events. I have following subroutie to check the file exists: Private Sub FileCheck() Dim sPath As String = Application.StartupPath + "\" Dim strError As String = ""...
  4. tashiduks

    Question Change Password with Encryption Password

    Hi, I have a problem with changing the password from Microsoft Access Database. I get an Error "No data exists for the row/column". The password in the database is encrypted and when I change the password it should be decrypting the password and new password should be updated with encryption...
  5. tashiduks

    How to Bind Selected Tree Node to form controls

    Hi Everyone, I have following code which populates the data from database to treeview node. Private Sub FormLoad() Dim cnTest As New SqlClient.SqlConnection("DATA SOURCE=tashi\dbtestsrv;USER ID=sa;PASSWORD=s@1234;INITIAL CATALOG=BDFCLHR;") 'Dim daCountry As New...
  6. tashiduks

    Question how to search data from sql database using stored procedure

    Dear Expertise, I am problem with coding to search the data from database using stored procedure and vb.net form. I am coding with vb language not the C#. Explanation: I have stored procedure named "usp_GetPayByGrade" : /* Name: usp_GetPayByGrade Description: Search the...
  7. tashiduks

    Question Databinding Problem...

    HI Everyone, Private Sub DataBinding() Try Dim bsTableName2 As String bsTableName2 = "dbo.hrBranchSetup" brCode.DataBindings.Clear() brCode.DataBindings.Add(New Binding("Text", ds.Tables(bsTableName2), "BranchCode"))...
  8. tashiduks

    Question Validating Duplicate Record of SQL Database before Inserting & Updating

    Hi Everyone, Can any one tell me how to validate the Duplicate record before Inserting and Updating Command is Trigered from VB.Net Form. I am new to VB. Tashee
Back
Top