Posts by Emerson • 650 points
17 posts
-
2
votes1
answer1356
viewsA: Place a combobox in a datagridview column
I followed some tips from a colleague of Stackoverflow in English @Johng and managed to do what I wanted. How to put a combobox on datagridview programmatically iterating a Collection. Below follows…
-
1
votes1
answer1356
viewsQ: Place a combobox in a datagridview column
Using C#, with Entityframework and codefirst, I have the following classes in my models layer: public class Cliente { public int ClienteId { get; set; } public string Nome { get; set; } public…
-
1
votes1
answer941
viewsQ: Android - Imagebutton image is not displayed
I’m trying to put 3 Imagebutton on a Linearlayout. The background image I’m using are drawable images that I added by clicking on the following sequence in Android Studio (2.2.2): Right-click on the…
-
4
votes1
answer84
viewsQ: JPA does not reflect the changed data in the BD manually
I have a Javafx application with Hibernate (JPA). In this application I update a Tableview with the data I search from BD (Mysql). Every time I click for the system to search in the BD some data, it…
-
5
votes1
answer1426
viewsQ: C# App.config - Change BD address at installation time
I have a C# desktop application that when installed on a pc, must access a Mysql BD that is on another machine. The BD server address is configured in the file App.config . At the client’s request,…
-
4
votes2
answers169
viewsQ: How to capture the Exception generated by a method whose access is not authorized by a particular user profile
How can I send the user a message that the operation he wants to do is not authorized? I have in my View a button that calls a Javascript function <button id="btninicio"…
-
5
votes1
answer575
viewsA: Backup in Mysql Workbench
Go to the menu Server, Data Export. In Object Selection, select the bank you want to do Bkp. Below, under Options, select the option you want to save: Export to Dump or Export to Self-Conteined…
mysql-workbenchanswered Emerson 650 -
1
votes0
answers330
viewsQ: Display jquery datatables search element in a specific div
How do I display, inside a div specifies the jquery datatables search box? My HTML table looks like this: <div class="row-fluid"> <div class="span4 pull-left"> <h4>Gerenciamento de…
-
2
votes1
answer803
viewsQ: Click event. Display message in current form and open new form
I need to make the event click a button located on a form, open another modal form. While the other form is loaded, I need to display a message to the user in a Statuslabel of a Statusstrip. (an msg…
-
1
votes1
answer2863
viewsQ: Function $(Document). ready() only executes once
I have an Asp.Net application that has a menu on a main screen that has 2 links, each to a page. When I click on the first link and upload the first page, the function $(document).ready() wheel set…
-
0
votes4
answers3610
viewsA: Receive an array in the controller from javascript
I was having a similar problem and found the following link: https://stackoverflow.com/questions/21288462/c-sharp-mvc-4-passing-javascript-array-in-view-to-controller See if that helps you: There is…
-
3
votes1
answer5211
viewsQ: SQL Group query with more than one distinct attribute
I have an application that generates approximately 25000 records per day in BD. This will generate a large amount of id’s per day in the user’s BD. According to the user’s business rule, only failed…
-
2
votes3
answers1128
viewsA: Entity Framework - Update nested lists
With the tips that colleagues Gypsy Morrison Mendez and Rogério Amaral (ramaral) passed me, I came to a solution that met what I was needing. My model in the comic book really needed to look that…
-
5
votes3
answers1128
viewsQ: Entity Framework - Update nested lists
I have the following schema in my Mysql BD: Models have a list of standard_images and each standard_images has a list of standard_regions. I must use Entity Framework 5.0.0. I have a model with 3…
-
9
votes1
answer17765
viewsQ: Fill Data Grid View with object property
I have a form where I need to fill out a DataGridView with data from a user list. To generate this data, I used 3 classes: User class namespace TesteDataGridView { public class Usuario { public int…
-
2
votes1
answer1551
viewsQ: Move image inside a picturebox with the mouse without using the scrollbar
Please, does anyone know how I can move an image inside a pictureBox without having to click on scrollbar? What I want is to move the image, just by clicking the mouse on it so as to drag it inside…
-
4
votes1
answer1875
viewsQ: Convert encoding CP850 to UTF8
I have a BD Paradox that returns me the following string after a query in a table of the sector that a certain worker is: Manutenþòo Elútrica. Actually it should be Electrical Maintenance. I need to…