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 wOOdy-Soft 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: Dachyon
  • Content: Threads
  • Order by date
  1. Dachyon

    LAN CTE API for .Net or COM+ ?

    Hi All, I am trying to integrate some of the functionality of LAN CTE (ver 6.6.2.40) into our ERP. I was wondering if anyone has come across a reliable interface for the CTEAPI in either .Net or COM+ ? The existing CTE API is quite old and does not play nicely with modern development...
  2. Dachyon

    Can not alter table

    Hi SQL Experts, I have been trying to alter a table, to add an extra column, but everytime I try to ALTER TABLE, the query goes off into no-mans land, and just keeps processing for up to 10 minutes, until I cancel it. I have tried dropping the constraints, even dropping the table itself, but...
  3. Dachyon

    Double escape sequence

    Hi Experts, I have a requirement to pass strings containing file paths from my .Net app to a MySQL database. eg. C:\Test\File.txt In .Net the string value is displayed as "C:\\Test\\File.txt" in the debugger, however, when I commit that data to MySQL it gets written as "C:\Test\File.txt"...
  4. Dachyon

    Eject USB drive

    Hi All, I have been trying to find a way to eject a USB mass storage device from my system using C# (WinXP). I found a WinAPI called EjectDiskFromSADrive() in ntmsapi.dll (http://msdn2.microsoft.com/en-US/library/bb525502.aspx), however I am having trouble getting it to work. In my code, I...
  5. Dachyon

    Create objects at runtime when class is unknown at designtime

    Hi Gurus, Using C#.Net VS2005. I am wondering if there is a was to instantiate an object at runtime when the class of the object is not known at designtime? I have a list of classes that all inherit from BaseClass, and override BaseClass.someMethod(); But I don't know which descendant classes...
  6. Dachyon

    localhost - don't want no dial-up

    Hi All, I wish to be able to connect to a HTTP server installed on my PC using IE. However, when I type in a url http://localhost/index.htm, a dialog box appears asking me if I wish to dial-up my ISP. If I click Cancel, the browser does not get the page. If I click connect, the browser gets the...
  7. Dachyon

    Thread safe XMLDOM ?

    Hi everyone, I have an XMLDOM (MSXML4) implemented using the CoFreeThreadedDOMDocument4 coclass. This class supports Both apartment and Free threading models. It is updated by multiple processes. Can anyone tell me whether this coclass serializes access ? In other words, could I potentially read...
  8. Dachyon

    Thread safe ?

    Hi everyone, I have an XMLDOM (MSXML4) implemented using the CoFreeThreadedDOMDocument4 coclass. It is updated by multiple processes. Can anyone tell me whether this coclass serializes access ? In other words, could I potentially read from the DOM while it is being updated by another process...
  9. Dachyon

    _root array of elements

    Hi All, I am trying to find a way to iterate over all of the elements of a MovieClip. Is there a property similar to all[ ] in JavaScript in which you can reference each of the child elements of a MovieClip ? eg. for (var i=0; i < _root._all.length; i++) { if (_root._all[i] instanceof...
  10. Dachyon

    Combobox text under mask

    Hi All, I have a Combobox under a mask, but the textfield part of the control does not get displayed. I have searched this forum and found that dynamic and input text fields require embedded fonts to show through a mask, but how does one set the embedFonts property of a Combobox ? Tnx, dachyon
  11. Dachyon

    instanceof custom movieclip

    Hi All, I would like to be able to test an instance of a custom movieclip. I know its possible to test using instanceof for primitive data types like String and Number, but is it possible to test a custom movieclip symbol ? if (this instanceof "mcMyMovieClip") { trace('Found an instance of...
  12. Dachyon

    How to communicate between movies

    Hi All, I have my main movieclip, which loads child movieclips at runtime (swf) based on the result of a HTTP GET. Is there any way for me to call Actionscript functions in the child movieclip from my main movieclip ? Or is there any way I can communicate between these movieclips, without...
  13. Dachyon

    Registering COM servers

    Hi All, I am creating an Installer for my Delphi application which consists of several in-process and out-of-process COM servers. I want to be able to programmatically register these servers using the Installer. I think I know how to register the in-process COM servers :- > link the DLL and...
  14. Dachyon

    Shutdown message

    Hi All, Can anyone tell me what windows message gets sent to running applications when a shutdown is initiated from the Start Menu ? I made a wee app which displays a list (in a TMemo) of all messages that arrive in the window's message queue, but there does'nt appear to be a WM_CLOSE or WM_QUIT...
  15. Dachyon

    COM Server Warning on shutdown

    Hi All, I am developing some software which consists of a main application which starts up several other programs using Automation. My problem is when the PC shuts down (without first closing my main app) I get the following message dialog :- COM Server Warning There are still active COM...
  16. Dachyon

    COM Server Warning on shutdown

    Hi All, I am developing some software which consists of an application which starts up several other programs using OLE Automation. When you try to shutdown the PC (without closing the application down first), the following message dialog appears :- COM Server Warning There are still active COM...
  17. Dachyon

    Extract Node Text using XSL

    Hi, need some help with this :- I have some XML... <TRANSPORT>Bicycle <RANGE SELECTED=&quot;4&quot;> <_0>Walk</_0> <_1>Car</_1> <_2>MotorCycle</_2> <_3>Aeroplane</_3> <_4>Bicycle</_4> </RANGE> </TRANSPORT> I want to extract the value of the Text Node of the transport...

Part and Inventory Search

Back
Top