Search results

  1. C

    Need help so much… I just can’t

    thanks man, it works, and you save me!!! :)
  2. C

    Need help so much… I just can’t

    on the main report. on th onactivate event: If Me.Subinforme_COLOCACION_PESOS.Report.HasData Then Me.Texto58 = [Informes]![RESUMEN_OP_FIN].[Informe]![Subinforme COLOCACION_PESOS]![suma_tasa*monto] Else Me.Texto58 = 0 End If and i get error. please help!!!
  3. C

    Need help so much… I just can’t

    I try to used to, but it do not work.
  4. C

    Need help so much… I just can’t

    You are right ukraine84. The Main report is “RESUMEN_OP_FIN” an the sub report are “Subinforme COLOCACION_PESOS” , “Subinforme COLOCACIONES_DOLARES” and “Subinforme FONDOS_MUTUOS_PESOS”. On the main report, the textbox “Texto58” needs to be fix, so the rest can be fix. I realize that in the...
  5. C

    Need help so much… I just can’t

    come on!!!! any ideas???
  6. C

    Need help so much… I just can’t

    Hey guy’s, I been working on this problem for 5 days already and I cant get it to work. The thing is that I have a Main Report with 2 Sub Report, and I have to do some calculation, but I get error all the time. I try to use Nz(), iif(isNull(),,), etc. and nothing. Pleas help. Here are some...
  7. C

    Me![anything] or Me.anything, what's the diference

    can any one tell me what's the diference beteween Me![ControlSubInforme].Visible = Me![ControlSubInforme].Report.HasData and Me.ControlSubInforme.Visible = Me.ControlSubInforme..Report.HasData for example. thanks
  8. C

    Hide Empty fields in a report

    try this better: Me.YourField_lbl.Visible = Me.YourField_lbl.HasData
  9. C

    Report Prints w/o OnActivate Event Code

    I have the same problem. Any one can help??? please. dont understand the on format thing.
  10. C

    Use Data from SubReports

    Sorry but what is the HasData method, and where can I find some info about it?
  11. C

    Use Data from SubReports

    Great Help. Thanks a lot. :)
  12. C

    Use Data from SubReports

    I have 2 subreport on the main report. On the main report I need to print up the sum of some textboxes from each subreport...... no idea. Please help!!! Thanks any way
  13. C

    Interesting query for a report, don’t know how to do it

    I truly understand what you mean, but I’m trying to do it without creating more tables and query….. more mass. Just on the report. Any suggestion? Thanks in advanced. Ps. may well be with vb code. ps2. sory for my english.
  14. C

    Interesting query for a report, don’t know how to do it

    Let say I have this very simple table: Investments Bank (number, the key of the bank) TypeOfInvesment (number, can be 1 = deposit o 2 = mutual funds) Amount (currency) And the data is: Bank TypeOfInvesment Amount 1 1 $100.000 2 1...
Back
Top Bottom