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 bkrike 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
  • Content: Threads
  • Order by date
  1. 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...
  2. 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
  3. 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...
  4. 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
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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,
  10. 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...
  11. 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...
  12. ndalli

    Initializing DLL Classes

    Hi, I am creating a DLL containing a number of LET/GET public properties in a class module. Depending on the input a screen(form) will be showed. One of these properties is for example ShowUserRoles. ===== Public Property Let ShowUserRoles(ByVal vData As Boolean) mvarShowUserRoles =...
  13. ndalli

    Passing a Connection as a Paremeter

    Hi, I am trying to pass a connection as a parameter to a function. The connection is for an MSACCESS database. I am getting an error stating that the connection string is either empty or invalid (although the connection works fine when used normally i.e. not passed as a parameter). Does...
  14. ndalli

    Find linked tables

    Hi, I am currently trying to amalgamate a number (12) of databases into one large database. Every database contains a number of tables, some of which are linked tables. Is there a way to find in which database, a linked table is? Thanks in advance,
  15. ndalli

    Error while accessing certain screens

    Hi, I was given the task of upgrading an MSACCESS application from MSACCESS97 to 2000. After doing this, and trying to enter particular screens I am getting the following message: formalities![A]![A]. This accepts a value. I am totally new to MSACCESS. Can anybody explain what the...
  16. ndalli

    Removing DLLs from the reference lists

    Hi, I am using a number of my own DLLs (DLLs I created) which had to be inserted in the project reference. When I start a new VB session, I still have the list of these DLLs displayed. Does anyone know how I can remove them from the project reference? Many thanks
  17. ndalli

    VB6, Crystal Reports 8 and SQLQuery

    Hi, I am using the following code in VB to run Crystal Reports 8. I am setting the SQL statement at runtime using the SQL Query property. The selection is not returning anything. Both the 'SELECT' and the 'FROM' are exactly the same as that found in the .qry file. It seems that the...
  18. ndalli

    VB6 Data Report and external recordsets

    Hi I am using the Data Report Utility which comes with VB6. Does any one knows how to send the data to a recordset outside the environment that you have to create for the reports? The main reason is that the Open command is too slow when run from the environment. Thanks
  19. ndalli

    Deploying an application

    Hi When creating the setup files for a VB application, a number of files are created (CAB, EXE etc...). Does anyone know how I could amalgamate all these into one exe, and when the user clicks on the exe, the installation runs automatically. I know that it is possible, but I do not know how...
  20. ndalli

    Setup and Deployment on CD creates readonly MDB

    Hi, I have created the setup and deployment package for an application and copied all the necessary file son CD. When running the setup.exe file, all goes well, excpet that all the installed files (including the MSACCESS database0 will become read-only. Does anyone know of a utility which I...

Part and Inventory Search

Back
Top