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 strongm 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. 1forino

    Conversions URGENT (which is the problem with this code?)

    Thanks for the tips, but the problem was the comma:) Changing the comma for the point solve the problem... Function Converte_EUR(valor As String) Dim intLen As Integer Dim strValor As String If IsNumeric(valor) Then strValor = (txtPTE / 200.482) intLen = InStr(strValor...
  2. 1forino

    Conversions URGENT (which is the problem with this code?)

    In first place, thanks for the tips. Removing the FORMAT of the strings resolved part of the problem. At this moment my code is the following one: ----------------------------------------------------------- Function Converte_EUR(valor As String) Dim intLen As Integer Dim strValor As String...
  3. 1forino

    Conversions URGENT (which is the problem with this code?)

    Hi, I'm making a program in VB with a SQL SERVER database. In my database I have two fields that they are numerical, Montante_PTE and Montante_EUR (this field is numerical with scale 2). In my code I have 2 functions that they convert the values to Euros or PTE (portuguese money) and places...
  4. 1forino

    How to print data to a check

    I am working in a project where will be necessary print checks. I already obtain to the printer that I want, the orientation of the page, etc. But I am with problems in define the papersize and the position of each string. Someone can help me with some tips and code to resolve this? Thanks...
  5. 1forino

    How to pass some values to crystal reports at run time

    The last tip resulted:) Thanks one more time for the aid. He was difficult to arrive there...:)
  6. 1forino

    Send mails through VB

    Hi, I have to send mails through a program in VB. Is necessary to send emails with attachements, etc. This is not a problem for me. I liked to know, if someone know how to keep the description of all emails sent. Such as it happens when he send a normal email through the Outlook, where in...
  7. 1forino

    How to pass some values to crystal reports at run time

    Thanks for the tip, but also already had attemped this and continues to get the same error... "Tipe mismatch" Exists another way to pass parameters in run time to a crystal report?
  8. 1forino

    Why out of memory?

    Hi, I am making an application in VB6 with SQL SERVER and reports in Crystal Reports 8.0 When I modify some information in database and want to call new report to visualize the information, occurs error OUT OF MEMORY, why? Is necessary to filter the information for months. Already I worked...
  9. 1forino

    Setting the mail reply address

    Hi, I'm making an application in VB 6 with a database SQL SERVER. I want to use a DBCombo without needing to appeal to the date controls. That is possible? The DBCombo is connected with two recordsets different. One connected to the main table and the other connected with the table that...
  10. 1forino

    Setting the mail reply address

    Hi, I have to do something similar to that. I have to send mails through a program in VB. Is necessary to send emails with attachements, etc. This is not a problem for me. I liked to know, if someone know how to keep the description of all emails sent. Such as it happens when he send a...
  11. 1forino

    How to populate a DBCombo without data controls?

    Hi, I'm making an application in VB6 and a database in SQL SERVER. I'm triyng to populate a dbcombo with code, without data controls. With property datasource, no problem. But how can I do with rowsource? Thanks in advance for any tip.
  12. 1forino

    How to pass some values to crystal reports at run time

    Thanks for the tips. I have tried with formula fields, but I always get this error "Type mismatch". What is wrong with that piece of code? I create a formula in the report with the name of "Para", and in VB 6 I Write this: Dim strName As String strName="Jonh&quot...
  13. 1forino

    How to pass some values to crystal reports at run time

    Hi, I'm newer at Crystal Reports. I have an application in VB6, and I need to show some fields (inputs from the user, not fields from a database) in a report I create. How can I do this? Thanks for any tip.
  14. 1forino

    How to pass some values to crystal reports at run time

    Hi, I'm newer at Crystal Reports. I have an application in VB6, and I need to show some fields (inputs from the user, not fields from a database) in a report I create. How can I do this?

Part and Inventory Search

Back
Top