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 John Tel 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: mcs1000
  • Content: Threads
  • Order by date
  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

    Why would a basic SQL query be slow (~50 secs) the first time it is run and then fast from then on?
  4. 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?
  5. 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?
  6. 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...
  7. 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?
  8. 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.
  9. 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?
  10. 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...
  11. 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?
  12. 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?
  13. mcs1000

    Fill a vb6 recordset from an sql server 2005 stored procedure

    I am trying to fill a recordset from a stored procedure. The problem I have is that I want to include an IF...ELSE statement in my stored procedure. When I have an IF...ELSE clause and two or more SELECT statements in my stored procedure I cannot retrieve the data from the database into a...
  14. mcs1000

    Mail Merge from VB6 to Word 2003

    Can I automate a mail merge from VB6 to Word 2003 without opening word?

Part and Inventory Search

Back
Top