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 SkipVought 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: *

  • Users: ndalli
  • Order by date
  1. ndalli

    Duplicate files in the Setup Package

    Many thanks for your help.
  2. ndalli

    Duplicate files in the Setup Package

    Hi, I created a Setup Package with VB and found that the final result is a folder which is extremely large. When I checked the files in the folder I noticed that there are a number of files being stored both in the CAB files but also left uncompressed in the folder. Why does VB need to have...
  3. ndalli

    Printing contents of a file

    Ok, Now I think I am following you. So, I did create a number of reports from which I selected records from MSACCESS and displayed them successfully onto the report. Besides this I also have reports where data is being passed just through parameters. All these were done using VB6 (sorry...
  4. ndalli

    Printing contents of a file

    I am not sure about working with the DSNs. I am calling the reports through VB6, i.e. create the report as if it is a part of VB.
  5. ndalli

    Printing contents of a file

    Basically all I want is to print the entire contents of a file, be it a txt file or RTF file. I have to use Crystal reports since I need to include certain Headers and Footers which have to be the same as other reports within the company, so a direct print from the notepad, for example, is...
  6. ndalli

    Printing contents of a file

    Hi, CR 8.5 I am new to Crystal Reports and I am finding a difficulty to print all the contents of an RTF file through CR. Actually I am finding a difficuty printing the contents of any file, RTF, TXT, DOC. Anybody has any ideas? Thanks in advance
  7. ndalli

    DLLs: Invalid Procedure Call or Argument

    Its is one of the property methods - which I have coded within the DLL
  8. ndalli

    DLLs: Invalid Procedure Call or Argument

    Hi, I am creating an application which uses a DLL I have coded. The code of the DLL is in C:\Common Dlls while the code of the application resides in C:\Application. I created an EXE and a deployment package. When I run the EXE on the PC I have developed the application, everything runs...
  9. ndalli

    ORCA.EXE

    Hi, Does anyone knows from where I can find help on how to use ORCA.EXE? Microsoft's help is not of much help. Thanks in advance
  10. ndalli

    Labels in arrays

    Hi, I am using arrays when creating Labels on a form. So all the labels in a form will have the name of lblMyLabel(n). Now I need to loop through all the controls on the current forms and check their caption. The problem I am finding is that whilst the actual loop goes through all the...
  11. ndalli

    Passing an Array to DLL

    Hi, I am creating a dll to which I need to pass an array. I am inserting the following code: Public Get GetValues() as Variant() End Sub Public Let GetValues(ParamArray ArrayList() as Variant) gbGetValues() = ArrayList() End Sub For some reason VB is not excepting the code. Can anyone...
  12. ndalli

    Concatenating two Rich Text Editors

    Yes, but then when I tried to do it through the 'Sendkeys' statement, the text is not being pasted in the Rich Text Box.
  13. ndalli

    Concatenating two Rich Text Editors

    Hi, I am trying to include the formatted text existing in a Rich Text Editor (say RTE2) into another say (RTE1) which also contains formatted text. When performing the command RTE1.Text = RTE1.Text & RTE2.Text. All text will be copied but the formatting is lost. On the otherhand when I use...
  14. ndalli

    Registry problems with Windows Installer

    Hi, I am not sure if this is the right forum but just in case ... I am using Windows Installer for a VB6 application. I am storing the database path in the registry. While setting up the Installation (through the installer), I am creating the registry keys. On the other hand I cannot set...
  15. ndalli

    DLLs - Class automation error.

    HI, I am creating a DLL, itself calling another DLL I have created. When calling the second DLL I am getting a Class Automation Error. Can anyone please help? Many thanks in advance,
  16. ndalli

    Recordsets with OLE variable types.

    Hi, I am extracting data from a MSACCESS table and storing them into a recordset (rsRecordset.open(SQLStatmeent)). One of the fields in this table is OLE so that I will be able to store bitmaps. I am getting an error stating that the declared recordset is of an invalid data type. Can anyone...
  17. ndalli

    Error while loading a form in a DLL.

    Hi, I am including an error trapping routine in the Form_Load event of a screen which runs in a DLL. When an error is encountered the process goes directly through the routine as it should. The only problem is that after the commands found in the error handling routine are executed, it...
  18. ndalli

    Initializing DLL Classes

    The following is the code I am using: Option Explicit Private mvarShowUserRoles As Boolean Private Sub Class_Initialize() '**** AT THIS POINT THE VARIABLE mvarShowUserRoles IS STILL '**** FALSE WHEN THE CALLING PROGRAM SET IT TO TRUE If mvarShowUserRoles = True Then frmRoles.Show...
  19. ndalli

    Initializing DLL Classes

    Sorry I think I was not clear. Basically the structure of my DLL project is: - Class Module - Holding all the properties for this DLL - Module - Containing all the global variables - 3 Forms - These will be displayed depending on properties' values When I call the DLL from the main...

Part and Inventory Search

Back
Top