Posts by Magno Souza • 95 points
9 posts
-
0
votes1
answer21
viewsA: I can’t run my application for Ios anymore
After so much searching I discovered that I was the first to have this problem. I managed to solve. added the solution a new project called Newios following the instructions for this site…
-
-1
votes1
answer21
viewsQ: I can’t run my application for Ios anymore
I used to be able to run my application smoothly, but now little had disappeared from the debug list the option to run on Io became only android and uwp. Now it’s back up, only I can’t spin anymore.…
-
2
votes2
answers186
viewsQ: How to recover a string from another page in Xamarin?
I’ve seen several examples of how to open a page by sending a string to it but I wanted an example of how to do the opposite, open a page and it returns a string when it is closed. My life is more…
-
0
votes1
answer56
viewsQ: How to Save Simple Application Locations Data?
I need to save simple settings information, only for when the plicative loads it recover some variables. Is there any way to do this without resorting to SQL?? Ex: in windows programs I usually save…
-
2
votes2
answers419
viewsA: Global variables Xamarin
Now how do I put this topic as solved? rsrs class ConfigSQL { private static Int32 _index = 0; public static Int32 index { get { return _index; } set { _index = value; } } }…
-
4
votes2
answers419
viewsQ: Global variables Xamarin
Is it possible for me to create modules to add global variables in Xamarin? how I could create variables that can be accessed from anywhere?
-
0
votes1
answer264
viewsQ: Problem connecting with MS SQL Server. Same C# code does not work in Xamarin
We are updating the... I was able to access the bank through Android the problem was the port that was not configured. Now there is another question when I do code Debug for android works but if I…
-
1
votes1
answer101
viewsQ: How to open new window only if it is not already open?
The correct question would be: how to Open only one instance of this window. the programme is a WPF and language is VB.NET Currently the following code does not suit me, because if the user clicks…
-
0
votes1
answer38
viewsQ: Is it possible to open a form with an ordinary user and another as an administrator in the same application?
I have a program that in certain parts needs to be run as an administrator, in others it needs to be run as an ordinary user. Example: configuracoes.Show() 'Esse será executado como usuário comum'…