Project

General

Profile

Statistics
| Revision:

vdfsplat / FAQ.txt

History | View | Annotate | Download (2.91 KB)

1 44 wil
Q: I selected an executable via the green icon and it runs, but the debugger shows me nothing? It is not even loading a source file.
2
A: That's correct. You need to pause the executable (use pause icon in VdfSplat) in order to have VdfSplat stop and load the code. While paused you can load any source file using the file open icon in the toolbar and add a breakpoint.
3
4 23 wil
Q: I see you are using an editor component in there but I cannot edit the text, can you make it so I can edit?
5 26 wil
A: No, the debugger is not meant to be an editor, personally I use either The Hammer (my preferred editor) or the DataFlex Studio for that. VdfSplat is a tool for troubleshooting and learning, not for editing.
6
Adding editing capabilities to the debugger means that it would take away resources on improving the debugging features.
7 23 wil
8 29 wil
Q: Can this debugger cause instability or unreliability in the functioning of the application that I am trying to debug?
9
A: I'm afraid that it is always a possibility. So far I have not seen that type of issue myself, but as the techniques used to help you are querying the running application for properties and data it can trigger unintended side effects.
10
Always beware that the debugger is only meant as a tool to help, not as something to be used in production.
11
12 23 wil
Q: Why are you using GPL version 2 and not a more liberal license for the source?
13 26 wil
A: Initial reason is that I am not sharing this code so that it can be made into a 3rd party product and sold to the community. First off I don't believe there is much of a market for it and second I do not believe everyone benefits from that model in this particular case. If you want to improve the tool, then that's great, please share your improvement back.
14
If you do not want to donate the code back, but still want to share the code then fork it, that's fine.
15 23 wil
16
Q: Doesn't the GPL license prevent DAW from taking your code and use it?
17 26 wil
A: Yes, that is correct. That doesn't mean that I'm not willing to share. In fact I'd be happy to share, but it would be great if they could just ask. More likely though is that if a particular feature is liked by the community that they will reimplement in a slightly different way. It might be the easiest way for them in order to be able to support it.
18 23 wil
19 26 wil
Q: Could you implement feature XYZ for me? I really need it.
20 23 wil
A: You can always ask. I do however have my own agenda on what to implement and when, especially as the tools is made available for free. If you are in need you can always sponsor a specific feature and contact me directly (see http://www.antwise.com for contact details)
21
22
Q: I have implemented feature FOO can you include it?
23
A: That sounds great! Yes I would love to add more features, please send me the code changes.
24 26 wil
Please be a bit patient for adding as I will not just copy&paste. The code will need to be reviewed and possibly adjusted in order to keep the project in one coding style and to keep the GUI consistent and easy to use.