|
Thanks a lot for advice , so i have to learn Java ?
|
|
|
|
|
M.a.x.a.m wrote: so i have to learn Java ? If you want to write Android apps, you should do so.
|
|
|
|
|
M.a.x.a.m wrote: i have to learn Java ?
or you can do an app in HTML5/javascript.
there is also the C# option using Xamarin[^].
|
|
|
|
|
Thanks , will i have permession to the system ? i'm web programmist , if i had permission to system ,it would be very good !
|
|
|
|
|
M.a.x.a.m wrote: will i have permession to the system What system are you asking about?
|
|
|
|
|
For example , it may be contact information and etc ...,can i do ?
|
|
|
|
|
|
I am not exactly to what detail you mean when you say.
M.a.x.a.m wrote: will i have permession to the system ?
there are multiple articles out there for developing HTML5/javascript apps that run on both Android and iOS devices. You might want to also check out Ionic[^].
|
|
|
|
|
I am developing phonegap ios app which should have calendar that insert, delete and modify even from my app to native calendar
so, I used EddyVerbruggen Calendar-PhoneGap-Plugin. The link is
https://github.com/EddyVerbruggen/Calendar-PhoneGap-Plugin
The sample I worked is
Quote: var title = 'test title';
var loc = 'chennai';
var notes = 'test Notes';
var eventstartdate = "2015,1,15,0,0,0,0,0";
var eventenddate = "2015,1,16,0,0,0,0,0";
var fulleventstartdate = new Date(feventstartdate);
var fulleventenddate = new Date(feventenddate);
//---To Create calendar--------------------------------------
function createCalendar() {
var createCalOptions = window.plugins.calendar.getCreateCalendarOptions();
createCalOptions.calendarName = "Mycal";
createCalOptions.calendarColor = "#ffec8b";
window.plugins.calendar.createCalendar(createCalOptions, onSuccess, onError);
}
//---To Create event--------------------------------------
function createevent() {
window.plugins.calendar.createEventInNamedCalendar(title, location, notes, fulleventstartdate, fulleventenddate, calendarName, onSuccess, onError);
}
//---To delete event--------------------------------------
function deleteevent() {
window.plugins.calendar.deleteEventFromNamedCalendar(title, loc, notes, fulleventstartdate, fulleventenddate, calendarName, onSuccess, onError);
}
//---To modify event--------------------------------------
function updates() {
var newTitle = "New title";
window.plugins.calendar.modifyEventInNamedCalendar(title, loc, notes, fulleventstartdate, fulleventenddate, newTitle, loc, notes, fulleventstartdate, fulleventenddate, calendarName, onSuccess, onError);
}
window.onerror = function (msg, file, line) {
alert(msg + '; ' + file + '; ' + line);
};
function onSuccess(msg) { alert('Calendar success: ' + JSON.stringify(msg)); }
in the above code creating calendar and inserting calendar works well
but, Delete event and Modify event (update) not working in ios
what else i have to do to fix it
kindly reply ASSP
Note: I build my app through phonegap build for ipa file
|
|
|
|
|
You should go back to github and contact Eddy Verbruggen.
|
|
|
|
|
Does anybody know if it is still possible to publish apps for the Windows Phone 7?

modified 19-Feb-15 0:11am.
|
|
|
|
|
Well I just started up Visual Studio For Windows (on Win 8.1)--- terrible name but that is what you use to build Phone Apps. I looked all over teh build settings and the only thing I ccould find was an uneditable text that said, "Targeting Windows Phone 8.1"
So, not much help there. Maybe if you get the older version of studio you can. If you can get the older version of studio.
Good luck.
|
|
|
|
|
Yes! you can still publish the app.
Pavan Pareta
|
|
|
|
|
Yes - most of my games were made in XNA (not MonoGame) and target WP7.1 (Windows Phone 7.5), which allows also them to also run on WP8 & WP8.1. May not be able to build them with the latest versions of Visual Studio though - use VS2010/VS2012 for XNA/Silverlight WP7.x apps.
|
|
|
|
|
Thank you. I got it published to the market place. If you want to check it out, its called "WhichWay". And if you rate it, that would be most appreciated too. 
|
|
|
|
|
I need android Game source code To understand about android Game concepts any body help me
|
|
|
|
|
Of which game?
Skipper: We'll fix it.
Alex: Fix it? How you gonna fix this?
Skipper: Grit, spit and a whole lotta duct tape.
|
|
|
|
|
You can google for samples online. There are many.
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
I'm going to go surf the support boards, but maybe someone here has an idea. If you go look at the documentation for setsockopt under Windows CE 5.0, you will read this:
The following list shows BSD options that are not supported for setsockopt .
SO_ACCEPTCONN
SO_RCVLOWAT
SO_RCVTIMEO
SO_SNDLOWAT
SO_SNDTIMEO
SO_TYPE
Today I did some poking around as our next project will be on Windows Compact Embedded 7. I'm reading for Windows Compact 2013, the same options are not supported. If anything, Microsoft is consistent. <-- for the humor impaired.
Anyone out there know as to why Microsoft would not / never support the full BSD socket implementation? I can work around it (it's coyote ugly), but I'm just curious.
Charlie Gilley
<italic>Stuck in a dysfunctional matrix from which I must escape...
“Let me give you a tip on a clue to men's characters: the man who damns money has obtained it dishonorably; the man who respects it has earned it.”
|
|
|
|
|
Why did the chicken cross the road-question?
Better ask Microsoft.
In Word you can only store 2 bytes. That is why I use Writer.
|
|
|
|
|
Hi all!
I'm sorry for my english, this is not my language.
I'm developping an application on a Motorola MC75A. The language used is C# (Compact .Net 3.5) and the EMDK 2.7 (SDK of motorola).
I can take a picture and store it on the device. But I want to take a video and store it but I do not find anything to do it.
Can you help me?
Thank you.
|
|
|
|
|
I'm trying to make a small app to fetch some numbers from my smarthome webpage.
When trying the query in a browser like Chrome (uri: http://smarthome.trab.dk/wpf/getData.php?g=power) everything works.
In the app, it just stalls - no exceptions or errors but no data either.
The module is like this:
Public uriString As String = "http://smarthome.trab.dk"
Public Async Function getData(ByVal gType As String) As Tasks.Task(Of String)
Try
Dim Resp As String = Nothing
Using httpClient As New HttpClient
httpClient.BaseAddress = New Uri(uriString)
httpClient.Timeout = TimeSpan.FromSeconds(10)
Dim response As HttpResponseMessage = Await httpClient.GetAsync("/wpf/getData.php?g=" + gType.ToLower)
Resp = Await response.Content.ReadAsStringAsync
End Using
Return Resp
Catch webEx As HttpRequestException
MessageBox.Show(webEx.Message)
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
End Function
Public Function ACount() As String
Dim resp As String = getData("power").Result
Return "Actual: " + resp
End Function
Can anyone see what the problem is?
Regards,
Morten Trab
|
|
|
|
|
I don't use VB. But you are expecting a numeric value and are returning a string (I think).
David
|
|
|
|