Search results

  1. W

    Must textboxes in a report have a rowsource?

    Thanks Jibbadiah, I will try your solution a.s.a.p. Thanks Jibbadiah, I will try your solution as soon as possible. Well,, I've set the global sqlstring now, and in the report_open() sub, i have set: Me.Recordset = strMySQLstring (that is global). But: How do I assign a textbox a value from...
  2. W

    Must textboxes in a report have a rowsource?

    Hi! Being a newbie to reports, I'd like to dynamically fill the textboxes on a report from Recordsets that i've grabbed in vba code. Like this: me.textboxName.Value = rsPerson.Fields("Name").Value But the textboxes on a report differ from textboxes on a form, in that they dont seem to be able...
  3. W

    How to update a field in a subform?

    Thanks! Yeah, i needed to know the name of the subformcontrol that the subform is embedded in. Now it works ;) For those who are interested: I made an testapp. It had 2 forms: frmMain & frmSub The subformcontrol on frmMain I named 'frmSubControl'. frmSub had a textbox named 'txtSub'. This...
  4. W

    How to update a field in a subform?

    Hi! I have Form1 with two subforms in. They are both on subform1 level (not nested). From one of the subforms i can ask the parentform for a value in a textbox on parentform: Me.Parent!Controlname.Value But: How can i succeed updating a subforms textbox (called "textbox1"), when being on...
  5. W

    How to send data between 2 forms?

    Well Banana, thanks for your thoughts. No, I don't think the forms are tables themselves. The thing is, that form1 is populated with so many inputfields, like textboxes / optionbuttons etc, that one task (inputting info that will be in another table, ) that is connected to form1, needs better to...
  6. W

    How to send data between 2 forms?

    well, i dont think its a popup form, rather just a form.. Thanks for your reply. To be honest, I am using Access2000 database, and in the Form section, i design the forms. I dont know if i can implement various constructors, like "new ()" and another constructor "new(byval int myindata).. to...
  7. W

    How to send data between 2 forms?

    Hi, I have 2 forms. form1 & form 2. Form1 is full with textboxes etc, so for one task (datainput from user), i want to open a new form (form2). 1. How can I send data (in this case, a registrationID) from form1 to form2? I would like to do it in a button click event (that opens form2, the...
Back
Top Bottom