CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Nov 2008
    Posts
    27

    Lightbulb changing the names of coloumn names of ms access table

    I have a button and on the click of that button i want to change a the name of few fielnames of Ms access table In Vb.net coding.

  2. #2
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: changing the names of coloumn names of ms access table

    Search for ADOX. Here's a reference

    http://www.vbforums.com/showthread.php?t=251384
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

  3. #3
    Join Date
    Nov 2008
    Posts
    27

    Lightbulb Re: changing the names of coloumn names of ms access table

    the given thread revolves around how to make a database and assign the column names..but i simply have to remane my coloumn names with new ones on a button click.

  4. #4
    Join Date
    Dec 2008
    Posts
    5

    Re: changing the names of coloumn names of ms access table

    Well, what items. And to what name?
    I would use:

    ITEMname.Name = "New Name"

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured