Posts by Luiz • 567 points
23 posts
-
-2
votes1
answer51
viewsA: Intermittent CSS icons when reloading page
I solved it here. I changed two things. The first was that one of the css files was not explicit about the type of charset to be used and then . net assigns a default charset from windows. I made it…
-
-2
votes1
answer51
viewsQ: Intermittent CSS icons when reloading page
I am having problems loading icons, but it is rare and difficult to reproduce the problem, as it occurs from time to time in the update with F5. Only occurs in bootstrap css icons or any css font…
-
0
votes3
answers934
viewsA: I can’t post with Webapi
I have been through this type of problem and to solve I made two changes, but one of them is not the case. The POST method declaration snippet as it is when you make a request the system cannot…
-
0
votes1
answer77
viewsA: Invalid n Index for this Oracleparametercollection with Count=n
I managed to solve here, I will share in case someone goes through this problem. I had researched before and similar problems said that the cause of the error was because of mapping some duplicate…
-
-1
votes1
answer77
viewsQ: Invalid n Index for this Oracleparametercollection with Count=n
I’m racking my brain trying to figure out why I was wrong. Mapping of my table: <class name="AtaReuniao" table="EPN.ATA_REUNIAO" lazy="true" where=" ARUN_IN_EXCLUIDO = 'N' "> <id name="Id"…
-
1
votes0
answers46
viewsQ: Javascript in file running intermittently
I am using javascript to perform ajax requests every time an item is selected in a combo. For this the Select tag executes the Onchange event. However, I am having problems calling the js function…
-
1
votes0
answers252
viewsQ: How to make multiple mask Replaces per table field with T-SQL
I am performing some texts (Mask) Replaces from a field of a temporary table. I am substituting where there is the text searched for a field of other tables. Example: SELECT TOP 1000 * INTO…
-
0
votes1
answer201
viewsA: Error generating report: <Column> and <Column> have conflicting properties: incompatible Datatype property
Use Missingschemaaction.Ignore as parameter in the Dataset Merge. This parameter specifies the action to be taken when adding data to the Dataset and the Datatable or Datacolumn is missing. The…
-
0
votes1
answer201
viewsQ: Error generating report: <Column> and <Column> have conflicting properties: incompatible Datatype property
When trying to fill a datatable dynamically the error occurs when performing a merge of the other data. For Each drw In dtbTemp.Rows dtb = obj.Enquadra(drw.Item("IDCON_TMP"), drw.Item("IDCAR_TMP"))…
-
0
votes2
answers429
viewsA: How to change a list of another Managedbean
I managed to solve this problem, after trying to use @ManagedProperty(value = "#{patrulBean}") that caused me the mistakes in the comments. I used the tag f:event with the guy preRenderView and made…
-
2
votes2
answers429
viewsQ: How to change a list of another Managedbean
I have developed a search area on my system where the user can add an item to their list of items. Like a shopping cart. The search area uses a different Managedbean than the user panel that has a…
-
0
votes0
answers231
viewsQ: graphicImage does not render: ? pfdrid_c=true
I’m trying to display an image with , but it’s not showing in any browser. On my page I make the call of the mode image: <p:graphicImage value="/upload/#{desap.foto}" height="140" width="140"…
-
0
votes0
answers32
viewsQ: Can I use common HTML fields and buttons with JSF?
I’m doing a project with JSF and I’m also using common HTML fields and buttons in some forms. Excerpt from my (X)HTML <div class="clearfix"> <input class="small DDD" type="tel"…
-
2
votes2
answers486
viewsQ: How to set an image at the bottom of the page?
I’m trying to run my project with a background image as follows: The image is in the way: webapp/Resources/libimagens/bg.png The CSS file is in the way: webapp/Resources/libcss/style.css Inside the…
-
1
votes1
answer1762
viewsA: How to take the value bound to a selectOneRadio and assign it to an attribute in a bean
Assuming that you already have your Managerbean to control the registration system, I will assume that the name of your Bean is Personal Registrationbean, in it you must have a get method as…
-
1
votes0
answers692
viewsQ: How do I get the content of all emails from a user in the Gmail API?
I’m making an application that should receive Gmail user emails using the Gmail API. However, I must receive the data of each email as: content, sender, subject and date received, but I can not do.…
-
5
votes3
answers238
viewsQ: How to stop three loopings for in C
Rstou trying to implement the AI ordered search algorithm and I have reached a point where I need to stop all loopings if I have found the NODE searched. Look what I did, but it doesn’t work. I know…
-
2
votes2
answers7009
viewsA: How to delete data from a VBA Access table
First I created a query deleting the REPETIRTEL table with the Delete query, then I called this query and that’s it, it was like this: Private Sub Form_Close() Application.DoCmd.SetWarnings False…
-
2
votes2
answers7009
viewsQ: How to delete data from a VBA Access table
I need a command on vba to delete records from my table REPETIRTEL the moment I close my form. This form does not have this table as data source, so I need the command to call this table and then…
-
5
votes2
answers4586
viewsQ: How to create an AVD for Android in Delphi
I’m starting at Delphi® XE5 and would like to know how to configure/create an AVD to emulate Android applications. Only gives me the option to choose the device, but I have nothing in Target Android…
-
22
votes1
answer28962
viewsQ: How to use debug in Eclipse?
I’m having a very annoying problem with a java.lang.Nullpointerexception error and I wonder if with debug it shows which element is null, rather than just which line is the error.
-
0
votes1
answer1314
viewsQ: java.lang.Nullpointerexception on chat system
I am doing a chat project Helpdesk with JSF 2.0 and Primefaces, but an error is generated when I try to connect the Attendant or user in chat. In atendente.xhtml and index.xhtml has a form that…
-
3
votes2
answers756
views