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

    pass a recordset to a subreport

    with "Report.Database(0).SetDataSource rs_SGP" Ican pass a recorset do a Crystal report. How can I pass a recorset to a subreport inside tis report?
  2. algomes

    MAPI Run-time error '32002'

    When I run the following code I get the error "Unspecified failure has ocurred" (Run-time error '32002').Can anyone help me with this one? MAPISession1.SignOn ' Send a fax with attachment MAPIMessages1.SessionID = MAPISession1.SessionID Dim Fax As String Dim Nome As String For...
  3. algomes

    msmapi32.ocx license problem

    when I try to put a msmapi control on a from I get the message "you don't have the license required to use ... ". Can someone help me with this problem?
  4. algomes

    frame problem

    I'm using vb6 and I'm hiding one frame behind another in a form turning them visible trough code. frame1.visible=false frame2.visible=true The problem is that frame2 doesn't turn visible.Can someone help me on this?
  5. algomes

    Code Problem

    It didn't work. We solved it another way. Thanks again!
  6. algomes

    Code Problem

    Thank's Ed. When I run it trough the debugger I can't replicate the error (the error occurs when I run the .4ge or the .4gi trough splgo). Do you think it may be an informix bug?
  7. algomes

    Code Problem

    Thank's for answering Ed. defer interrupt is set, it must be something else.
  8. algomes

    Code Problem

    The main thread: open window w_dtopos30 at 2,2 with form "dtenrguia" attribute(border) call display_msg_dtopos(5) call dtopos_l_leitura_nro_guia(ordem,"R") close window w_dtopos30 call display_msg_dtopos(0)...
  9. algomes

    Code Problem

    I've the folowing error : 1141 Cannot close window with active INPUT, DISPLAY ARRAY, or MENU statement. but I'm not closing the window inside the input. Can anyone help me?
  10. algomes

    visual source safe problem

    When I make a check in to a form the changes I made to it desapear? Can anyone help me?
  11. algomes

    problem with a query

    SELECT T1.A, T1.B, T1.C, X.XCNT, Y.YCNT FROM T1, (SELECT COUNT(*) XCNT FROM T2 WHERE T2.A=T1.A AND (T2.E=1 OR (T2.E=0 AND MEV_T2.D=1))) AS X, (SELECT COUNT(*) YCNT FROM T2 WHERE T2.A=T1.A AND (T2.D=0 OR (T2.D=1 AND T2.E=1))) AS Y WHERE MYDATE <='2002-10-15' When running this query I...
  12. algomes

    help with a query

    SELECT A, B, (SELECT COUNT(*) FROM T1 WHERE X1=Y1) AS C, (SELECT COUNT(*) FROM T1 WHERE X2=Y2) AS D FROM T2 WHERE MYDATE < '2002-10-14' I'm sory for the error. The query above is the one I want.
  13. algomes

    help with a query

    SELECT A, B, (SELECT COUNT(*) FROM T1 WHERE X1=Y1) AS C, (SELECT COUNT(*) FROM T1 WHERE X1=Y1) AS D FROM T2 WHERE MYDATE < '2002-10-14' How can I make this query return data where C<>D?
  14. algomes

    format a field in a select query

    There is an alfanumeric field I want to format in the select query. The value is, for example &quot;1234&quot; and I want to get it as &quot;01234&quot; in the select process.
  15. algomes

    format a field in a select query

    I want to format a field in a select query as this: &quot;select format(field,&quot;00000&quot;) as field1&quot; Is there any way to do this in sql server?
  16. algomes

    When processing a cube in msolap I

    When processing a cube in msolap I get the following message: &quot;Processing cube 'FacturacaoRDL' failed.No changes have been made to the database&quot; I've been able to process the cube before. Can someone help me with this problem?
  17. algomes

    Deleted field in a report keeps being asked as a parameter

    The problem is solved! There was a strange thin line in the place the control was that was referencing the deleted field.
  18. algomes

    Deleted field in a report keeps being asked as a parameter

    Thanks but the problem is still there
  19. algomes

    Deleted field in a report keeps being asked as a parameter

    I deleted a field in a report but every time I try to preview it an inputbox apears asking for the deleted field. Can anyone help me?
  20. algomes

    4gi works but 4ge has a problem

    When I compile a program as 4gi I have no problems running it with splgo but when I compile it as a 4ge I have some problems with references to windows not opened. Can anyone help me with this?

Part and Inventory Search

Back
Top