Posts by acamiloMoz • 69 points
12 posts
-
-1
votes1
answer78
viewsQ: How to update a document line field in V9?
I was looking at examples of V10 codes and I found this, // Add new line to the invoice and set all the item related information. PriEngine.Engine.Vendas.Documentos.AdicionaLinha(invoice,…
c#asked acamiloMoz 69 -
-3
votes1
answer80
viewsQ: Update Cdus from coin table
I am developing an application to integrate with Spring ERP V9 and when for the currency table/object and I cannot update the Cdus by the following code. if (currencyId != 0) { currency.EmModoEdicao…
c#asked acamiloMoz 69 -
0
votes0
answers36
viewsQ: My array always runs out of content
I have a challenge when making ajax calls in Jquery. I declared an array and after an ajax call I do to send a POST request, I want to take the id of the new object and store it in my array.…
javascriptasked acamiloMoz 69 -
-1
votes1
answer188
viewsQ: Poor field formatting when exporting the Crystar report to PDF
I made a map using Crystal Reports and when exporting it to PDF the text of the description column is poorly formatted including more spaces, as can be seen in the following images. Before exporting…
crystal-reportsasked acamiloMoz 69 -
0
votes0
answers36
viewsQ: Error adding Stored Procedure to map in Crystal Reports
When adding an SP with data type parameters date, adding the following error information is displayed. Variables in the AS ALTER PROCEDURE [dbo].[spExtractoTSL] ,@DataInicial DATETIME = 0…
-
1
votes1
answer196
viewsQ: Get the result returned at Do F4
I created a VBA that shows a vendor list and can’t get the selected item after F4. Public Sub ListaFornecedores() Dim strSql As StdBEStringBuilder Set strSql = New StdBEStringBuilder strSql.Append…
vbaasked acamiloMoz 69 -
-1
votes1
answer195
viewsQ: Error using Dynamic in C#
I made an application in C# and to integrate with ERP Spring and passed the engine in VBA through the following line. void IPublicMethods.UpdateCDU_IfItemSelected(ref dynamic doc, string artigo, int…
c#asked acamiloMoz 69 -
0
votes1
answer119
viewsQ: First page header printing is different from the rest
I made a map Crystal Reports and when printing the report for paper in physics. The header of the first page is printed perfectly and from the second page the header height is increased. Can anyone…
crystal-reportsasked acamiloMoz 69 -
1
votes1
answer67
viewsA: The VFA map is printed without data
I already got solution to the challenge, when adding the table of Movements I had to indicate which types of connection to the fields (Document, Typodoc, Entity and Series) with the options Right…
crystal-reportsanswered acamiloMoz 69 -
0
votes1
answer67
viewsQ: The VFA map is printed without data
I made changes to the map used to print VFA by adding the table Movimentos to view the supplier’s CBL account in the headers. And when the registration of a VFA does not lead to a record in the…
crystal-reportsasked acamiloMoz 69 -
0
votes1
answer98
viewsQ: Add Pricontext to the Crystal map
I made a root map and would like to present the company name in the header. You can help me solve this challenge? Thank you
crystal-reportsasked acamiloMoz 69 -
0
votes0
answers62
viewsQ: How can I cast a list in VB
I’m starting to program in Visual Basic and I need to do cast of a list of objects. Below is an example of a class containing a list of products in one of its attributes. Public Class…