Click here to Skip to main content
15,902,114 members
Home / Discussions / C#
   

C#

 
GeneralRe: Problem with Access database connectivity in C#.Net Pin
Verghese22-May-08 8:58
Verghese22-May-08 8:58 
QuestionWhat does Application.SetCompatibleTextRenderingDefault (bool) do? Pin
Jordanwb22-May-08 6:11
Jordanwb22-May-08 6:11 
AnswerRe: What does Application.SetCompatibleTextRenderingDefault (bool) do? Pin
Judah Gabriel Himango22-May-08 6:30
sponsorJudah Gabriel Himango22-May-08 6:30 
GeneralRe: What does Application.SetCompatibleTextRenderingDefault (bool) do? Pin
Jordanwb22-May-08 9:34
Jordanwb22-May-08 9:34 
GeneralRe: What does Application.SetCompatibleTextRenderingDefault (bool) do? Pin
Judah Gabriel Himango23-May-08 4:46
sponsorJudah Gabriel Himango23-May-08 4:46 
Questioncomparing 2 strings Pin
Jerry Graham22-May-08 5:37
Jerry Graham22-May-08 5:37 
AnswerRe: comparing 2 strings Pin
Gareth H22-May-08 6:09
Gareth H22-May-08 6:09 
Questionlistview problem Pin
angels77722-May-08 5:11
angels77722-May-08 5:11 
hi.. i have a question related to the listview.. i did the below things.. but how do i assign the value to the listview /?


void call_listview()
        {          
            cmd.Connection = con;
            cmd.CommandText = "select * from contact";
            da.SelectCommand = cmd;
          
            
            DataTable store = new DataTable();  
            try
            {
               
                ds.Clear();
                con.Open();
                da.Fill(ds);
                store = ds.Tables[0];

                int count_friend = store.Rows.Count;
                contact_total_friends.Content = count_friend;
               
                contact_listview.DataContext = ds.Tables[0].DefaultView;
            }

            catch (Exception ex)
            {                
                MessageBox.Show(ex.Message);            
            }
            finally
            {
                con.Close();
            }
        }

AnswerRe: listview problem Pin
Judah Gabriel Himango22-May-08 5:34
sponsorJudah Gabriel Himango22-May-08 5:34 
QuestionI can't seem to find the BitArray equivalent to Array.ConstrainedCopy() Pin
Zig15822-May-08 4:41
Zig15822-May-08 4:41 
AnswerRe: I can't seem to find the BitArray equivalent to Array.ConstrainedCopy() Pin
Judah Gabriel Himango22-May-08 6:26
sponsorJudah Gabriel Himango22-May-08 6:26 
AnswerRe: I can't seem to find the BitArray equivalent to Array.ConstrainedCopy() Pin
Peter Josefsson Sweden22-May-08 9:34
Peter Josefsson Sweden22-May-08 9:34 
GeneralRe: I can't seem to find the BitArray equivalent to Array.ConstrainedCopy() Pin
Zig15822-May-08 13:43
Zig15822-May-08 13:43 
QuestionMulti Language Support for C# application Pin
Prashant C22-May-08 3:57
Prashant C22-May-08 3:57 
AnswerRe: Multi Language Support for C# application Pin
Simon P Stevens22-May-08 5:05
Simon P Stevens22-May-08 5:05 
QuestionUsing both .NET caching and generic list. Pin
Steve Holdorf22-May-08 3:00
Steve Holdorf22-May-08 3:00 
AnswerRe: Using both .NET caching and generic list. Pin
J4amieC22-May-08 3:20
J4amieC22-May-08 3:20 
GeneralRe: Using both .NET caching and generic list. Pin
Steve Holdorf22-May-08 3:50
Steve Holdorf22-May-08 3:50 
GeneralRe: Using both .NET caching and generic list. Pin
Guffa22-May-08 4:06
Guffa22-May-08 4:06 
QuestionRe: Using both .NET caching and generic list. Pin
Steve Holdorf22-May-08 4:25
Steve Holdorf22-May-08 4:25 
AnswerRe: Using both .NET caching and generic list. Pin
led mike22-May-08 4:45
led mike22-May-08 4:45 
GeneralRe: Using both .NET caching and generic list. Pin
Steve Holdorf22-May-08 5:01
Steve Holdorf22-May-08 5:01 
GeneralRe: Using both .NET caching and generic list. Pin
Steve Holdorf22-May-08 5:08
Steve Holdorf22-May-08 5:08 
GeneralRe: Using both .NET caching and generic list. Pin
Steve Holdorf22-May-08 5:35
Steve Holdorf22-May-08 5:35 
GeneralRe: Using both .NET caching and generic list. Pin
Steve Holdorf22-May-08 5:51
Steve Holdorf22-May-08 5:51 

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.