Search results for query: *

  1. R

    Question declare BindingSource component at run time with sql database

    thank you for being so rude and not solving the problem... my mistake that I posted the question on this forum. And promise that wont repeat the same. I know I am not pating you for this but as a moderator of this forum and being a developer you shouldn't react that way to people's queries. I am...
  2. R

    Question declare BindingSource component at run time with sql database

    [CODE] 'Open the mountains file geodatabase feature class Dim mountainsTable As Table = Table.OpenFileGeodatabaseTable("C:\Data\Scotland.gdb", "mountains") 'Create a new TableBindingAdapter object for the mountains Table Dim tableAdapter As TableBindingAdapter = New...
  3. R

    Question declare BindingSource component at run time with sql database

    TableAdapter comes in to existence when i declare the datbase source.... pls try to understand- there are some text fields and the data from sql database should bind to them.. I wan to know how can I declare the DataSource property of BindingSource component at RUN TIME????
  4. R

    Question declare BindingSource component at run time with sql database

    I had made a simple app before in which there were two text fields and the BindingSource component was used to fill those fields with data on form load from ms sql server and eventually bind those fields with sql database. but now what i want is that the user tells the sql file name on run...
  5. R

    Question prob while trying to use MD5 for password

    i tried this but its not working.... please help me ..... i actually want to just put a login form in my project that has md5 encryption enabled for storing the passwords
  6. R

    Question prob while trying to use MD5 for password

    now i am getting a run-time error i changed bytestring to bytestring() as u said... and tried to enter a username and password but as soon as i click on "register" button an exception/error occurs and stops the program.. i was getting a warning message also after building the...
  7. R

    Question prob while trying to use MD5 for password

    thanks johnH :biggrin:
  8. R

    Question prob while trying to use MD5 for password

    Iam getting 3 :frown::frown::frown:errors while trying the below code for storing the password of registered user as md5 hash and performing hash check at time of login... please help me out.... thanks in advance !!! Option Strict On Imports System.IO Public Class LoginForm1 #Region...
Back
Top