Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. QbLulu

    Trying to hold the vbacode until form in function is closed

    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...
  2. QbLulu

    Trying to hold the vbacode until form in function is closed

    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...
  3. QbLulu

    recursive form for recursive table

    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.
  4. QbLulu

    recursive form for recursive table

    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...
  5. QbLulu

    recursive form for recursive table

    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...

Part and Inventory Search

Back
Top