Klunk-1: I’ll share a little tip with you. the first thing to do when you want to find out how to do something or how a function is should be used i…
Thanks. Looking at this now… …trying to wrap my head around his class EvalColProgressCallback and class ProgCallback. Do I need those Callback clas…
@Klunk-1 – I’m just trying to dive deeper and learn… there is another plugin (which I did not write, but have the source code to, and they called a cu…
Ok… so that seemed to make it crash faster– no dallying around. I finally got the debugger working… although it’s all greek to me. 😮 It told m…
Edit: Thanks Klunk… I will experiment with your last example. Also, I’ve added the following to the progressbar’s dialog procedure and will give it …
Thank you very much for the examples… for now I think I will leave it as I have it globally defined: static ROFFexportOptions g_ExportOptions; …and …
I’ll try it in the ROFFexport constructor/destructor. But I thought it had to be declared as static to use in the static dialog callbacks? Edit: Wha…
Perhaps I need to add a WM_DESTROY case to ProgressDlgProc ??? case WM_DESTROY: // Perform cleanup tasks??? PostQuitMessage(0); bre…
I just wanted to post an update here in case anyone ever attempted to recycle this code snippet… wrapping up my exporter (just need to implement that …
OK, so that fixed it. How embarrassing… @Klunk-1 and @denisT – Thank you both. So here is the final code for my exporter’s CollectNotes method: …
:argh: well I will fix that in a jiffy… I overlooked doing that inside the CollectNotes method.
The CollectNotes method gets passed in a private class member variable which is declared as: private: . . . NoteKeyTab m_noteList; std::vector<Poi…
Do you see anything wrong with how I’m trying to catalog the notes by frame?