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 Mike Lewis 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. mcs1000

    XML Serialization

    When I serialize a member with padded spaces I am losing the spaces from the end e.g. "TEXT " -> <field>TEXT</field> I am using the following set accessor to pad the field public String CWReference { get { return this.cwreference; } set { this.cwreference =...
  2. mcs1000

    Word Automation is slow in citrix

    I need to know why using word automation from vb6 is very slow in citrix but fine outside of it. All I am doing in my test program is creating a word application object ie. Set wrdApp = CreateObject("Word.Application") and this step alone is taking 4 seconds
  3. mcs1000

    SQL Query performance

    Thanks for the response. Would this be consistent with only happening when the server is restarted and is there anything i could do to improve it.
  4. mcs1000

    SQL Query performance

    Why would a basic SQL query be slow (~50 secs) the first time it is run and then fast from then on?
  5. mcs1000

    Patch a VB6 executable

    Is it possible (and how if so) to release a patch to fix a bug in a VB6 executable without releasing a new version?
  6. mcs1000

    exposing vb6 modules to .Net code

    i'm trying to wrap some existing code in vb6 to use in c#. I've extracted most of the code into a dll. I really have a lot of legacy code so I don't want to convert (vb6) modules into (vb6) classes because I am trying to minimise conversion costs. Either way thanks for your ideas
  7. mcs1000

    exposing vb6 modules to .Net code

    surely there must be some work around
  8. mcs1000

    exposing vb6 modules to .Net code

    I am trying to use COM interop to include some legacy code. I have managed to use functions from vb6 classes. How can I use functions from vb6 modules?
  9. mcs1000

    Write Conflict

    I have Two forms linked to the same table. The table is accessed via odbc to sql server 7. I launch form B from form A, make changes to some of the fields then do a save on form B. Then I try to refresh form A from form B so that when I close form B form A is updated. I get a "Write Conflict...
  10. mcs1000

    Change linked table field to &quot;memo&quot;

    no problem i have fixed this. Change sql server data type to varchar with a field length > 255
  11. mcs1000

    Change linked table field to &quot;memo&quot;

    I want to change some fields to "memo". The table is linked to an SQL Server database. Is this possible?
  12. mcs1000

    VB6 Remove final CR LF character from a text file

    Damn, Thanks for your answer but I already spent half the day figuring this out. I found out because I'm writing text with no control characters I can just write to the file as a binary file. Thanks again for your help
  13. mcs1000

    VB6 Remove final CR LF character from a text file

    I need to remove the last CR/LF character from a text file. I have managed to remove the rest of the CR/LF chars using seek. Is there any way to print a line to a file without the CR/LF character or to remove the last character in a file.
  14. mcs1000

    Remove final CR LF character from a word document

    The problem is I need to send the file to a bank and it has to correspond to their specs to be parsed by their software. Is there an easy way to automatically open a text file, delete the last char then save?
  15. mcs1000

    Remove final CR LF character from a word document

    I need to remove all the carriage return characters from a text file(using vb6). I have used a word automation to open the file and replace all the CR characters. When I save the word file the last character in the file is a CR character. How can I get rid of this character?
  16. mcs1000

    ODBC Connection failure to Oracle Database

    I need to advise somebody about this over the phone. Is there a default location I can have them check?
  17. mcs1000

    ODBC Connection failure to Oracle Database

    I'm trying to make an ODBC connection via a LAN to an Oracle DB. When I go to ODBC Data source administrator and press 'configure' nothing happens. When I press 'configure' on one of the SQL ODBC connections the wizard comes up as expected. I have been able to connect with another computer on...
  18. mcs1000

    Prevent users from double-clicking between rows (datagrid)

    I am working on a database with a VB6 front end. On my form I have a datagrid which, when you click between two rows (and you get an up/down arrow symbol), opens the first record in the list. Does anyone know how to disable clicking between rows as I don't want my users to be able to do this?
  19. mcs1000

    How to disable clicking between rows in a datagrid

    I am working on a database with a VB6 front end. On my form I have a datagrid which, when you click between two rows (and you get an up/down arrow symbol), opens the first record in the list. Does anyone know how to disable clicking between rows as I don't want my users to be able to do this?

Part and Inventory Search

Back
Top