Posts by Craveiro • 236 points
7 posts
-
3
votes3
answers68
viewsA: Unity5 engine error in code
You’re barely trying to define the animating function. First because you haven’t closed the previous one (Turning) and then because you have to open a block after the parameters. It looks like this:…
-
0
votes2
answers142
viewsA: Saving report on disk in PDF
It calls the dialog because it needs you to choose the form (software) to convert to PDF. To do it directly you have to access a library that writes to PDF and usually you have to pay for a. You can…
-
1
votes1
answer102
viewsA: Calculate miscellaneous percentages
It is not possible. If you add up the values of all products you no longer know that part of the total profits corresponds to the gains of 5% or 8%. At most you can add all the sales of the users of…
mathematicsanswered Craveiro 236 -
0
votes1
answer1259
viewsA: Uncaught Soapfault Exception: [Versionmismatch]
This error is related to the version of the SOAP protocol used. In your script the $options property should be soap_version and not soapversion. If it still doesn’t work you can try SOAP_1_1 instead…
-
2
votes3
answers241
viewsA: Best way to keep data that depends on a condition
If you go to the second alternative the publication table will not scale (that is if you have too many records the performance to get specific information will be bad). In addition to that you have…
-
3
votes2
answers78
viewsA: Eclipse Future for Android Development
Yes, you can still use it. It basically means there will be no more updates to the Android Development Tools (ADT) plugin after the end of the year. You won’t be able to take advantage of new…
-
3
votes2
answers745
viewsA: Compare javascript dates!
Since you want to make a comparison between dates it is not very interesting to put your Date in this format but the other way around. To compare you need to have both dates as Date Objects. The…
javascriptanswered Craveiro 236