RE: Multiple display of timed userforms ...
Action1: it's 8:00 AM. Open a new Userform1(blank textbox1):
Enter data:
Action2: 5 minutes later: open a new Userform1(blank textbox1)
Enter data:
Desired result:
How would I get two instances of a userform with different display set times and entered textbox values to display simultaneously(.Top and .Left to be adjusted to view both? Showmodal = false on both to allow interaction with textboxes
Is there any way this can be done, even with duplicate userforms ?
I would appreciate any help anyone can give me on this.
Thx
cr
Action1: it's 8:00 AM. Open a new Userform1(blank textbox1):
Enter data:
Code:
Userform.DTPicker1.value = Time 10:00 AM (display time)
Userform1.Textbox1.value = Buy oranges
close userform
Action2: 5 minutes later: open a new Userform1(blank textbox1)
Enter data:
Code:
DTPicker1 = Time 11:00 AM (display time)
Textbox1 = Buy apples
close userform
Desired result:
Code:
Two instances of Userform1 display side by side at 11:00 AM,
the earlier userform1 and the later userform1 showing
Userform1 . Textbox1.value = Buy oranges
Userform1. Textbox1.Value = Buy apples
How would I get two instances of a userform with different display set times and entered textbox values to display simultaneously(.Top and .Left to be adjusted to view both? Showmodal = false on both to allow interaction with textboxes
Is there any way this can be done, even with duplicate userforms ?
I would appreciate any help anyone can give me on this.
Thx
cr