blah blah blah is here! blah blah » Close

0
votes
0 answers

Regarding delegates and events

Hi there, I am working on Windows forms applicaton.I am using Objectlist view to dispay the data on selected User code from the combobox.Whenever user select a usercode and press the (+) button i need t get the data from business class a ...

0
votes
1 answers

MVC help needed

Recently I started to use MVC pattern to my windows applications. I found it very helpful. But I found one drawback. The events response is much slower that before. For example before using MVC, if I clicked a button the code inside Click e ...

1
votes
1 answers

Join two tables in one

I have two view How can I join both selects into one please? [code] var job = (from j in _entities.jobs where j.job_referenceNo ==referenceNo select j).FirstOrDefault(); var jobDetail = (from jd in _entities.job_detail where jd.re ...

0
votes
1 answers

What java frameworks provide MVC architecture?

Rick_A
761

Other than spring MVC (and grails which uses spring MVC), what other MVC frameworks exist for java? I'm looking for something very lightweight?

Feedback