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 strongm 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. Hexonx

    Thread Affinity and MQ

    Good info, thanks. I've finished the code that performs Gets and Puts in both synchronous and asynchronous modes, and also supports MQ transactions in each mode. I wish I could post it somewhere. Maybe I'll write an article on one of the dev sites.
  2. Hexonx

    Thread Affinity and MQ

    Are message queues particular about the threads that access them? In my experience, I receive an error when accessing a queue from a different thread than the one that opened the queue. This isn't a major issue, but I keep bumping into it when trying to build my queue access component. My queue...
  3. Hexonx

    VS2K3 doesn't copy file reference

    bobisto, ProjectB has a 'project' reference to ProjectA, not a 'file' reference.
  4. Hexonx

    VS2K3 doesn't copy file reference

    I'm having a problem in VS2K3 whereby a file reference of a project reference isn't being copied to output folder upon compilation. Here's the solution structure: ProjectA References Assembly1.dll (File reference; CopyLocal = True) ProjectB References ProjectA (Project reference...
  5. Hexonx

    VS2K3 doesn't copy file reference

    I'm having a problem in VS2K3 whereby a file reference of a project reference isn't being copied to output folder upon compilation. Here's the solution structure: ProjectA References Assembly1.dll (File reference; CopyLocal = True) ProjectB References ProjectA (Project reference...
  6. Hexonx

    ECHO-ing special characters into output file

    That did it, my friend! This is good to know, since XML is so prevalent these days and the command processor has such difficulty processing special characters. Thanks, again!
  7. Hexonx

    ECHO-ing special characters into output file

    Tsuji, Thanks for the info. I'm running on Win2k and it still complains about the < and > characters. The code you sent was close, but here's what worked at the command line (except for < and >): for /f "usebackq tokens=1*" %a in ('//autogenerated') do @echo %a > out.txt
  8. Hexonx

    ECHO-ing special characters into output file

    I'm using a tool to generate a C# code file and am using the ECHO command to do it. I need need to write this line to the output file: //<autogenerated> but I keep getting a syntax error message. I tried this: "//<autogenerated>" but the quotes are retained in the output file. This is an...
  9. Hexonx

    CPU with faster FSB than mobo

    I want to upgrade the CPU on my SuperMicro P4SBA+ mobo. According to the manual, the fastest it can take is 2.4GHz P4 with 400MHz FSB. I found a good price on a 2.4GHz processor with 533 MHz FSB and 1Mb cache. I'd really like to get the extra cache. Will this cause any problems?
  10. Hexonx

    Yet Another Database Login Problem (CR 8.0 Rant)

    synapsevampire, I suppose by your chuckling that you've either solved this problem or never encountered it. Do you know how to determine which authentication method to use at runtime (SQL or integrated)? We're using DatabaseTable.SetLogonInfo method, which has always worked. I don't know why CR...
  11. Hexonx

    Yet Another Database Login Problem (CR 8.0 Rant)

    Got a database login problem in CR? Who doesn't, but here's a new one that happened to me recently. My reports were originally bound to a proc in the database in our office. We were logging in to this database using SQL security at the time. The reports are distributed with a VB6 app and are...
  12. Hexonx

    Enumerating QueueManagers and Queues

    Anyone know how to enumerate all QueueManagers on the local machine, and the Queues each manager owns? I'm writing a test harness to generate messages and want to be able to select the QM and Q to send to. TIA
  13. Hexonx

    Rounding data in XSL to 2 decimal places

    Using XmlSpy 4.4, it didn't like using '/' as the division operator. I had to use 'div' operator instead. Mine looked like this: &lt;xsl:value-of select=&quot;floor(sum(PersProd/ProductNode/SectionPart/UsageItem/Amount/TaxAmount/Value)*100) div 100&quot;/&gt;
  14. Hexonx

    How to copy namespace attributes in the output xml file?

    abelkina, I'm trying to create namespaces in my output doc, as well. Have you gotten resolution on this? Can you post your code that copies xsi:noNamespaceSchemaLocation to output?
  15. Hexonx

    Windows Service with Multiple Installers

    obislavu, You are correct. I had tried this and it solved the side-effect problem. I ultimately split the services into two projects in order for each service to have a separate Trace log. I am using the Trace class, which occurs at the AppDomain level. Since both of my services run in the same...
  16. Hexonx

    Windows Service with Multiple Installers

    I built a Windows Service assembly that implements two services. For better organization, I created a folder for each service to contain appropriate project files. Additionally, I created a separate ProjectInstaller for each service in the appropriate folder. All went well until I noticed that...
  17. Hexonx

    Static destructor?

    obislavu, Thanks for the reply. I understand the non-deterministic nature of garbage collection in .NET. True, resources initialized in the constructor need to be released in the destructor (unmanaged resources), but what about resources initialized in the static constructor? If they are...
  18. Hexonx

    Static destructor?

    My class contains an unmanaged system object member (a user profile handle) that is initialized in the static constructor. Conversely, I need to free the object when the class (not object instances) is destroyed, but I've never heard of a static destructor. Perhaps I could use...
  19. Hexonx

    Parameters for NIC During SUSE 9 Installation

    I was pressed for time and installed the Default installation, which is basically a well-equipped desktop (no development). I may try to install the dev tools, but I'm a .NET developer. I'm interested in the Mono project (.NET impl on Linux), Apache web server, and a database (MySQL or something).
  20. Hexonx

    Parameters for NIC During SUSE 9 Installation

    I was able to successfully install SuSE Linux 9.0. The &quot;Cannot read package data from installation media. Media error?&quot; continued to occur on ftp.oregonstate.edu site. I switched to this mirror and installed successfully: StorageTek 199.117.145.110 /pub/systems/suse/i386/current For...

Part and Inventory Search

Back
Top