Content
How do determine which path format is invalid?
When I attempt to publish my Maui App and click "Publish" I get the cannot create an IOS archive because the process cannot be executed on XMA server - the "Unzip" task failed unexpectedly the given path's format is not…
How to implement both a user registration and log in in a blazor webassembly asp.net core 8 using Azure AA B2C
I have followed this guidance: Secure an ASP.NET Core Blazor WebAssembly standalone app with Azure Active Directory…
How to deploy MAUI app with ClickOnce method.
I'm trying to build and publish very simple hello world Maui application and deploy it with click Once method : https://learn.microsoft.com/en-us/visualstudio/deployment/clickonce-deployment-dotnet?view=vs-2022 I'm suing this command to build and…
Empty response in webapp
Hello, we have a .NET 7 webapp which often (more than 70% of cases) returns a blank page. In particular, the response content length is always 2470 bytes. Due to this content truncation, the response contains only a part of the HTML head and no body, and…
android:exported needs to be explicitly specified for element
I'm using an AndroidAltBeaconLibrary library When compiling, it modifies my mainfest.xml and puts some settings there: <receiver android:enabled="true" android:exported="false" /> When I try to copy I get the error: Error…
Switch Maui doesn't display the right OnColor and ThumbColor in .NET8
Hi team, I use <Switch IsToggled="True" OnColor="Green" ThumbColor="Red"> in .NET8 in VS 2022 v17.8.2 On Android, it always displays like image below even i change OnColor and ThumbColor I didn't check it on…
Does anyone have a code example of how to use the ActivityIndicator
I have several things in an app that happen on a control click. I have now spent most of today trying to find out how this works. The worst "docs" is Microsoft Learn as it's "example" has no relevance to actual things that happen.
Is System.IO.Ports currently only support on Windows(using MAUI build)
Hello, I'm trying to develop some application with serial communication function on mac and Windows using MS's .Net MAUI for cross platform development. The same code works windows like open/close a port, send data read data, everything works perfectly.…
Running Database-Update for EntityFrameworkCore returns A task was cancelled
I am trying to follow the Connect to and query Azure SQL Database using .NET and Entity Framework Core tutorial. When I try to run Update-Database from the Package Manager Console I get the following error: A task was canceled. I have provisioned the…
MAUI Firebase iOS not building
I am trying to implement and compile with Visual Studio 2022 in Windows 11 with push notifications in my MAUI application for both Android and iOS. I receive the following error when building: "Unable to copy file…
show total and grand total without postback
Hello This Is my sql data SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[Table_1]( [ID] [int] IDENTITY(1,1) NOT NULL, [Field1] [varchar](50) NULL, [Field2] [varchar](50) NULL, [Field3] [varchar](50)…
What do I describe code of UWP dll without imporoting solution by C++?
Hello! I use VS 2022. I'm leadrning UWP dll. I am describing test code of it. I have a problem. That code cannot refer UWP class,for example Text Box,out of solution of VS project. How to solve solve this problem?
How to Open Local PDF file in WebView in .NET MAUI
Hi I have created sample .NET MAUI app for display local pdf file. I have kept my kayprotect_training.pdf file in the Resources/Raw/folder and set build action of kayprotect_training.pdf is MauiAsset. after that I create a pdfjs folder in the…
multi filter not working without postback
Hello This is my aspx page <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <html> <head runat="server"> <script…
.NET MAUI: I want to fetch data from remote server even when the app is closed.
I have a mobile application which needs to download some data periodically from remote server. This should happen even when the application(android/ iOS) is not running in foreground or in background. Basically, I want the data to be downloaded from…
Templated control problems
I created a custom control public partial class TileControl : TemplatedView { public static readonly BindableProperty FooterTextProperty = BindableProperty.Create( nameof(HeaderText), typeof(string), typeof(TileControl), default(string)); …
Flyout problems
Ok so this is kind of weird, I have a HomePage and a Registration page. They are registered in my appShell <ShellContent Title="loginPage" ContentTemplate="{DataTemplate view:LoginPage}" …
I encountered an issue when trying to create a .NET MAUI project as .NET 6 doesn't seem to be available.
I recently installed Visual Studio 2022 (version 17.8.2) and opted for the .NET 6 framework during installation. While attempting to create an ASP.NET Core project, I was able to select .NET 6 successfully. However, I encountered an issue when trying to…
Focus/Unfocus event not triggering for DatePicker / Entry in .NET MAUI
Hi, While working with DatePicker, Focus and Unfocus events not getting triggered. and we observed the same behaviour for the custom entry when the user enter the data into the entry box and clicked out of the box unfocused event not triggered.
Image Capturing from camera getting tilt to left 90 degree in MAUI
We have Implemented Photo capturing and choose photo from gallery and we also put one condition that if image size is greater that 512 KB then resize the image. And whenever the image size getting more that limit it is tilting to left by 90 degree. How I…