Search Result

Collapse
8 results in 0.0083 seconds.
Keywords
Members
Tags
databinding
  •  

  • NormanB
    started a topic Bound Access database update and fill problem

    Bound Access database update and fill problem

    I have a bound Access database which contains tables "Recipes", "Ingredient s" and "Units". A linked table "Recipe ingredients" holds id references to each of these tables.

    My problem occurs when importing a new recipe from a text file. I create the reipe first and call the adapter update for the recipes table and then refill it. Then I create an entry in the recipe_ingredie nts table which I also...
    See more | Go to post

  • chamarajanaka
    started a topic Using Bind Function

    Using Bind Function

    I need to Bind "JobRefNo" to the query string.Below binding gives an error.what is the correct way?

    Code:
    <asp:LinkButton ID="MoreLinkButton" PostBackUrl="/real/Coordinator/Home.aspx?JobRefNo="'<%# Bind("JobRefNo") %>' runat="server">Go To Job...</asp:LinkButton>
    Link Button is inside a DataList control.Error says "Call to Bind must be assigned to a property...
    See more | Go to post

  • How to databind results of LINQ query from ADO.Net Entity Framework with DataGrid

    Hi.
    I have SQL Server database that is connected to my WPF desktop-based application via ADO.NET Entity Framework.

    Now I need get content of one of the table via LINQ query and show it in DataGrid control. Also, I need to let user to edit or delete data from DataGrid and update my database according this change.

    Here is a LINQ query:
    Code:
    from d in App.glidusContext.tbl_users
    select new { d.userID,
    ...
    See more | Go to post

  • babai28
    started a topic INotifyPropertyChanged Question.

    INotifyPropertyChanged Question.

    I was really excited when I learned the usage of INotifyProperty Changed interface. It made binding a bliss and the UI highly interactive and dynamic for me. But then with every problem comes a solution and more problems.
    I will explain my question with an example. I have a student class.
    Code:
    public class Student : INotifyPropertyChanged
    {       
            const int MINIMUM_AGE = 1;
            int rollNumber = 0;
    ...
    See more | Go to post

  • wbwalsh
    started a topic DataBinding Through Code

    DataBinding Through Code

    Hi all. This is my first post… be gentle :)

    I'm not looking for the code to make it work... if you could just point me in the right direction... I am self-taught and really need to learn by doing rather then having it given to me. Thanks all!

    I have a WinForm with a single ListBox and several TextBoxes. I have an SQL database in the project. I am currently using a connection string to open and read the data filling...
    See more | Go to post
    Last edited by tlhintoq; Mar 30 '10, 06:23 PM. Reason: [CODE] ...Your code goes between code tags [/CODE]

  • roblasch
    started a topic Server control won't bind to database
    in C

    Server control won't bind to database

    I have a server control that inherits a dropdownlist. I can't for the life of me get it to bind in a formview insert template.

    <TeamDD:TeamDro pDownList ID="TeamID" runat="server" DataTable="tblT eams" DataTextField=" TeamName" ConnectString=" <%$ ConnectionStrin gs:MallersConne ctionString %>">
    </TeamDD:TeamDrop DownList>

    a regular dropdownlist...
    See more | Go to post

  • "InvalidArgument=Value of '0' is not valid for 'index'

    I am facing a problem in binding the datagridviewcom bo box cell.

    Code:
    DataGridViewComboBoxCell cmbControlTypes= new DataGridViewComboBoxCell();
    
    cmbControlTypes.DataSource = result.resultTable;
    cmbControlTypes.DisplayMember = "name";
    cmbControlTypes.ValueMember = "id";
    after binding the comboboxcell and adding it to row.
    when i access the item collection as follows.
    ...
    See more | Go to post
    Last edited by tlhintoq; Mar 2 '10, 12:58 PM. Reason: [CODE] ...Your code goes between code tags [/CODE]

  • Databinding - How does it work, and where do I start?

    I have a database in Access 2007, and a GUI in VB.NET 3.5. Where should I go to start learning about databinding, and how to have the front end manipulate the database?

    I would love to find some learning resources for coding and concepts that is more concise/condensed than random forums, Google, and the MSDN developer references.

    Most of these questions will be about databinding, datasets, querying, etc. The several...
    See more | Go to post
Working...