QVModuleInfo()
  


  QVModuleInfo(<*QVModuleInfoQ pQ>)

pQ: optional (typed) queue to receive module information


QVModuleInfo exposes the module information features used inside QView. If a queue is NOT passed, then QVEdit is called with an internally generated instance of the typed queue - this is a quick way to see details on your exe and all dlls loaded.

Or, pass a queue and do your own thing with the information. Code sample follows:-


  program

  ! note that qview12.inc/.clw WERE UPDATED for version 1.2.0.147

  include('qview12.inc'),once

  map
  end

myQ     queue(QVModuleInfoQ),pre(mq)
        end

  code

  ! 1. just ask QView to show us the information

  QVModuleInfo


  ! 2. get the information from QView and do something with it

  QVModuleInfo(myQ)

  ! shows use of filters with QVEdit
  QVEdit(myQ,,,'instring(''A'',upper(modulename),1,1) > 0')