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

  1. acruickshank

    Replacing one Class

    You'll have to shut down the package. Copy the DLL over the top of the old one, then run mts(x)rereg. This should reregister all dlls that are currently in MTS.<br>
  2. acruickshank

    Automating installation of MTS components

    It will shut down an existing package, remove it, create a new one, add the dll and set the transaction property.<br> Fairly basic stuff.<br> It's written in VB and using the MTSCatalog. If you want I can send you the source and you can chop it around to get it to work for you.<br>
  3. acruickshank

    mschart flicker

    Use the API call LockWindowUpdate. Pass it the handle of the control before you update it, when you've finished execute LockWindowUpdate 0, to paint the control.
  4. acruickshank

    ADO record sets. Does anybody know whats wrong with this code?

    You haven't specified a lock type for your record set. It's being opened as read only, and you are trying to add a row.<br> <br> Try this code instead of the command object and the record set.<br> <br> Set adorsOrderHeader = New ADODB.Recordset<br> With adorsOrderHeader<br> .CursorLocation...
  5. acruickshank

    Automating installation of MTS components

    Would anybody like VB source that installs an MTS DLL using automation. It works fine for me, but made need tweaking to achieve exactly what you want to do.<br> Send me an email to <A HREF="mailto:adam.cruickshank@virgin.net">adam.cruickshank@virgin.net</A> and I'll send you the source.<br>

Part and Inventory Search

Back
Top