Click here to Skip to main content
15,890,370 members
Home / Discussions / C#
   

C#

 
GeneralRe: Data in GridView is not being displayed correctly Pin
Member 970415330-Dec-12 0:52
Member 970415330-Dec-12 0:52 
GeneralRe: Data in GridView is not being displayed correctly Pin
Member 970415330-Dec-12 1:16
Member 970415330-Dec-12 1:16 
GeneralRe: Data in GridView is not being displayed correctly Pin
Jibesh30-Dec-12 1:20
professionalJibesh30-Dec-12 1:20 
GeneralRe: Data in GridView is not being displayed correctly Pin
Member 970415330-Dec-12 1:23
Member 970415330-Dec-12 1:23 
GeneralHow can i Develop intelligent character recognition (icr) using C3 windows application Pin
Rameshkannabravo29-Dec-12 8:24
professionalRameshkannabravo29-Dec-12 8:24 
GeneralRe: How can i Develop intelligent character recognition (icr) using C3 windows application Pin
PIEBALDconsult29-Dec-12 10:46
mvePIEBALDconsult29-Dec-12 10:46 
GeneralRe: How can i Develop intelligent character recognition (icr) using C3 windows application Pin
Richard MacCutchan29-Dec-12 21:30
mveRichard MacCutchan29-Dec-12 21:30 
QuestionFill Combobox with Large amount of Data Pin
Nabawoka29-Dec-12 3:17
Nabawoka29-Dec-12 3:17 
i have more than 55000 Customer and i wanna Fill Combobox with this customers quick .. there is any way
to load form quickly and to enter Combobox quickly
** i use background worker but this hang my form and my app is run slowly can i use threading and how
i want solutin plz

C#
 private void backWork_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
        {
            if (e.Cancelled)
            {
            }
            else
            {
               FillComboBox();
               cmb3ameelname.Focus();
               Loadform = true;
               cmb3ameelname.SelectedItem = null;
               cmbLandTele.SelectedItem = null;
            }
        }

 private void backWork_DoWork(object sender, DoWorkEventArgs e)
        {
            CusLis = CustomerManger.SelectCustomersAll();
        }


void FillComboBox()
    {
      cmbameelname.DataSource = CusLis;
      cmbameelname.DisplayMember = "CustName";
     cmbameelname.ValueMember = "CustId";
   }

frm_load()
   {
       this.backWork.DoWork += new DoWorkEventHandler(this.backWork_DoWork);

        this.backWork.RunWorkerCompleted+=new RunWorkerCompletedEventHandler(this.backWork_RunWorkerCompleted);

      this.backWork.RunWorkerAsync();
   }

AnswerRe: Fill Combobox with Large amount of Data Pin
Eddy Vluggen29-Dec-12 3:36
professionalEddy Vluggen29-Dec-12 3:36 
GeneralRe: Fill Combobox with Large amount of Data Pin
Nabawoka29-Dec-12 23:53
Nabawoka29-Dec-12 23:53 
AnswerRe: Fill Combobox with Large amount of Data Pin
OriginalGriff29-Dec-12 4:08
mveOriginalGriff29-Dec-12 4:08 
GeneralRe: Fill Combobox with Large amount of Data Pin
Nabawoka29-Dec-12 23:56
Nabawoka29-Dec-12 23:56 
AnswerRe: Fill Combobox with Large amount of Data Pin
SledgeHammer0129-Dec-12 8:02
SledgeHammer0129-Dec-12 8:02 
GeneralRe: Fill Combobox with Large amount of Data Pin
Nabawoka29-Dec-12 23:56
Nabawoka29-Dec-12 23:56 
QuestionAuthentication using HTTPWebRequest Pin
logicon29-Dec-12 1:14
logicon29-Dec-12 1:14 
AnswerRe: Authentication using HTTPWebRequest Pin
SledgeHammer0129-Dec-12 9:31
SledgeHammer0129-Dec-12 9:31 
QuestionSave and Retrieve Image Pin
nirmalgopalakrishnan28-Dec-12 22:02
nirmalgopalakrishnan28-Dec-12 22:02 
AnswerRe: Save and Retrieve Image Pin
Richard MacCutchan28-Dec-12 23:18
mveRichard MacCutchan28-Dec-12 23:18 
GeneralRe: Save and Retrieve Image Pin
nirmalgopalakrishnan29-Dec-12 5:15
nirmalgopalakrishnan29-Dec-12 5:15 
GeneralRe: Save and Retrieve Image Pin
Richard MacCutchan29-Dec-12 5:57
mveRichard MacCutchan29-Dec-12 5:57 
GeneralRe: Save and Retrieve Image Pin
nirmalgopalakrishnan29-Dec-12 6:07
nirmalgopalakrishnan29-Dec-12 6:07 
GeneralRe: Save and Retrieve Image Pin
Richard MacCutchan29-Dec-12 6:17
mveRichard MacCutchan29-Dec-12 6:17 
AnswerRe: Save and Retrieve Image Pin
nirmalgopalakrishnan29-Dec-12 19:14
nirmalgopalakrishnan29-Dec-12 19:14 
GeneralRe: Save and Retrieve Image Pin
Richard MacCutchan29-Dec-12 21:22
mveRichard MacCutchan29-Dec-12 21:22 
GeneralRe: Save and Retrieve Image Pin
nirmalgopalakrishnan30-Dec-12 19:57
nirmalgopalakrishnan30-Dec-12 19:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.