Click here to Skip to main content
15,891,951 members
Home / Discussions / Mobile
   

Mobile

 
AnswerRe: Why application icon is not showing up? Pin
Joel Ivory Johnson10-Apr-10 6:27
professionalJoel Ivory Johnson10-Apr-10 6:27 
QuestionSymbian OS Pin
Member 32191047-Apr-10 17:01
Member 32191047-Apr-10 17:01 
AnswerRe: Symbian OS Pin
PavanPareta13-Apr-10 18:24
PavanPareta13-Apr-10 18:24 
QuestionHow can I add an application to programs group of OS? Pin
JUNEYT6-Apr-10 0:01
JUNEYT6-Apr-10 0:01 
AnswerRe: How can I add an application to programs group of OS? Pin
KingsGambit6-Apr-10 2:25
KingsGambit6-Apr-10 2:25 
AnswerRe: How can I add an application to programs group of OS? Pin
r.ps6-Apr-10 2:52
r.ps6-Apr-10 2:52 
QuestionBack Command problem in Mobile Objectlist Control Pin
NTheOne5-Apr-10 21:20
NTheOne5-Apr-10 21:20 
QuestionListView control in Csharp smart device Pin
Tunisien862-Apr-10 4:58
Tunisien862-Apr-10 4:58 
Hi,
I am a starter in developping applications with csharp smart device projects.I want to create a Form named PrincipalMenu where I have many icons that let me pass to other Forms.With the toolbox tool,I create my listView and i associated an imageList.I want now to show my icons(which are the nodes of my imagelist)when running the application and associate to anyone a code to let me pass to a form.
I write this code but it doesn't show me anything when running application:
using System;
using System.Linq;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace Essaie
{
public partial class Form1 : Form
{

private const int IMG_Traveaux = 0;
private const int IMG_Stock = 1;
private const int IMG_Energie = 2;
private const int IMG_Sync = 3;
private const int IMG_Info = 4;
private const int IMG_Quitter = 5;
private ListViewItem LVI_Traveaux;
private ListViewItem LVI_Stock;
private ListViewItem LVI_Energie;
private ListViewItem LVI_Sync;
private ListViewItem LVI_Info;
private ListViewItem LVI_Quitter;
public Form1()
{
InitializeComponent();

}

private void Form1_Load(object sender, EventArgs e)
{
ListView MaLV = new ListView();
MaLV.Parent = this;
MaLV.Dock = DockStyle.Fill;
MaLV.View = View.Details;
LVI_Traveaux = new ListViewItem("Travaux");
LVI_Traveaux.ImageIndex = IMG_Traveaux;
LVI_Stock = new ListViewItem("Stocks");
LVI_Stock.ImageIndex = IMG_Stock;
LVI_Energie = new ListViewItem("Energie");
LVI_Energie.ImageIndex = IMG_Energie;
LVI_Sync = new ListViewItem("Synchronisation");
LVI_Sync.ImageIndex = IMG_Sync;
LVI_Info = new ListViewItem("Informations");
LVI_Info.ImageIndex = IMG_Info;
LVI_Quitter = new ListViewItem("Quitter");
LVI_Quitter.ImageIndex = IMG_Quitter;
MaLV.Items.Add(LVI_Traveaux);
MaLV.Items.Add(LVI_Stock);
MaLV.Items.Add(LVI_Energie);
MaLV.Items.Add(LVI_Sync);
MaLV.Items.Add(LVI_Info);
MaLV.Items.Add(LVI_Quitter);
}
}

}
Can someone tells me the error and gives me the code of any node of the listview
thanks for u help
NewsMobile Developer Survey - Complete online and win prizes Pin
Matos Kapetanakis31-Mar-10 4:40
Matos Kapetanakis31-Mar-10 4:40 
QuestionHow to send SMS through SMSC using SMPP Pin
Paul Horstink29-Mar-10 3:40
Paul Horstink29-Mar-10 3:40 
AnswerRe: How to send SMS through SMSC using SMPP Pin
chirag7mca15-Jul-11 4:19
chirag7mca15-Jul-11 4:19 
QuestionPictureBox in .NET CF 3.5 won't paint changes to itself to the form when called from another thread [modified] Pin
Michael Coxon28-Mar-10 20:56
Michael Coxon28-Mar-10 20:56 
AnswerRe: PictureBox in .NET CF 3.5 won't paint changes to itself to the form when called from another thread Pin
KingsGambit29-Mar-10 18:12
KingsGambit29-Mar-10 18:12 
GeneralRe: PictureBox in .NET CF 3.5 won't paint changes to itself to the form when called from another thread Pin
Michael Coxon29-Mar-10 18:20
Michael Coxon29-Mar-10 18:20 
GeneralRe: PictureBox in .NET CF 3.5 won't paint changes to itself to the form when called from another thread Pin
KingsGambit29-Mar-10 19:29
KingsGambit29-Mar-10 19:29 
Questionhow to get Serial number from Windows CE ? (not Device ID) in C# ? Pin
Gali197828-Mar-10 3:41
Gali197828-Mar-10 3:41 
AnswerRe: how to get Serial number from Windows CE ? (not Device ID) in C# ? Pin
KingsGambit28-Mar-10 9:34
KingsGambit28-Mar-10 9:34 
QuestionWindows Phone 7 XML? Pin
pelnor27-Mar-10 17:37
pelnor27-Mar-10 17:37 
AnswerRe: Windows Phone 7 XML? Pin
AETaylor14-Apr-10 1:47
AETaylor14-Apr-10 1:47 
AnswerRe: Windows Phone 7 XML? Pin
Bonhomme M15-Apr-10 23:23
Bonhomme M15-Apr-10 23:23 
QuestionEncoding to be used for saving a file in J2ME Pin
Aditya2225-Mar-10 18:57
Aditya2225-Mar-10 18:57 
AnswerRe: Encoding to be used for saving a file in J2ME Pin
KingsGambit25-Mar-10 19:21
KingsGambit25-Mar-10 19:21 
GeneralRe: Encoding to be used for saving a file in J2ME Pin
Aditya2225-Mar-10 21:54
Aditya2225-Mar-10 21:54 
GeneralRe: Encoding to be used for saving a file in J2ME Pin
KingsGambit26-Mar-10 17:00
KingsGambit26-Mar-10 17:00 
GeneralRe: Encoding to be used for saving a file in J2ME Pin
Aditya2228-Mar-10 19:27
Aditya2228-Mar-10 19:27 

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.