Posts by Rubem Deiana • 7 points
4 posts
-
-2
votes2
answers462
viewsQ: Code128 source rendering error
I have developed a report in Genexus X Ev1 that needs to print the barcode using the Code128 font. It is compiled in .NET. In the development environment (Windows 2012) everything works perfectly.…
-
1
votes1
answer481
viewsA: Filling and importing data with VBA in excel, help in code?
The Excerpt seems incorrect: Set Busca = Cells.Find(What:=valor, After:=ActiveCell, LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False,…
-
0
votes1
answer544
viewsA: How to optimize a select within an update?
I work a lot with query optimization for MS Sql Server. In general I solve a lot with the use of temporary tables limiting my data universe. It seems that you are working with financial movement and…
-
0
votes4
answers1225
viewsA: How do I write a store that uses current and previous line values?
Using cursors in this case is a procedural way of thinking about working with SQL which can make your process slow depending on how this cursor is written. The best is to remember set theory and…