Posts by Rabelos • 161 points
15 posts
-
1
votes1
answer236
viewsQ: Invisible radiobutton with spinner
I would like to know how to make the event change of a spinner it leaves visible or invisible a radiobutton. I have the following code. But it’s not working. <RadioGroup…
-
1
votes1
answer495
viewsQ: How to change the focus of tabs on a Tabhost?
I have the following code. private void TabsCadastro(int visualizar,int origem) { TabSpec abaCLiente,abaEndereco,abaContrato; TabHost tabHost = getTabHost(); abaCLiente = tabHost.newTabSpec("tag1");…
-
1
votes1
answer145
viewsQ: Expandablelistview Com Formulario
I would like to know how I can use an Expandablelistview with a form instead of just text. By expanding Expandablelistview instead of coming varies lines with only texts I can put several different…
-
1
votes2
answers1972
viewsQ: Sending Link Information to a Modal
I am developing using Bootstrap and ASP.NET MVC. I am using a Table where on each line I have the Edit and Delete buttons. I am using the following code: <div class="container"> @foreach (var…
-
5
votes1
answer5990
viewsQ: Error updating entries in Entity Framework
I have the following code for mapping my application, but when I will try to make a insert gives the following error. An error occurred while updating the Entries. See the Inner Exception for…
entity-frameworkasked Rabelos 161 -
0
votes1
answer857
viewsQ: Error sending data to View
Query to bring users. public IEnumerable PopulaTabelaUsuario() { var banco = new DbBancoContext(); var listaUsuarios = (from l in banco.USUARIOS_PROCESSO select new{ l.ID_USUARIO, l.NOME_USUARIO…
-
0
votes1
answer931
viewsQ: Views Typed in ASP.NET MVC, using Viewbag
I wonder if all View on Mvc has to be typed? I want to take values from a form but those values are not from the same entity. I am using a helper: @Html.TexBoxFor(model => model.Nome) I would…
asp.net-mvcasked Rabelos 161 -
0
votes1
answer233
viewsQ: Select in Entity Framework is not working
I am performing a consultation using LINQ, very simple query I am using the following method. public void verificaAcesso( string usuario, string senha) { using (DbBancoContext banco = new…
-
0
votes1
answer159
viewsQ: Using Existing Database with Entity Framework
I am in need of a help to know if there is a way to use an existing database with Entity Framework without having to use the Visual Studio import, and without using the Database First because I…
entity-frameworkasked Rabelos 161 -
2
votes1
answer167
viewsQ: Spinner in Popup
I have a screen where it has a Gridview and a ImageButton. Well, by clicking on that ImageButton open a PopUp containing two spinner and a ImageButton. Those spinners are populated through a web…
-
1
votes1
answer3345
viewsQ: OK button of the Android Keyboard event
Good afternoon guys again asking for help. I wonder how to pick up the event from the OK button on the keyboard. Example if I have a login and want to click ok it has the same effect as the login…
-
0
votes1
answer945
viewsQ: Android Gridview Layout
How to place lines between cells in a gridview. So that it doesn’t look like the items are floating. Example as columns and rows of an excel and if it is possible to change the color of some cell in…
-
0
votes1
answer66
viewsQ: Android with Swipe on a Gridview
Good morning to everyone I need help to make a gridview accept the onFling event (sliding horizontally left right) without using a pageView or be it done as a "button" because I saw that the event…
-
1
votes1
answer671
viewsQ: Android Fixed Paging
I have a gridView I’m populating through a WebService. The problem begins when I want to trigger an event let’s say clico by sliding the screen left or right I know there is a pageview, but I don’t…
-
0
votes1
answer464
viewsQ: Android Gridview
People who really need your help. I have the following situation a gridview that contains 3 columns and n rows in each cell of this grid display three information all three being a simple…