... and saves the bitmap as a JPEG file using BmpBufToJpg. 2. FindWnd(cTitle) Finds a window handle (hWnd) by matching its title (cTitle). Uses a loop to traverse through all child windows on the desktop. 3. BmpTrim(hBmp) Trims black areas from the sides of a bitmap. Calculates non-black pixel ...
... HTML window. Automatic handling: Thanks to the Merry-Go-Round approach, the entire workflow remains automated and efficient. It’s essentially a loop from desktop to web and back – with no manual intervention required. Advantages of the FW2WEB Merry-Go-Round No firewall changes: The web server ...
... adds a row even if the percentage is less than 50, look at the seventh row the percentage is 47 I tried to do a further check but in the FOR/NEXT loop it doesn't enter into an IF IF (nPercentualeUtile < nUtilePercent) cancel the line else aadd(...) endif I also tried to put a debug message ...
... to me to obtain the record number passing the key value? Only reading cdx files? I ask this because from my tests the DO WHILE !EOF() SKIP ENDDO loop is very very slow if the table is opened by others Sorry but I'm not happy with this matter have a nice day! Marco
Otto wrote:Enrico, since there is no display, you can’t see anything. It might work, but I just stopped it after a certain amount of time because it cannot be a solution.
Yes, that's exactly what you had to see: the slowness of the SKIP loop.
... works. I think your mistake is that although you open the index file, you don't select a TAG and you also don't consider the index in the do-while loop. With my low-level function (PHP4DBF), I only need 0.65 seconds. Best regards, Otto https://mybergland.com/fwforum/lowmarco.jpg https://mybergland.com/fwforum/marcohb.jpg ...
Dear Mr.Antonio, I could build the EXE and the service is started. Where I should insert the Business Logic in the Loop? Can you please give me a small example. I tried like this to test // Aquí va el bucle principal del servicio while (ServiceStatus.dwCurrentState == SERVICE_RUNNING) ...
Hi Marco not only how many tags but its formula for that single tag e.g.: dtos( gio_drg) + str(gio_num,9) + str(gio_riga,3) I often made too complex indexes which often slowed down the browse, I would like to know if the slowness you see is on loop type : ' do while .. enddo ' or on a browse Bye
... of in-memory indexes in Harbour. Where can I find the source code? Can you tell me that? Generating an index: I first read all records in a loop and write all matches into $matchRecords[] = [ 'index' => $i, 'fieldValue' => $fieldValue, // Add fieldValue here 'recno' => $i + 1 // ...
... para saber si el archivo/fichero existe, si no existe devuelve FALSE o TRUE si ya existe. El problema es que cuando devuelve FALSE se queda en un LOOP, regresa al GET y vuelve a ir a la validación, regresa al GET y vuelve a ir a la validación. Tengo que matar la aplicación con el administrador ...
Hi, I need to perform some actions in an infinite loop, taking into account the pressed key at each iteration. I wrote: do while .T. if inkey(0)=32 ......... else exit endif sysrefresh()enddo ...