Search found 24 matches: breakpoint

Return to advanced search

Re: necesito que FWDBG..

Gustavo, Sí se puede :-) 1. Tienes que establecer un breakpoint al final de la app, si quieres que se detenga al final. No lo pongas en el return, sino en la línea de ejecución previa 2. Tienes que comentar dos llamadas que se hacen a ::oDlg:Hide() ...
by Antonio Linares
Sat Feb 12, 2022 7:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: necesito que FWDBG..
Replies: 2
Views: 249

Re: Resize dialog

Hello Mauri, Thank you. I would suggest to implement responsive design similar to Bootstrap. Maybe we can start with a function to get the breakpoints. // Extra small devices (portrait phones, less than 576px) // No media query for `xs` since this is the default in Bootstrap I think for desktop ...
by Otto
Thu Oct 22, 2020 7:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resize dialog
Replies: 16
Views: 1693

Re: Otro momento historico en Harbour...

... 3. Doble click en el fichero Harbour_app.sln 4. Busca hb_vmInit() desde el "solution explorer" y pon un "breakpoint" ahi 5. Dale a "run" y disfruta viendo a Harbour funcionando internamente :-)
by Antonio Linares
Mon Jun 01, 2020 6:25 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Otro momento historico en Harbour...
Replies: 6
Views: 1188

Re: Another historic moment in Harbour ...

... 3. Double click on the Harbour_app.sln file 4. Search for hb_vmInit() from the solution explorer and set a breakpoint there 5. Click on run and see Harbour working internally :-)
by Antonio Linares
Mon Jun 01, 2020 6:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another historic moment in Harbour ...
Replies: 2
Views: 595

NirSoft utilities for programmers

... addresses for the specified DLL files. You can easily copy the memory address of the desired function, paste it into your debugger, and set a breakpoint for this memory address. When this function is called, the debugger will stop in the beginning of this function. HeapMemView HeapMemView ...
by Baxajaun
Tue Jul 03, 2018 10:36 am
 
Forum: Utilities / Utilidades
Topic: NirSoft utilities for programmers
Replies: 1
Views: 1115

Nirsoft DLL Export Viewer

... addresses for the specified DLL files. You can easily copy the memory address of the desired function, paste it into your debugger, and set a breakpoint for this memory address. When this function is called, the debugger will stop in the beginning of this function. For example: If you want ...
by Baxajaun
Tue Jul 03, 2018 10:06 am
 
Forum: Utilities / Utilidades
Topic: Nirsoft DLL Export Viewer
Replies: 1
Views: 614

Re: FWH 16.03 32 BIT

Hakan,

Yes. Look for a C function defined in #pragma BEGINDUMP ... ENDDUMP section, and place the breakpoint there

Thats a way to do it
by Antonio Linares
Wed May 11, 2016 5:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.03 32 BIT
Replies: 118
Views: 25430

Re: FWH 16.03 32 BIT

Antonio,

In order to set breakpoint a line, Should I start IDE compiler?
by Horizon
Wed May 11, 2016 12:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.03 32 BIT
Replies: 118
Views: 25430

Re: FWH 16.03 32 BIT

Set a breakpoint there at the beginning and check the calls stack when you reach the breakpoint

Also find the exact place where it GPFs

The Visual Studio debugger is a great tool to solve these problems
by Antonio Linares
Wed May 11, 2016 11:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.03 32 BIT
Replies: 118
Views: 25430

Re: FWH 16.03 32 BIT

Hakan,

Please select In the IDE menu, Debug, Windows, Call stack

and see what you get there

We need to know where the GPF comes from.

Another choice is to set a breakpoint at a certain point near the app end and then execute step by step
by Antonio Linares
Wed May 11, 2016 10:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.03 32 BIT
Replies: 118
Views: 25430

Re: Problem with FiveWin debugger 16.03

Gustavo,

1. You have to set a breakpoint

2. Press F6 to run until the breakpoint

Here it is working fine
by Antonio Linares
Wed May 11, 2016 6:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with FiveWin debugger 16.03
Replies: 7
Views: 839

Problem with FiveWin debugger 16.03

Guys:

When debugging a program, I press F5 to run the program but instead it ask me if I want to exit from the debugger. How can I make the program run until a breakpoint ?

Thank you very much !
by HunterEC
Sat May 07, 2016 9:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with FiveWin debugger 16.03
Replies: 7
Views: 839

Re: Ha comenzado el proyecto de lenguaje Harbour para VS2013!!!

Cristobal hay que bajar e instalar SDK 2013 http://msdn.microsoft.com/en-us/vstudio/ff718165 Una vez que abras el proyecto, quita todos los "breakpoint" de C:\MyCLanguageService\MyCLanguageService\Integration\LineScanner.cs Finalmente reconstruye el proyecto y correlo. Saludos. Viktor, ...
by cnavarro
Mon Sep 22, 2014 9:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ha comenzado el proyecto de lenguaje Harbour para VS2013!!!
Replies: 15
Views: 4200

Re: Ha comenzado el proyecto de lenguaje Harbour para VS2013!!!

Cristobal hay que bajar e instalar SDK 2013 http://msdn.microsoft.com/en-us/vstudio/ff718165

Una vez que abras el proyecto, quita todos los "breakpoint" de C:\MyCLanguageService\MyCLanguageService\Integration\LineScanner.cs
Finalmente reconstruye el proyecto y correlo.

Saludos.
by Vikthor.Thomas
Mon Sep 22, 2014 7:51 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ha comenzado el proyecto de lenguaje Harbour para VS2013!!!
Replies: 15
Views: 4200

Re: Settings breakpoint to C code from Visual Studio IDE

Its really amazing to be able to inspect the Harbour virtual machine activity (low level calls stack) :-)

Image
by Antonio Linares
Sat Jun 07, 2014 2:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Settings breakpoint to C code from Visual Studio IDE
Replies: 1
Views: 374
Next

Return to advanced search