Posts by Tanure • 89 points
8 posts
-
0
votes1
answer181
viewsA: Authentication / Permissions with MEAN Stack
Lucas, MEAN uses Mongo, Node and Angular. In addition, you can authenticate in many ways. With Angular you can apply an Interceptor and after validating the information on your server through a get…
-
1
votes1
answer977
viewsA: Doubt on how to print datagridview in reportviewer
Hello. To use Table in Report is relatively simple. You can create a Typed Dataset and add it to your Report. Display "Report Data" panel - View -> Report Data Right-click on "Datasets" and "Add…
-
1
votes1
answer296
views -
1
votes1
answer236
viewsA: How to apply the 3-layer concept with Gridview C#?
You have to call the Databind method from the grid: public void ViewGrid(GridView Grid) { Grid.Visible = true; DataTable Dt = new DataTable(); var SetTable = new bltboletoDAL(); Dt =…
-
0
votes1
answer233
viewsA: Asp.NET Asp Click Error:button
The error is characteristic of trying to access some position of the Array with a negative index. If the event does not arrive at the click, it is because before running the event Click, in the flow…
-
2
votes2
answers371
viewsA: First application: Xamarin
Go to the project properties then go to Android Options, click the Advanced tab and uncheck the x86 option.…
-
2
votes2
answers4443
viewsA: How to create a login screen using Xamarin?
Basically, there are two ways: Through a class you inherit from Contentpage Through a XAML file The best way will be the one you have most ease. Depending on how you want your page, you will have…
-
1
votes1
answer295
viewsA: Xamarin error: Could not create the Java Virtual Machine
To work with Xamarin.Android, you will need to install Java JDK. If you have already done it and it still didn’t work, try installing the SDK again and configure your environment. For more details…