gmgallo
gmgallo
Hello again, I did the changes that you suggested as follows to test both versions: ``` auto wsec = duration(wkseconds); auto wmsec = duration(wkmilli); gps_time gt1{ round(wks + wsec)}; gps_time...
OK the logic behind the duration is clear now. I made the comment about duration assuming seconds because I get, not identical but very close results for the sample data...
I think that you were focusing on "how to print...". Actually I'm reporting two problems that I ran into: 1. applying duration to an int for values other than seconds...
Ops! ` The un-overflowed value of wks + I_ms is 1,344,472,882,966ms, which overflows the 32 bit int. If you use duration instead, you'll avoid this overflow and get the desired...
beatiful! thank you again!
I also found this Kernel exception in a Template Studio app for WinUI with side menu. On an empty page add a TextBox Pack and run with F5. Then type...
Here is the stack trace: ``` Microsoft.UI.Xaml.Controls.dll!__CxxThrowException@8() Unknown Microsoft.UI.Xaml.Controls.dll!winrt::throw_hresult(struct winrt::hresult) Unknown Microsoft.UI.Xaml.Controls.dll!winrt::impl::consume_Windows_Foundation_IUriRuntimeClass::AbsoluteUri(void) Unknown Microsoft.UI.Xaml.Controls.dll!winrt::impl::call_factory_cast(class &&) Unknown > Microsoft.UI.Xaml.Controls.dll!CommandBarFlyoutCommandBar::UpdateVisualState(bool) Unknown Microsoft.UI.Xaml.Controls.dll!CommandBarFlyoutCommandBar::UpdateUI(bool) Unknown Microsoft.UI.Xaml.Controls.dll!winrt::impl::delegate::Invoke() Unknown Microsoft.ui.xaml.dll!5ac27cce() Unknown [Frames below may be incorrect...
In my case the relation to a page and menu functionality was merely coincidental. I tried to issolate the problem starting a fresh application and retracing my steps but never...
Did you added it manually or used the Template Studio generator? In one of my attempts I copied the `Package.appxmanifest` file from another project to spare the time to regenerate...
I'm developing for an IoT device. The application has a low level interface DLL writthen in C++/CLR I can debug with and without packaging on the developing machine just fine....