View previous topic :: View next topic |
Author |
Message |
stfark1
Joined: 02 Sep 2008 Posts: 204
|
Posted: Mon Feb 07, 2022 12:34 am Post subject: Source Not Shown |
|
|
Running 64 bit Fortran fixed statement program, Win 10. Recently when executing the sdbg64 module my source program no longer displays, has recently but suddenly all that displays is the "breakpoint" output. When I "view program", goes to the program but does not display the source, must have "triggered" a switch or the turned off the display of the source program file, any suggestions? Sid Kraft |
|
Back to top |
|
 |
PaulLaidler Site Admin

Joined: 21 Feb 2005 Posts: 7767 Location: Salford, UK
|
Posted: Mon Feb 07, 2022 9:04 am Post subject: |
|
|
Have you compiled using /DEBUG or one of the checking options such as /CHECK or /CHECKMATE? For debugging you must use /DEBUG or an option that implies /DEBUG. |
|
Back to top |
|
 |
stfark1
Joined: 02 Sep 2008 Posts: 204
|
Posted: Mon Feb 07, 2022 3:35 pm Post subject: Source Not Shown |
|
|
Hi Paul: Re-compiled all routines(33) with Debug 64bit, re-built, executed, got the same thing when debugging. Was going to attach screenshot but not sure how to do with "reply" to this note, Sid Kraft
[/url][/list] |
|
Back to top |
|
 |
stfark1
Joined: 02 Sep 2008 Posts: 204
|
Posted: Mon Feb 07, 2022 3:45 pm Post subject: Source Not Shown |
|
|
Interesting, went to control panel to erase Silverfrost and start over, was not listed. Went to Program Files (x86), Silverfrost listed in directory, deleted the folder, went back to execute sdbg64 and debug screen came up with no source listing??? Going to download Silverfrost again, see what happens, strange! Sid Kraft |
|
Back to top |
|
 |
Robert

Joined: 29 Nov 2006 Posts: 437 Location: Manchester
|
Posted: Mon Feb 07, 2022 4:40 pm Post subject: |
|
|
If you can attached a screenshot that would be helpful. You can email it to ftn95@silverfrost.com if you can't post it here. |
|
Back to top |
|
 |
stfark1
Joined: 02 Sep 2008 Posts: 204
|
Posted: Wed Feb 09, 2022 2:18 am Post subject: Source Not Shown |
|
|
Robert: You said that I can access your user page and look at sdbg64.ini then I am confused on what to do? is sdbg64.ini in my folder file for Silverfrost, I do not see, not sure what you wanted me to do. Sid Kraft |
|
Back to top |
|
 |
Robert

Joined: 29 Nov 2006 Posts: 437 Location: Manchester
|
Posted: Thu Feb 10, 2022 9:30 am Post subject: |
|
|
I think the issue is a bad value in sdbg64.ini
This file is located in your %appdata% folder (which resolves to C:\Users\Robert\AppData\Roaming on my PC). Rename the file and try reopening sdbg64. Send me the renamed file so I can see what the issue was. |
|
Back to top |
|
 |
stfark1
Joined: 02 Sep 2008 Posts: 204
|
Posted: Fri Feb 11, 2022 1:10 pm Post subject: Source Not Shorn |
|
|
Note: searched for files on my computer, incluging in the Silverfrost folder in thr "C:" folder, no such file anywhere called "sdbg64.ini", cannot rename and try to execut to see if display present if I cannot find this file! Problem still exists! |
|
Back to top |
|
 |
mecej4
Joined: 31 Oct 2006 Posts: 1839
|
Posted: Fri Feb 11, 2022 2:27 pm Post subject: |
|
|
Sid, open a CMD window, and type the commands below (only the lines that start with "D:\>", with the "D:\>" removed). I happened to make D:\ the current directory, but that choice does not matter. You can use C:\ instead. You should see responses from the PC that resemble what I received. Please report those responses.
Code: | D:\>ver
Microsoft Windows [Version 10.0.22000.493]
D:\>echo %appdata%
C:\Users\Admin\AppData\Roaming
D:\>dir %appdata%\*.ini /a
Volume in drive C is Windows
Volume Serial Number is 6819-A703
Directory of C:\Users\Admin\AppData\Roaming
02/06/2022 07:03 PM 573 sdbg64.ini
1 File(s) 573 bytes
0 Dir(s) 722,618,552,320 bytes free
D:\> |
Once you find the file sdbg64.ini, the following command will display its contents:
Code: | type %appdata%\sdbg64.ini |
and the first few lines will resemble:
Code: | [Debugger-Win32]
LastCommandLine=hnlsp.exe
SourceWindow-X=7
SourceWindow-Y=1
SourceWindow-W=79 |
|
|
Back to top |
|
 |
|