Click here to Skip to main content
15,889,096 members
Home / Discussions / C#
   

C#

 
GeneralRe: Trying to create a new array Pin
PIEBALDconsult16-Dec-10 16:37
mvePIEBALDconsult16-Dec-10 16:37 
AnswerRe: Trying to create a new array Pin
Hiren solanki16-Dec-10 19:07
Hiren solanki16-Dec-10 19:07 
QuestionC# - How to call database records one-by-one and display it in ListView? [modified] Pin
LAPEC16-Dec-10 10:50
LAPEC16-Dec-10 10:50 
AnswerRe: C# - How to call database records one-by-one and display it in ListView? Pin
Luc Pattyn16-Dec-10 11:06
sitebuilderLuc Pattyn16-Dec-10 11:06 
GeneralRe: C# - How to call database records one-by-one and display it in ListView? Pin
LAPEC16-Dec-10 11:12
LAPEC16-Dec-10 11:12 
AnswerRe: C# - How to call database records one-by-one and display it in ListView? Pin
Henry Minute16-Dec-10 11:30
Henry Minute16-Dec-10 11:30 
AnswerRe: C# - How to call database records one-by-one and display it in ListView? Pin
Luc Pattyn16-Dec-10 11:36
sitebuilderLuc Pattyn16-Dec-10 11:36 
GeneralRe: C# - How to call database records one-by-one and display it in ListView? Pin
LAPEC16-Dec-10 12:21
LAPEC16-Dec-10 12:21 
Hi Luc again

I got that part of your code so far is working but im having another problem at my
cmdOlives_Click event button...
private void cmdOlives_Click(object sender, EventArgs e)
        {
            if (menuItems.Count > 0)
            {
                System.Windows.Forms.ListViewItem newItem = new System.Windows.Forms.ListViewItem(menuItems[1]);

                
                for (int i = 1; i < menuItems[1].Length; i++)
                {
                    newItem.SubItems.Add(menuItems[i]);
                }

                TableOrderListView.Items.Add(newItem);
            }
        }

GeneralRe: C# - How to call database records one-by-one and display it in ListView? Pin
Luc Pattyn16-Dec-10 12:26
sitebuilderLuc Pattyn16-Dec-10 12:26 
GeneralRe: C# - How to call database records one-by-one and display it in ListView? Pin
LAPEC16-Dec-10 12:59
LAPEC16-Dec-10 12:59 
GeneralRe: C# - How to call database records one-by-one and display it in ListView? Pin
Luc Pattyn16-Dec-10 13:26
sitebuilderLuc Pattyn16-Dec-10 13:26 
GeneralRe: C# - How to call database records one-by-one and display it in ListView? Pin
LAPEC16-Dec-10 13:32
LAPEC16-Dec-10 13:32 
GeneralRe: C# - How to call database records one-by-one and display it in ListView? Pin
Henry Minute16-Dec-10 12:27
Henry Minute16-Dec-10 12:27 
AnswerRe: C# - How to call database records one-by-one and display it in ListView? Pin
Henry Minute17-Dec-10 9:48
Henry Minute17-Dec-10 9:48 
GeneralRe: C# - How to call database records one-by-one and display it in ListView? Pin
LAPEC17-Dec-10 14:30
LAPEC17-Dec-10 14:30 
GeneralRe: C# - How to call database records one-by-one and display it in ListView? Pin
Henry Minute17-Dec-10 14:40
Henry Minute17-Dec-10 14:40 
GeneralRe: C# - How to call database records one-by-one and display it in ListView? Pin
LAPEC17-Dec-10 14:56
LAPEC17-Dec-10 14:56 
GeneralRe: C# - How to call database records one-by-one and display it in ListView? Pin
Henry Minute17-Dec-10 15:03
Henry Minute17-Dec-10 15:03 
GeneralRe: C# - How to call database records one-by-one and display it in ListView? Pin
Henry Minute17-Dec-10 14:56
Henry Minute17-Dec-10 14:56 
GeneralRe: C# - How to call database records one-by-one and display it in ListView? Pin
LAPEC17-Dec-10 15:11
LAPEC17-Dec-10 15:11 
GeneralRe: C# - How to call database records one-by-one and display it in ListView? Pin
LAPEC18-Dec-10 12:28
LAPEC18-Dec-10 12:28 
GeneralRe: C# - How to call database records one-by-one and display it in ListView? Pin
Henry Minute18-Dec-10 13:13
Henry Minute18-Dec-10 13:13 
GeneralRe: C# - How to call database records one-by-one and display it in ListView? Pin
LAPEC18-Dec-10 13:25
LAPEC18-Dec-10 13:25 
GeneralRe: C# - How to call database records one-by-one and display it in ListView? Pin
Henry Minute19-Dec-10 0:35
Henry Minute19-Dec-10 0:35 
GeneralRe: C# - How to call database records one-by-one and display it in ListView? Pin
LAPEC19-Dec-10 1:15
LAPEC19-Dec-10 1:15 

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.