I want to modify the system time in windows phone if it doesn't matches my server time,
so for that i want to prompt the user to change their date time by redirecting them to date time settings screen.
this is the code which i have used for android
new Intent(Android.Provider.Settings.ActionDateSettings);
suggest me a way to do the same in Windows phone.
I don't think you'll be able to access the date and time from the settings panel thought you could access the settings page from the application.
ConnectionSettingsTask connectionSettingsTask = new ConnectionSettingsTask();
connectionSettingsTask.ConnectionSettingsType = ConnectionSettingsType.WiFi;
connectionSettingsTask.Show();
Have a look at these: How to link to a specific system-setting in your Windows Phone app?
http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj662937(v=vs.105).aspx
http://msdn.microsoft.com/en-us/library/windowsphone/develop/hh394011(v=vs.105).aspx
Hope it helps!
Related
I want to get combine attendance of 2 bio matric machine using odoo10
I think if Bio matric machine are synchronized each other may be sorted out my problem
Hope you are using zkem dll file. You have to read all the users from one device (using ReadAllUserID to buffer the data into device's memory and then GetAllUserInfo) then call SetUserInfo for every user id with another device.
You have to have a button on the odoo application like 'Sync', clicking this button, you can trigger the above logic.
If you are like to do it over http please check http://camsunit.com/application/biometric-web-api.html for api details.
I am trying to query into my spreadsheet a web relay device (ControlByWeb X310)X310 basically a IoT device. It has a built-in web servver and when I manually browse its URL for the first time it pops up with a web server login page (not a browser HTML window):
I've recorded a macro of adding this log data via an Excel insert "from Web" data connection. It basically uses recorded the following VBA:
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;http://111.111.111.111:8080/log.txt", Destination:=Range("$A$1"))....
Within the last item end With statement ".Refresh BackgroundQuery:=False" takes a while to do it's thing but returns nothing. If I've previously manually logged into the web page via my edge browser and authenticated access, then this command returns exactly what I need. I have thousands of these devices sitting on the internet that I need to collect data from so a script that will loop through each would be very practical.
Is there a command or syntax for the QueryTables object that can pass a user id and password to the login pop-up? Something like:
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;http://111.111.111.111:8080/log.txt", ID:="name", PWD:="password"
... does not work.
I've searched high and low and found a lot of info on login by scraping HTML but the pop-up I get is being service up by the web server authentication. Any help would be appreciated.
I have a 2010 Microsoft Access database in the format FixList.accdb
There is one table and one form in it, that i want a small number of users to access at the same time.
I have split the database, so that the back end is in a different folder to the front end.
Finally, i have gone to options and selected the following:
- Default Open Mode =Shared
- Default Record Locking = No locks
- Open Databases by using record-level locking (NOT ticked)
It opens fine when 1 user opens the database, but when a second user double clicks the Access file to open, the following message appears. "You do not have exclusive access to the database at this time. If you proceed to make changes, you may not be able to save them later". My question is, what other change(s) can i make to this database so that the error message above does not appear when more than one person opens the file?
Do NOT have more than one concurrent user open the same copy of the front-end (e.g., by having all users open the copy from a folder on the server). Each user must have their own local copy of the front-end .accdb/.accde file.
I'm searching google for something to test push notifications to Windows Phone 8.1, either an outline of what's required to make one or a pre-built test application.
Most of the results I'm finding relate to Windows Phone 8 and Windows Phone Silverlight 8.1.
As this is only for test, the unauthenticated service would more than suffice.
These appear to be the answer:
http://code.msdn.microsoft.com/windowsapps/Action-Center-Quickstart-b15089f2
http://code.msdn.microsoft.com/windowsapps/push-and-periodic-de225603
To add to this, you can test sending the Notifications to the phone using the emulator,
e.g. (http://i.imgur.com/uykCO1W.png <-- higher res image)
Something that helped me was putting:
await PushNotificationChannelManager.CreatePushNotificationChannelForApplicationAsync();
just before:
BackgroundTaskBuilder builder = new BackgroundTaskBuilder();
builder.Name = backgroundTaskName;
builder.TaskEntryPoint = typeof(WindowsRuntimeComponent1.MyTask).FullName;
builder.SetTrigger(new PushNotificationTrigger());
builder.Register();
Now, open the 'tools' dialog from your emulator and select the 'Notifications' tab. Check the 'simulator' box.
IMPORTANT: Uninstall the app from the emulator then re-run it from visual studio. Once the app runs you should see your AppId and URI(if you don't then click the 'Refresh' button) in the 'Tools' dialog. You should now be able to set what type of notification you want and the payload text. I hope this helps.
If you have account details mange push noficaion via web
I am doing a Project on LAN of an internet cafe. I have a scenario in which 9 nodes and a server is attached with a switch. I have a "reboot and restore" application hosted on a server. So when a client node reboots the particular application on server auto runs and restore the settings on client node.
I want to know which application server will be used for particular store and reboot application with auto start settings?
Look, as for as Auto Star feature is concerned, You can add (to my experience) any application to the startup calls of Windows (assuming you are a windows user)....and the procedure is not that tough,
go to start -> program -> start up ( The idea is to open this folder for you required user)
paste a shortcut of your application executable in to it..
when next time, windows will login, it will load all the applications present in this folder ( and others coming from different Registery Entries ) and thus your application will become Autostart..
and the other thing, I saw a few cafes / offices using an application named "freeze". what this application does is, it creates a snap of user settings, and each time when system is logged in, this application loads and restore that snap shop of user settings...thus, you are able to have predefined settings always applied to such scenarios as yours..
Hopes this helps..