I had to puzzle a bit on it but I got it working
Now I got on the main form:
Private Sub bttn_Click()
Dim hndl As Variant
hndl = OpenForm(<arguments>)
Do Until Not FormOpen(hndl)
DoEvents
Loop
<code to do after from has been closed
End Sub
Function OpenFrom
Dim form1 as...
I have a form with a button on it.
the code under "onclick" event is like
sub buttononclick
DoFuction
Msgbox("Hello world")
end sub
Function DoFunction
Dim form1 as form
Set frm = New Form_f_form2
clnIdentificationForms.Add Item:=frm, Key:=CStr(frm.Hwnd)
Set frm = Nothing
end...
Interesting, haven't thought about that. Haven't worked with that before. I'm interested in reading further about it, but i'll be back here on monday. The rest of the week is work for another employer.
Hi, already a step further: My colleague pointed me to the following website: http://allenbrowne.com/ser-35.html,
so now I have multiple instances of the form.
(problem for me is first finding the right terms and semantics, before one can google for the answer: I want something, but I do not...
Hi,
I have a problem crating a form that can call itself. Let 's say I have a table with fields id;parentid;term;termkind. (something like geographic terms: 1;null;USA;country and 2;1;Ohio;state, according to me a standard recursive tablestructure which tells you that Ohio is a state in the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.