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

Mobile

 
QuestionRe: Making an installer for mobile devices Pin
Deques21-Aug-07 3:57
Deques21-Aug-07 3:57 
AnswerRe: Making an installer for mobile devices Pin
Talal Sultan21-Aug-07 4:31
Talal Sultan21-Aug-07 4:31 
QuestionIs an ad hoc network feasible? Pin
joao.pio16-Aug-07 3:37
joao.pio16-Aug-07 3:37 
AnswerRe: Is an ad hoc network feasible? Pin
João Paulo Figueira19-Aug-07 8:02
professionalJoão Paulo Figueira19-Aug-07 8:02 
GeneralRe: Is an ad hoc network feasible? Pin
joao.pio21-Aug-07 23:28
joao.pio21-Aug-07 23:28 
GeneralRe: Is an ad hoc network feasible? Pin
João Paulo Figueira22-Aug-07 0:01
professionalJoão Paulo Figueira22-Aug-07 0:01 
QuestionGridview on a PDA problem Pin
bobh052615-Aug-07 5:50
bobh052615-Aug-07 5:50 
QuestionObjectList and Footer Template Pin
sfm115-Aug-07 5:35
sfm115-Aug-07 5:35 
I created a web page for the purpose of learning about the ObjectList control. The list items are not displaying after I add a Footer Template via the designer (they display fine if I don't use a footer...autogenerate is set to 'no'). Am I required to use an Item Template if I use a Footer Template? Also, can anyone recommend a good book for building mobile web apps with VS 2005? My code is below:
Note: ObjectList control displays paging information for service call paging and acknowledgement.

<mobile:Form id="Form1" runat="server">
<mobile:Label ID="Label1" Runat="server" Alignment="Center">Unacknowledged Notices</mobile:Label>
<mobile:ObjectList ID="NoticeList" Runat="server" Alignment="Left"
CommandStyle-StyleReference="subcommand"
OnItemCommand="Notice_OnItemCommand" LabelField="PageID" AutoGenerateFields="False"
LabelStyle-StyleReference="title">
<Command Name="Acknowledge" Text="Acknowledge" />
<DeviceSpecific>
<Choice Xmlns="http://schemas.microsoft.com/mobile/html32template">
<FooterTemplate>
<mobile:Label ID="Label4" Runat="server">My Footer</mobile:Label>
</FooterTemplate>
</Choice>
</DeviceSpecific>
<Field DataField="PageID" Title="PageID" />
<Field DataField="SourceID" Title="SourceID" />
<Field DataField="EscLevel" Title="EscLevel" />
<Field DataField="NoticeDtTm" Title="NoticeDtTm" />
</mobile:ObjectList>
</mobile:Form>
.
.
.
Protected Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Me.Load
If (Not IsPostBack) Then
Dim array As New ArrayList
' test data
array.Add(New Notice("00323110", "no source", "E2", "08/13/07", "test 1"))
array.Add(New Notice("00323221", "no source", "E1", "08/14/07", "test 2"))
array.Add(New Notice("00324001", "no source", "E2", "08/14/07", "test 3"))

NoticeList.DataSource = array
NoticeList.DataBind()
NoticeList.TableFields = "PageID;NoticeDtTm;SourceID"
End If
End Sub

Thanks.
AnswerRe: ObjectList and Footer Template Pin
sfm121-Aug-07 3:21
sfm121-Aug-07 3:21 
Questionupdate .net compact framework Pin
Fouad_kayali15-Aug-07 3:45
Fouad_kayali15-Aug-07 3:45 
AnswerRe: update .net compact framework Pin
Justin Perez15-Aug-07 3:47
Justin Perez15-Aug-07 3:47 
GeneralRe: update .net compact framework Pin
Fouad_kayali15-Aug-07 4:01
Fouad_kayali15-Aug-07 4:01 
GeneralRe: update .net compact framework Pin
Justin Perez15-Aug-07 4:07
Justin Perez15-Aug-07 4:07 
GeneralRe: update .net compact framework Pin
Fouad_kayali15-Aug-07 4:02
Fouad_kayali15-Aug-07 4:02 
GeneralRe: update .net compact framework Pin
Justin Perez15-Aug-07 4:07
Justin Perez15-Aug-07 4:07 
QuestionConnecting to Web Service.. Pin
moomoooomoo14-Aug-07 23:27
moomoooomoo14-Aug-07 23:27 
QuestionWIFI connection Pin
moomoooomoo14-Aug-07 23:16
moomoooomoo14-Aug-07 23:16 
QuestionHow to get Stylus Pointer (x,y) position on the Tree View Control. Pin
arunstar13-Aug-07 21:54
arunstar13-Aug-07 21:54 
AnswerRe: How to get Stylus Pointer (x,y) position on the Tree View Control. Pin
AgentBignose8-Oct-09 4:17
AgentBignose8-Oct-09 4:17 
QuestionCalling a Webbrowser control again. Pin
arunstar13-Aug-07 19:22
arunstar13-Aug-07 19:22 
QuestionThreading.Monitor.Exit(x) throws ArgumentException... any ideas why? Pin
jchesney13-Aug-07 9:29
jchesney13-Aug-07 9:29 
QuestionDataGrid Pin
Sunshine Always13-Aug-07 1:04
Sunshine Always13-Aug-07 1:04 
QuestionWhere are some .Net compact framework classes?? Pin
PremierITA12-Aug-07 1:15
PremierITA12-Aug-07 1:15 
QuestionAbout C# ListView ItemClick or DoubleClick or Click Pin
WOAIXYEYANLI11-Aug-07 18:25
WOAIXYEYANLI11-Aug-07 18:25 
Questiongprs connection Pin
ahzarmokhli8-Aug-07 20:01
ahzarmokhli8-Aug-07 20:01 

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.