CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: deurebokkn

Search: Search took 0.04 seconds.

  1. Re: Large project. How would u write the classes.

    Sorry for the late reply was on holiday.

    What I mean is:
    The comboboxes must all be selected.
    So it's only how u would fill the comboboxes.
    Even if it were only 50 comboboxes the question is:...
  2. Large amount of thumbnails in datagridview c#

    I have a article table with over 10000 records
    There are around 1500 articles with a picture.
    And around 500 with around 3 pictures of the article.

    Searched for many houres on the internet. But...
  3. Re: Large project. How would u write the classes.

    thx for the reply.

    From ground up. The data is saved in one table trailer that all have in common.
    The other data is saved just with the foreign keys => specification table.
    The database is...
  4. Re: Large project. How would u write the classes.

    Ok let me explain a little bit further.

    The goal of the project is that the designers fill in the whole thing so everyone can look in to it in the company at the moment.
    It's with a database that...
  5. Large project. How would u write the classes.

    I'm writing a program and I could use some inspiration with the classes.
    The pattern is already in place (using mvp because they want to expand to both website and phone in about a year). With a...
  6. Re: WCF service does not return response to model

    Worked out.

    Did change app.config in both the model and the Starters project. (had to change in both app.configs)

    What changed:
    - Time out all to 10 minutes.
    - the readerQuotas.
    -...
  7. Re: WCF service does not return response to model

    Tested it with a sql statement show less then ... id.
    It shows untill 149 records.
    After it, doesn't returns response.

    Think it is something with the lists capacity.
  8. Re: WCF service does not return response to model

    Client = ServiceReference.Client
    _klantdao = Just the class with the sql statements that returns a list. See below.


    public static List<T> ReadList<T>(string sql, Func<IDataReader, T> make,...
  9. WCF service does not return response to model

    I created a project with winforms and used the mvp pattern.
    The data with validations is transefered with a wcf.service.

    This is the model that is used to make the response.


    public...
Results 1 to 9 of 9





Click Here to Expand Forum to Full Width

Featured