|
I have tried to follow the instructions from this link https:
private async void buttonInternetRadio_Click(object sender, RoutedEventArgs e)
{
var uri = new Uri("testapp://");
var options = new Windows.System.LauncherOptions();
options.TreatAsUntrusted = true;
var success = await Windows.System.Launcher.LaunchUriAsync(uri, options);
}
In Declarations part of Package.appxmanifest I have the following properties,
Logo: testapp.png
Display Name: Test App
Name: testapp
Can someone help me with this issue?
|
|
|
|
|
What does your OnActivated event handler look like? You need to handle the incoming request there.
This space for rent
|
|
|
|
|
How do I configure my own uwp app to be opened with uri-scheme?
|
|
|
|
|
If you are asking how to create a custom URI scheme for your application, you can find full details here[^].
This space for rent
|
|
|
|
|
How do I read for example only the second line from text file located on the Windows Phone SD card or internal storage like an UWP app coded in Visual C#?
|
|
|
|
|
You read from the start, until you encounter the end of the second line.
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
|
|
|
|
|
Hi I am very new to Windows 8 app development & I am following up Surender Singh's code project "Windows 8 App - Data storage in files using Windows.Storage namespace"
Can anyone help me how to,
1. store the text file in different folder like C:\test
2. I cannot save more than 10 characters.
3. how to avoid over right "I need to save new entry on next line".
Thank you
Sanjeewa
modified 17-May-16 18:45pm.
|
|
|
|
|
There is a forum at the bottom of the article. Posting your question there will alert the author, who is better placed to respond to specific questions about it.
Software rusts. Simon Stephenson, ca 1994. So does this signature. me, 2012
|
|
|
|
|
Hello
I am starting on a UWP app that requires a bluetooth connection. I'm using VS2015 with update2. I have looked at RFCOMM and tried to implement it however I get this error : "cannot find type System.Net.EndPoint in module System.dll" Can someone help me in solving this. What is the best bluetooth API to use?
Thanks,
Ron
|
|
|
|
|
System.Net.EndPoint should be available in the framework libraries as described in EndPoint Class (System.Net)[^]. How are you referring to it?
|
|
|
|
|
here is the code I'm working with, Trying to find paired devices
using System;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.Devices.Bluetooth.Rfcomm;
using Windows.Devices.Enumeration;
namespace GI_MobileApp.Pages
{
public sealed partial class BTDevicesPage : Page
{
private DeviceInformationCollection ServiceDeviceCollection = null;
public static readonly Guid RfcommChatServiceUuid = Guid.Parse("00001101-0000-1000-8000-00805f9b34fb");
public BTDevicesPage()
{
this.InitializeComponent();
InitialPara();
}
private void tbtnConnect_Changed(object sender, RoutedEventArgs e)
{
on_off();
}
private void on_off()
{
switch (this.tbtnConnect.IsChecked)
{
case null:
this.tbtnConnect.Content = "Connect";
break;
case true:
this.tbtnConnect.Content = "Disconnect";
break;
case false:
this.tbtnConnect.Content = "Connect";
scan();
break;
}
}
private async void scan()
{
ServiceDeviceCollection = await DeviceInformation.FindAllAsync(RfcommDeviceService.GetDeviceSelector(RfcommServiceId.SerialPort));
if (ServiceDeviceCollection.Count > 0)
{
tbRxData.Text = "";
foreach (var btDeviceice in ServiceDeviceCollection)
{
tbRxData.Text = (btDeviceice.Name);
}
tbRxData.Visibility = Visibility;
}
else
{
}
}
private void InitialPara()
{
this.tbtnConnect.IsChecked = null;
this.on_off();
}
}
}
|
|
|
|
|
|
When I run the code above I get this error : cannot find type System.Net.EndPoint in module System.dll. I need help solving this error?
Thanks
|
|
|
|
|
For UWP apps, I believe you're going to have to use the Bluetooth GATT[^] classes. System.Net.EndPoint isn't present in UWP.
This space for rent
|
|
|
|
|
I've searched on-line but have not found a definitive answer.
Would Win10 IoT be appropriate for an industrial embedded application which needs deterministic response within:
1ms?
0.1ms?
etc.??
This is, of course, would drive the selection of processor for the application.
Thanks!
"Fairy tales do not tell children the dragons exist. Children already know that dragons exist. Fairy tales tell children the dragons can be killed."
- G.K. Chesterton
|
|
|
|
|
I don't think so. Windows itself is not an RTOS, and I don't think the IoT core version is either.
The only RTOS I know of is Linux.
What do you get when you cross a joke with a rhetorical question?
The metaphorical solid rear-end expulsions have impacted the metaphorical motorized bladed rotating air movement mechanism.
Do questions with multiple question marks annoy you???
|
|
|
|
|
Good day friends! This is the worst that has ever happened to me so I really need help. I just woke up and found my system messing up. I can no longer install any software in my system. I ran the setup.exe as admin nothing comes up, no error message, no respond and ran setup.exe by double clicking same thing. After doing alot of online search and couldn't found any solution, I made up my mind and did system format but so suprise that the problem persist. Here is what the event viewer shows
Faulting application name: setup.exe_unknown, version: 0.0.0.0, time stamp: 0x45b15156
Faulting module name: unknown, version: 0.0.0.0, time stamp: 0x00000000
Exception code: 0xc0000005 Operating system is win 7 ultimate
Help please,,,
modified 1-Dec-15 2:47am.
|
|
|
|
|
That looks like a corrupted file.
|
|
|
|
|
Even after a complete system format! Any solution please.
|
|
|
|
|
Solution to what? We have no information about what softare is failing, where it is failing or what may have happened in the past. And since you have reformatted your system you have destroyed all the history that may have been in the event logs.
|
|
|
|
|
The eventlof I posted was generated after the formatting. All softwares failed when trying to install.
|
|
|
|
|
Then either the source you're trying to install from is corrupt, the source you re-installed your OS from is corrupt, or your HDD is failing.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Thanks alot! Finally found the solution. It was a corrupted software.
|
|
|
|
|
I think your file is corrupted... the os is windows 10 ?
|
|
|
|
|
Windows 10 is the corruption...
|
|
|
|