Old Problem, Still No Solution? (modal Form Losing Focus When Parent Form Is Minimize
Hi everyone,
I have a problem with modal forms that's very easy to reproduce, and practically locks up the application:
When closing Form1 I display a modal from (Form2), more or less to request the user if he's sure, etc. That works fine if Form1 is in normal window state and visible. If I minimize Form1 in the windows Taskbar before closing it using the system menu, Form2 appears, but is grayed and cannot receive mouse or keyboard input. Because Form2 is displayed and modal, I cannot do anything else with the application. As far as the user is concerned, it's dead and frozen.
Form2 does not receive a Deactivate or LostFocus event, where I could possible "repair" things.
Cheers, Marek
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
How To Change Properties Of The Parent Form From A Modal Child Form, Plz?
I want to open a child form windows (frmPortSetting) and from there changing some ActiveX components properties (comTx) which are on my parent form (frmMain).
I wrote code in frmPortSetting sub procedure but it seems that I can't change comTx properties directly there. (e.g. comTx.settings(9600,n,8,1)) Any advise please?
How To Change Properties Of The Parent Form From A Modal Child Form, Plz?
I want to open a child form windows (frmPortSetting) and from there changing some ActiveX components properties (comTx) which are on my parent form (frmMain).
I wrote code in frmPortSetting sub procedure but it seems that I can't change comTx properties directly there. (e.g. comTx.settings(9600,n,8,1)) Any advise please?
Get The Parent/Owner Form Of A Modal Form
Does any one know how to get the Parent or OwnerForm of a Modal Form?
I am using the Forms collection to unload all forms in application exit.
vb Code:
For Each frm In Forms If frm.name <> CurrentForm.name Then Unload frm Set frm = Nothing End If Next frm
But this hangs when the current form is a modal Form (the Login Form) showed uppon another form. The reason (as I guess) is that above code is trying to unload the Parent of the current form which wont unload until this current form is unloaded. If that is so,it'd create a dead lock situation.
And I call this code in QueryUnload. So is there any method to get the name of the modal Form's parent ?
Thanks In Advance
Minimize Modal Form
I have 2 forms: "Form1" and "Form2".
Form1 is my startup form. And I show the form2 as a modal form.
I want to minimize the form1 when I minimize the form2.
So, In the resize event of form2 I use this code:
Code:
Private Sub Form_Resize()
If Me.WindowState = 0 Then Form1.WindowState = 0
If Me.WindowState = 1 Then Form1.WindowState = 1
End Sub
It works well when I minimize the form, but I won't be able to restore it.
Please see my sample.
I need help.
Thanks.
Minimize Parent Form
Hi,
Simple question. Could anyone tell me how to minimize my parent form. I have a subform with an onclick event. When my form is clicked I want my Main form to be Minimized? Also When a Done button is done in another form I would like it to be restored? I have tried WindowState and Form_frm_main.minimize but eep getting errors?
Modal, But JUST For The Parent Form
I'm making a custom message box. I want to show it as a modal, but only for its parent. Right now I'm using the show command I.E.
Code:
Show vbModal, ParentForm
I want ONLY the parent form to lock up, because I want to be able to have the message box open and still be able to load a form in another window.
Any ideas on how to do this?
Form - Losing Focus Not Checking For?
I've created a datagrid form that when the user double-clicks on a row it pulls up another form that allows the user to edit the information. The main form allows you to pull up that datagrid. What I want to do is when the user goes back to the main form it closes the two other forms. The datagrid form is ORDEDIT and the edit screen is ORDADD. What do I need to do when the user loses focus on those forms?
I appreciate any help
Child Form Losing/getting Focus
Using VB6, I have a child form that is automatically refreshing its data every 5 minutes. This results in the child form regaining focus whether I am in a different form/child form of the application or in a totally different application.
I want the refresh to work only if the child form has the focus. I have tried using GetFocus, LostFocus, Activate, and Deactivate, but LostFocus and Deactivate would not fire at all, even when moving to other forms/child forms of the application, let alone to other applications. I also tried using the GetForegroundWindow function, but it returned the hWnd of the mdi and not the child form, so I can not use that to determine my action.
Does anyone know of a way to check which child form has the focus?
Thanks.
Strange: Modal Form & Minimize
Hello Gurus,
i have posted this problem some time ago but did not find a solution (I am sorry but i could not add new imput to my old post "Strange: Modal Form & Minimize").
Perhaps last time I missed to write down a hint to reproduce the behavier.
My programm:
A form "A" calls another form "B" after 5sec.
Form "B" has a button which hides the own form.
This great programs works very well ;-) until:
If I minimize form "A" before form "B" is called I could not press the button on form "B".
Important: only minimize form "A" do not switch to another programm!
After 5 sec you could switch back to the programm.
Could YOU press the button?
My Prog:
FORM "A"
Private Sub Timer1_Timer()
FormB.Show (1)
Timer1.Enabled = False
End Sub
FORM "B"
Private Sub Command1_Click()
Me.Hide
End Sub
Thank you for your help!
Setting Parent Of Modal Form?
I have already created my application and as each form is show, I show it as modal such as frmMain.show vbModal. Is there any way to show all of these forms within a main form now and be able to minimize it all from the main form in the background? Or when you show a form as modal, this cannot be done? I hate to change the way all of the forms are shown. How do you show a form in modal state in another one though than can be minimized?
Thanks
Form Flashes Gaining And Losing Focus
I wrote a program that places an icon in the system taskbar tray. Clicking on the icon loads a form: frmX.show modal this form has a textbox on it.
The problem is that the form quickly loses focus, regains it, loses it...this can happen once a second, causing the form to flash several times. When it stops flashing the form never has focus. This looks rather unprofessional. Any ideas on how to fix the problem? Strangely enough the program flashes 5 times when running on XP and only 1 or 2 times on Win98.
How To Detect Is A Form Is Losing App Level Focus
I want to have a form open all the time until such time as the shelled program it called terminates.
The shelled program runs in a console.
I have tried the following but is does not work for the hidden shelled window which is called prior to showing the form in my app.
VB Code:
Const SWP_NOSIZE = &H1Const SWP_NOMOVE = &H2Const SWP_NOACTIVATE = &H10Const SWP_SHOWWINDOW = &H40'Const SWP_NOZORDER = &H4'Const HWND_TOP = 0Const HWND_TOPMOST = -1 Private Declare Function SetForegroundWindow Lib "user32" (ByVal hwnd As Long) As LongPrivate Declare Sub SetWindowPos Lib "user32" (ByVal hwnd As Long, ByVal hWndInsertAfter As Long, ByVal X As Long, ByVal Y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) Sub ShowWindow() Dim l As Long 'KPD-Team 1998 'URL: [url]http://www.allapi.net/[/url] 'E-Mail: [email]KPDTeam@Allapi.net[/email] 'Set the window position to topmost Me.Show 'SetWindowPos Me.hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOACTIVATE Or SWP_SHOWWINDOW Or SWP_NOSIZE SetWindowPos Me.hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOACTIVATE Or SWP_SHOWWINDOW Or SWP_NOMOVE Or SWP_NOSIZE 'SetWindowPos hwnd, HWND_TOP, 0&, 0&, 0&, 0&, SWP_SHOWWINDOW Or SWP_NOZORDER Or SWP_NOACTIVATE l = SetForegroundWindow(hwnd)End Sub
Finding The Parent Form From A Modal Show
Hi,
Is there any way to find out the parent form from the child form, when you load a modal form.
IE...
When I show a form like this...
frmListsSearchItems.Show vbModal, frmListsMaintEdit
Is there any way for the frmListsSearchItems form to know that it was loaded from the frmListsMaintEdit form?
I know that I could keep track of it manually, just woundered if there was something like frmListsSearchItems.parent around??
Thanks,
Rob D.
ProIV Resource Centre www.proivrc.com
VBA Form Losing Focus(activewindow) When Minimizing Excel
I know my first problem is i'm using VBA. However, with limited resources, this is what I need to use.
What i have is a Excel spreadsheet being populated with a VBA form. When i load the form, i'm minimizing the spreadsheet. Due to minimizing the spreadsheet the form loses focus(opens up behind any other opened window) until i click on either the form or Excel's minimized application located in the windows taskbar.
Is there a way to regain focus on the form? In VBA you cannot "hide" the spreadsheet, i have to minimize it. Thanks in advance.
Joel
Systems Analyst
Modal Form Without Focus
How can I make a form modal but give the focus to the parent window.
Like the search window in VB.
mfG Flo
Disabling A Control When A Modal Form Is In Focus?
I made an Active X control that loads in IE and calls separate forms for entering information. The problem is that when the form is in focus, you can still click on anything on the control on the IE window and mess things up like open up a form that's already open.
Does anyone have any ideas? Thanks!
Runtime Error 401 Can't Show Non-modal Form When Modal Form Is Displayed
Hey guys !
I am going crazy due to this (Runtime Error 401 Can't show non-modal form when modal form is displayed)
This error doesn't occur while I test the software in the VB run mode... only when i run the exe !
Any ideas why this is happening ?
chao
Edited by - pingu2k on 2/20/2007 6:00:02 AM
Can't Show Non-modal Form When Modal Form Is Displayed??? Only When Burned On Cd
Hello guys, i have this problem:
When i burn my program on cd and try to run it i get this error: Can't show non-modal form when modal form is displayed
then if i click OK another error: unable to find d: extfile.txt even if the drive where the cd is e:
to open the txt file i use this code:
Open App.Path & "ookmarks.txt" For Input As #1
any suggestion???
thanks in advance
ah... when executed from hard disk everything works fine
Show &"Waiting&" Form (Non Modal) When Click On Button From Modal Form
Hi,
I have a modal form with a button. When I click on this button, it take a long time because it's doing a SQL query. During that time, I would like to show a form with a message on it to let the user know that it taking some time.
As the first form is modal (and it should be modal), I can't show the second form non modal (form2.show generate an error 401, because the first form is modal form.show 1).
If the second form is modal, it's doesn't show until the form load is fiinished. But I WANT that the form2 is shown in first and after proceed with some code in the form1.
How can I resolve my problem?
Thanks
Dominic Lavoie
City of Laval
Quebec, Canada
Can't Show Non-modal Form When Modal Form Is Displayed
Within a timer, I tried to display a modal form but there is not any non-modal form that is going to be displayed. But I got this error "Can't show non-modal form when modal form is displayed". Any guru here can explain to me what might cause this problem. Thanks for your inputs!
&"Can't Show Non-modal Form When Modal Form Is Displayed&" Error!
Ok, I'm coding a game in VB6, and I have a slight error with the hall of fame...
When the program is ran in VB6 (Not Compiled), this problem doesnt happen. When compiled, is when the error occurs.
Here is the story...
You can acess the hall of fame two ways. One being from the main menu, the other being from when you die in the main game.
When acsessed from the main menu...
http://www.freewebs.com/vagjd/prob1.JPG
It works fine. It sorts the sequential files from highest to lowest, it works perfectly.
http://www.freewebs.com/vagjd/prob2.JPG
When acsessed from the game, when you get game over...
http://www.freewebs.com/vagjd/prob3.JPG
It gives this strange error...
http://www.freewebs.com/vagjd/prob4.JPG
.
.
.
.
Also, I'd like to note that when games is equal to false (User is acsessing the hall of fame from the main menu) is when the hall of fame works.
Quote:
Dim nmes(6) As String, times(6) As Variant, ttemp As Variant, ntemp As String, uname As String
'***note***, the variable games is globaled in a module, and
'is used to determine weather the user acsessed the hall of fame from the
'user losing in the game, or the user selecting hall of fame from the main
'menu
Private Sub cmdone_Click()
HallofFame.Hide
Menu.Show
End Sub
Private Sub Form_Activate()
If games = True Then
soundcheck = 1
Intro2.Show
Intro2.Hide
uname = InputBox("Please enter your name", "High Score Listing")
If uname = "" Then
uname = "Unnamed"
End If
End If
'Easy Settings
If opts(1) = 0 Then
lbltitle.Caption = " Hall of Fame Easy"
If games = True Then
'adds the new time to the file
Open App.Path + "ehighscore.txt" For Append As #1
Write #1, uname, thetime
Close #1
End If
Open App.Path + "ehighscore.txt" For Input As #1
x = 1
For x = 1 To 6
nmes(x) = ""
times(x) = ""
Next x
If games = True Then
For x = 1 To 6
Input #1, nmes(x), times(x)
Next x
Else
For x = 1 To 5
Input #1, nmes(x), times(x)
Next x
End If
End If
'Normal settings
If opts(1) = 1 Then
lbltitle.Caption = " Hall of Fame Normal"
If games = True Then
Open App.Path + "
highscore.txt" For Append As #1
Write #1, uname, thetime
Close #1
End If
Open App.Path + "
highscore.txt" For Input As #1
x = 1
For x = 1 To 6
nmes(x) = ""
times(x) = ""
Next x
If games = True Then
For x = 1 To 6
Input #1, nmes(x), times(x)
Next x
Else
For x = 1 To 5
Input #1, nmes(x), times(x)
Next x
End If
End If
'Hard Settings
If opts(1) = 2 Then
lbltitle.Caption = " Hall of Fame Hard"
If games = True Then
Open App.Path + "hhighscore.txt" For Append As #1
Write #1, uname, thetime
Close #1
End If
Open App.Path + "hhighscore.txt" For Input As #1
x = 1
For x = 1 To 6
nmes(x) = ""
times(x) = ""
Next x
If games = True Then
For x = 1 To 6
Input #1, nmes(x), times(x)
Next x
Else
For x = 1 To 5
Input #1, nmes(x), times(x)
Next x
End If
End If
Close #1
'Sorting Process
'If loaded after playing the game
If games = True Then
For y = 1 To 5
For x = 1 To 5
If times(x) < times(x + 1) Then
ttemp = times(x)
times(x) = times(x + 1)
times(x + 1) = ttemp
ntemp = nmes(x)
nmes(x) = nmes(x + 1)
nmes(x + 1) = ntemp
End If
Next x
Next y
'if loaded from the menu
Else
For y = 1 To 4
For x = 1 To 4
If times(x) < times(x + 1) Then
ttemp = times(x)
times(x) = times(x + 1)
times(x + 1) = ttemp
ntemp = nmes(x)
nmes(x) = nmes(x + 1)
nmes(x + 1) = ntemp
End If
Next x
Next y
End If
For x = 0 To 4
lblname(x).Caption = nmes(x + 1)
lbltime(x).Caption = times(x + 1)
Next x
'Writes the new highscore list to the file.
If opts(1) = 0 Then
If games = True Then
Open App.Path + "ehighscore.txt" For Output As #1
For x = 1 To 5
Write #1, nmes(x), times(x)
Next x
Close #1
End If
games = False
ElseIf opts(1) = 1 Then
If games = True Then
Open App.Path + "
highscore.txt" For Output As #1
For x = 1 To 5
Write #1, nmes(x), times(x)
Next x
Close #1
End If
games = False
ElseIf opts(1) = 0 Then
If games = True Then
Open App.Path + "ehighscore.txt" For Output As #1
For x = 1 To 5
Write #1, nmes(x), times(x)
Next x
Close #1
End If
games = False
ElseIf opts(1) = 2 Then
If games = True Then
Open App.Path + "hhighscore.txt" For Output As #1
For x = 1 To 5
Write #1, nmes(x), times(x)
Next x
Close #1
End If
games = False
End If
End Sub
Private Sub Form_GotFocus()
cmddone.SetFocus
End Sub
Private Sub Form_Unload(Cancel As Integer)
Unload Menu
Unload Intro2
Unload Instre
End Sub
.
.
.
.
Thanks in advance
Normal Form And Dialog / Modal Form Sharing A Taskbar Item
My situation is I have a normal form (aka not a modal form), and a modal form that serves as an about window. When you show the modal form, all the items in the task bar lose focus. If you switch windows, and then go back to the 1 taskbar item for my program, again the taskbar item for my application loses focus and no taskbar item has focus.
I'm trying to make my application do the same thing as Word (for example). If you show the About window, the About window always has focus until you close it, but both the application window and the about form "share" the taskbar item, so when you click on Word in the taskbar, it doesn't lose focus.
Is this possible in Visual Basic 6?
Thanks in advance,
L. Whiteside
Block Form From Loading If Another Specific Modal Form Is Loaded [RE-SOLVED]
How can I block a Form from loading when another Form is loaded as Modal? The second Form is loading automaticaly if there is an error to report but if the Modal form is Loaded it's causing an error.
How can the program know that the first modal Form is Loaded before loading the second?
I've tried several approaches but non seem to work....
Thanks
_________________________________________________________________
Edited by - vbprog1144 on 8/7/2005 6:31:26 AM
Returning A Value Found In A Child Form To A Specific Text Box In The Parent Form?
I have two forms. A parent and a child. The parent has many labels which are selectable. Once one of the many lables is selected, a child form pops up to gather info. Once the info is gathered, i want to be able to put that info into the label in the parent form which called the child! How can this be done? The problem i cant get past is when the child returns, i have no way to know which label called the child in the first place to put the info in.
Thanks in advance
Converting A Modal Form To Non-Modal And Vice Versa
Hi 2 All,
I am facing a very peculiar problem. I have one application which shows one form as modal. Then that form is calling a method in an referenced component and that intern shows another form as modal. Unfortunately, two modal forms can be displayed one top of the other. How do handle this?
Expecting experts to drop few lines.
Nazim.
Displaying A Non Modal Form On Top Of A Modal Form?
Forgive me if this is a dumb question. My searches turned up little.
What I need to do is display a form asking the user to stand by. This happens when they bring up a modal form from the main app (so three total forms). The 3rd form asking the user to stand by needs to be non modal since the 2nd form needs to do some lengthy communication processing. Of course, VB wont allow a non modal form to display when a modal form is already displayed... I cant just bring up the 3rd form first because the second form will periodically refresh the communication processing (at which time the wait message needs to be displayed again).
Anyone have a way of doing this? What am I missing??
Form Minimize When Mouse Leaves Form (very Tricky One!)
I was given this code by plenderj. It hasn't worked for me.
All i want my program to do is:
A) Load the form, and put it in the top-right of the screen, and always be on top.
B) When the mouse moves off of the form, shrinks to Height = 10, width = 200
C) When the mouse is returned over the form, goes back to the H=3855, W=6335
Thanks for any help.
P.S: Matt, your code just froze my computer.... what did i do wrong!!
Open A Child Form At The Same Record As Its Parent Form
I am trying to open a child form from a parent form, say the parent form is on record number 20. 20 is the ID number for the record. I want the child form to then also move to record number 20.
These forms are of the same table data, I just want some of the data displayed on the child form top avoid congestion.
I've looked at DoCmd.GotoRecord and DAO options. I think an ADO option is too complicated for just form data.
Thanks in advance for any help you can provide.
Control Stays With The Parent Form Even After Opening The New Form
Hi,
I am facing a problem in my VB application.
Here is the issue:
I have one form "frmResult" which has the third party Thumbnail control and another form "frmImage" which displays the image. Here both the forms are MDIChild.
Now, whenever user clicks on the Thumbnail in "frmResult" form, "SelChange" event of the thumbnail Control in "frmResult" gets fired and it creates the new instance of the "frmImage" and displays image in it.
Though it seem that "frmImage" form has focus, but clicking on the "frmImage" form (keeping the opened "frmImage" form to it's default position) selects the thumbnail beneath the "frmImage" form and fires the "SelChange" event for the selected thumbnail control of "frmResult" and opens new "frmImage" form for the selected thumbnail.
What i have seen when i debug this issue is, "Deactivate Event" of the "frmImage" gets executed immediately and the control stays with the "frmResult" form.
What i want is once the "frmImage" form opened by clicking on the thumbnail that form should have the control.
***RESOLVED***MDI Child Form Placement In Parent Form
I am using the MDI Parent/Child forms in my project.
I have one of my child forms open. On this child form is a command button which opens a second child form. I would like it if when the second child form is opened, it opens directly below the first child form. It would also be great if it would open below the first child form regardless of where the user has moved this form on their screen.
thank you
Displaying A Child Form Without Parent Form In Backround??
I want to create a form that behaves just like Outlook mail notification. I have an application that I want to display a notify form that something has happened. I want this notify form to display centered and topmost. Once the notify form is front and center I want the ability to act on it or select another application to have notify form disappear or minimized showing it on the taskbar. Then when I select the notify form from the taskbar, it will show but NOT have my parent application show.
I can set the form on the top and have it centered. I just need help with the rest.
Thanks,
ERS
URGENT - How To Keep A Modeless Form Active On A Parent Form ?
Hi,
I have a Text editor, where in the user has the otpion to use the FIND and REPLACE tool. Now like the standard editors( which support Find or Search), I need to keep the form active on my application as long the user closes this form and also at the same time, need to work on the editor as well.
Please look into the behaviour of either Wordpad, Notepad, MS-Word.
When you invoke the FIND tool, a form is displayed, where the user can type the text he needs to be Found. Now even when the Find form is active, we can still go ahead and continue editing on the editor. The Find Form still stays active on the Application. The Find Form does not close nor gets minimised untill the user forcibly closes the form.
Please come out with your suggestions as soon as possibile, as I have got very less time to achieve this behaviour. This needs to be done on VB 5.0.
If you need more info, please feel free to call me up at
91-80-3460 616 ( Off )
91-80-6656 040 ( Res )
e-mail
nanjangud_bimlesh@bet.satyam.com
Thanks in advance,
Bimlesh
Child Form Always On Top Of Parent When Parent Not Minimised
I've been getting some great help from this forum thus far, my thanks to you
all who have helped thus far.
My problem now lies in that I wish to make a child form spawned from the
parent always remain on top of the parent, but only when the parent is
visible. ie. I haven't minimised the application.
I managed to incorporate some code obtained from the VBToolbox by
Vijayakumar Kannan which allows me to keep a form on top, but the problem
lies in that the form always remains on top (of every app) even when the
parent is minimised.
Thanks in advance.
******Code used is as follows*******
' DECLARED AT MODULE LEVEL
Option Explicit
Public Const SWP_NOMOVE = 2
Public Const SWP_NOSIZE = 1
Public Const FLAGS = SWP_NOMOVE Or SWP_NOSIZE
Public Const HWND_TOPMOST = -1
Public Const HWND_NOTOPMOST = -2
Declare Function SetWindowPos Lib "user32" _
(ByVal hwnd As Long, _
ByVal hWndInsertAfter As Long, _
ByVal x As Long, _
ByVal y As Long, _
ByVal cx As Long, _
ByVal cy As Long, _
ByVal wFlags As Long) As Long
Public Function SetTopMostWindow(hwnd As Long, Topmost As Boolean) _
As Long
If Topmost = True Then 'Make the window topmost
SetTopMostWindow = SetWindowPos(hwnd, HWND_TOPMOST, 0, 0, 0, _
0, FLAGS)
Else
SetTopMostWindow = SetWindowPos(hwnd, HWND_NOTOPMOST, 0, 0, _
0, 0, FLAGS)
SetTopMostWindow = False
End If
End Function
' DECLARED IN THE FORM
Private Sub Form_Load()
Dim lR As Long
lR = SetTopMostWindow(Me.hwnd, True) ' always on top
End Sub
Calling A Modeless Form From A Modal Form
how can I do this? I saw something in MSDN about calling it as a child, but I tried
Code:
no.show (vbmodal,lissel)
'no is the name of the modeless form and lissel be the
'parent, the modal
argh...thanks for the help!
Form Position To Registry On Form Minimize
My app was saving the form position to the registry when you closed the form, but what I also wanted to have was the form position saved to the registry when it gets minimized, so that when you click the icon in the system tray, it gets put back right where it was before it was sent to the tray.
Because I don't know of a way to capture the minimize button being clicked, my solution was to stick the code saving form size and position in both the Form_Resize and the Form_MouseUp events.
It works, but I don't like the thought of constantly saving to the hard drive the whole time the form is being moved or resized.
Is there a better way (can I just save it before the minimize happens) or am I just being way too obsessive?
Showing A Topmost Form From A Modal Form
Does anyone know how to show a topmost form from a modal form?
The effect I wish to achieve is a floating toolwindow over a modal form.
I am using the SetWindowPos() api to make the child form topmost ie floating. This works fine when the parent calling form is itself is shown non-modal. However when the parent form is shown modally I get a stack overflow error and a GPF.
Any help much appreciated,
Avinder Bahra
Avinder Singh Bahra
Unloading A Form With A Modal Form Over That Form
I want to unload a form that is under the curent form, the form i want to unload is the form that called the curent form... curent form is frmParamTmp what I want to do is that if the user decide to change the schedul he want to see, the schedul underthe param form should unload and then the new schedul (wich is the same form but with other data on it) to apear instead... so is there a way to unload this form, and if yes, what code does it?
|