1 Attachment(s)
Forms stuck to application...
I need some help on a special problem I've got.
I created a software which let's poeple log calls in a database. Each Log window is opened as a new form object in the main application's form. Now here is the problem I have:
It happens that I log more than one call at once and my main application's form is to search for clients in our database. Now if I need to work in another application, as it happens many times, when I choose my Log in the task bar to finish it and close it, absolutely all visible windows of my application appear on top of all the windows.
How can I show a form without bringing all the visible windows of my application in foreground.
My fast solution is organising my logs in a single window under tabs but this solution was rejected by all users. And before anyone asks, NO, my forms are not shown modally! All forms are modaless.
NOTE: the form chosen in the task bar stays on top of all the others as asked by the user, the problem is that behind it all visible forms of the application are visible which is not what I asked for.
Here is an example in image of what I want.
Re: Forms stuck to application...
Just off the top of my head, have you considered minimizing all the forms other than the active one?
Re: Forms stuck to application...
That solution works but minimizing 7 windows just to prevent that from happening is not a good solution. And with the quantity of calls we have, this is not a user friendly way to do this.
I will not minimize all other application windows on the form's focus too, this is not going to happen and is not the solution for this. I cannot do this as a solution.
Re: Forms stuck to application...
If users don't want TABS, suggest separate MONITORS for each!
Re: Forms stuck to application...
I asked a question because I need an answer. Please don't make fun of this. I think that this can be achieved but I don't know how. I'm asking help to get my app do what I want it to do not an alternate way.
Thank you,
Re: Forms stuck to application...
Well, a VB.Net or ASP.Net program might have other options, but VB6 doesn't
Re: Forms stuck to application...
OK, just also having a guess, but I would say why not try either of these APIs :
BringWindowToTop - http://www.google.co.uk/url?sa=t&sou...Wew_pwjTfjC2gw
SetWindowPos - http://www.google.co.uk/url?sa=t&sou...LCGaPJPkjUij_w
I really hope it helps you