eGreetings,
Using the "Emulator" for testing - I can not get WebView control to load a page - it returns a "Page Not Found" page. Acts like is not hooked up to the iNet - system is hooked up using DSL.
Here is the code - what in the world is wrong?
********************************************************
'Activity module
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
End Sub
Sub Globals
'These global variabes will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Dim Button1 As Button
Dim WebView1 As WebView
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("mikestest") 'Load the layout file.
Button1.Text = "Contact to Lakota Speakster - FREE"
End Sub
Sub Button1_Down
Msgbox("Connecting to the mobi site...","Lakota Speakster")
WebView1.LoadUrl ("http://www.lakotaspeakster.com")
End Sub
********************************************************
Using the "Emulator" for testing - I can not get WebView control to load a page - it returns a "Page Not Found" page. Acts like is not hooked up to the iNet - system is hooked up using DSL.
Here is the code - what in the world is wrong?
********************************************************
'Activity module
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
End Sub
Sub Globals
'These global variabes will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Dim Button1 As Button
Dim WebView1 As WebView
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("mikestest") 'Load the layout file.
Button1.Text = "Contact to Lakota Speakster - FREE"
End Sub
Sub Button1_Down
Msgbox("Connecting to the mobi site...","Lakota Speakster")
WebView1.LoadUrl ("http://www.lakotaspeakster.com")
End Sub
********************************************************