Posts by bupereira • 238 points
11 posts
-
1
votes1
answer30
viewsA: For Each with Where and Break By
What you need to know is that it would be impossible to have a LAST-OF or FIRST-OF without a pre-selection of the records. Hence record 4 appears with break by, because it was preselected even…
progress-4glanswered bupereira 238 -
0
votes1
answer585
viewsA: How do I use the date range in Progress 4gl
I saw what you did there in the commentary. But using functions that need the value of the table you are searching for automatically transforms for each into a full table scan, that is, it will not…
progress-4glanswered bupereira 238 -
0
votes1
answer610
viewsA: Fill FILL-IN with Browser data
Speak, Alef, I put this code in the value-changed event of the user: IF AVAILABLE tt-usuario THEN ASSIGN fi-nome = tt-usuario.nome fi-sobnome = tt-usuario.sobrenome fi-cpf = tt-usuario.cpf. DISPLAY…
-
0
votes3
answers512
viewsA: How to make a simple CRUD using Temp-table
Okay, we are completely escaping the scope of the site, but I improved the window for you, should work as you planned now. Any doubt speaks there. /* Connected Databases */ &Scoped-define…
-
0
votes3
answers512
viewsA: How to make a simple CRUD using Temp-table
Here is a screen similar to the one you already had, but with create and delete. I disabled the key (tt.a) in the modify, because it is default not to let change the primary key, besides, find what…
-
0
votes5
answers2278
viewsA: Is it safe to use $_GET in PHP? (Parameter in URL)
In my opinion, it depends on the kind of information you’re going to expose there. If it’s just a setup, or a code that doesn’t get you anywhere, I don’t see a problem. Probably this type of…
-
4
votes3
answers2101
viewsA: How to put transition in a dropdown of a menu?
I don’t know if it helps, but the JS source for showMenu function is this one: ypSlideOutMenu.showMenu = function(id) { var reg = ypSlideOutMenu.Registry var obj = ypSlideOutMenu.Registry[id] if…
-
0
votes3
answers1909
viewsA: Try/catch does not show correct message
Because you did not assign a value to it. There is the internal error (which has no specificity pq is standard). Try setting an Exception and the empty catch and pass the value of the message that…
-
3
votes1
answer138
viewsA: SQL method for login
Have you tried myrs.getString(1)? It should work. Ah, what if columnCount is String, the expression columnCount == 12345 and the != will fail. This post seems to use this solution, maybe it will be…
-
0
votes4
answers362
viewsA: C# e.Hasmorepage is in Eternal Loop
My "kick" is that with each iteration of the block you are increasing the lstAdesivo.items.Count, would it be possible? I didn’t see the definition of it in the code and risk that if you are in an…
-
1
votes1
answer208
viewsQ: How do I get back check in that I did on the TFVC?
I need to go back in some check ins, I didn’t want to have to fetch the last valid code and check in over it, but delete these entries in the version control. It is possible to do?
team-foundation-serverasked bupereira 238