ad: CQMM-1

WSJT-X v2.0.0 by K1JT released - not compatible to earlier versions!

Discussion in 'Amateur Radio News' started by DH2ID, Dec 11, 2018.

ad: L-HROutlet
ad: l-rl
ad: Left-2
ad: Radclub22-2
ad: abrind-2
ad: L-MFJ
ad: Left-3
  1. WJ4U

    WJ4U Subscriber QRZ Page

  2. K3SZ

    K3SZ Ham Member QRZ Page

    You can. Had to use a bit of trickery since the window handle is not what it appears to be. Therefore I just used a partial string so my VB program can launch WSJT-X, send a single 'Enter' keystroke to the program to close the pop-up, and then unload itself. Of course, all of this is for naught as I'm sure the next release won't have the pop-up window.

    'Dismiss the WSJT-X pop-up window automatically
    Private Declare Sub Sleep Lib "kernel32.dll" (ByVal dwMilliseconds As Long)

    Private Sub Form_Load()
    Dim x As Object
    Set x = CreateObject("Wscript.shell")
    x.run "wsjtx.exe"
    AppActivateByStringPart "WSJT-X" 'This calls a small separate module. If I knew hWnd, I could do this directly w/o the separate module.
    Sleep 1000
    SendKeys "{Enter}", True
    KillThisProgram
    End Sub

    Public Sub KillThisProgram()
    Unload Form1
    End Sub
     
    Last edited: Jan 14, 2019
    MM0HVU likes this.
  3. KD2KIQ

    KD2KIQ Ham Member QRZ Page

    You should really reconsider. Rapid adoption of new standards is something we can all benefit from. Remaining on a previous version of this software due to compatibility concerns seems counterproductive in this case. -73
     
  4. VE3TLT

    VE3TLT Ham Member QRZ Page

    Great, now throw out another working PC for a new one. That's why the landfill is getting bigger !!@#
     
  5. VE3TLT

    VE3TLT Ham Member QRZ Page

    Yeah ?
     

Share This Page

ad: CQMM-1