Search results

  1. F

    Variable definition - Data type

    Hello, I would like to know what kind of Data Type I have to declare in order to share the value in a variable between process. As example the code below: Public Sub Form_Open(Cancel As Integer) Dim data As Integer DoCmd.openform "base" data =...
  2. F

    Form property

    Hello everyone... I need to get a info. from the other FORM and insert in a loaded form. So, I wrote: Private Sub Command2_Click() Dim Variable As Integer Variable = Forms!base!baseDetails.Form!Superior also I tried: Variable = Forms![base].Form![superior] where: base is the other form...
  3. F

    Open record randomily

    Hello, I need your help or orientation to figure out how to control a randomily code to open a form/table record. I have a table/form and I open the record randomily through this code: record = DCount("[ID]", "FORM") myvalue = (Int(record * Rnd) + 1) DoCmd.OpenForm "FORM", , , "ID =" &...
  4. F

    Flash card (record) - Poup up & autoexec

    Piece of cake for you !!! Flash card (record) - Poup up & autoexec Hello every one, I'll really appreciate any help. I'm beginner in code issues, so that any directions will help me. I've already read a lot of threat posted here, but I'm not able to define what I need yet. What I wanna to do...
  5. F

    Button design

    Hello all, How can I re-design my form command button? I mean, how can I change the back color from the standard access command button ? Or how I can let it transparent. Is it possible to create a round button instead of a square one ? I'm always using the tool box and so, the...
  6. F

    Refresh Report Data

    I have one report based on my table and form (off course). My problem is: when I add a new record in the database (via table or form), this new record does not show up in my report .... your "space" show up blank What I need to do to refresh these records ? Or what's the problem Thanks in...
Back
Top Bottom