Application in the Task Bar

Does any one explain why the application is not shown in the task bar if the form is shown modally. Is there a better way of handling the code without showing the form modally Smile




Answer this question

Application in the Task Bar

  • K.S

    Thanks Shasur, I've escalated your question to our support team.  It might be delayed with our Thanksgiving holiday weekend, but I will post their response as soon as possible.

    If anyone else here can answer this question more quickly, please jump in!

    -brenda (ISV Buddy Team)



  • juffowup

    Here is the VB 6.0 code
    ...
           Screen.MousePointer = vbNormal
           frmSelection.Show 1
           If clicked_OK = False Then
            frmSelection.Hide
            Unload frmSelection
             .
             .
             .

    The boolean variable clicked_OK is set in the form  frmSelection. If the form is not shown modally then the statement
           'If clicked_OK = False Then'
    gets executed without opening the form frmSelection.

    I need the form to be opened and the code statement        'If clicked_OK = False Then' to get executed after the user closes the form

    Have i explained Brenda (to some extent atleast)

    Thanks
    Shasur



  • Isha

    Hi Shasur,
    The engineer is having some trouble figuring out exactly what you need help on.

    Please note that VB 6.0 is actually out of our support boundary (only Extended support).
     
    What is your main concern Do you want the modal form to be shown on the taskbar What does "If clicked_OK = False Then' to get executed after the user closes the form" mean
     
    Can you send us the easy project to reproduce the problem


    any clarifications and sample code would be helpful.
    thanks!
    -brenda (ISV Buddy Team)


  • Daniel Booth ACITP

    Hi Shasur,

    What program/versions are you using Can you provide more details or repro steps on this issue

    thanks,
    -brenda (ISV Buddy Team)

  • Application in the Task Bar