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. DevonTaig

    Newbie...calling an executable from a web form button

    I have an application that presents a list of hyperlinks to text files that represent customers that exist at given date and time. Users of the application can select a text file and download it, or create a new text file (by clicking a button) to get an updated list of customers (for that...
  2. DevonTaig

    .NET installation project and copying files

    I have created a .NET installation project. In the install, I need to place a text file at a special location on the client machine. I have included the text file with the installer, and it installs fine into the normal path that the user browses for during the installation. But, the text file...
  3. DevonTaig

    Why .RecordCount always return the number of all records?

    This code worked for me. Adodc2.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\Program Files\Miner and Miner\ArcFM Solution\Sample Data\Geodatabases\ArcGIS9_Minerville.mdb;Persist Security Info=False" Adodc2.CommandType = adCmdText Adodc2.RecordSource = "SELECT * FROM...
  4. DevonTaig

    Deployment projects and Regasm

    I have created a VS.NET Deployment project that should ideally call Regasm.exe on a couple of assemblies...for some reason, Regasm fails to execute (I don't get any errors, but Regasm is not executing either). I know that this should work, because Regasm works great from the command line on...
  5. DevonTaig

    Use CreateObject given CLSID

    How can I create an instance of an object given its CLSID such as "{D9C78005-E187-4781-BA3C-55892C5922FB}
  6. DevonTaig

    C# Component for VB6 application

    I have attempted to create a C# class that exposes a couple of public members to a COM client. Although the VB6 client can call the methods and properties of the .NET server and the code executes properly, there is no intellisense in VB 6 for the class (making it difficult to use). I have...
  7. DevonTaig

    mouse cursor disappears

    I have created a C# .dll that launches a windows form. The .dll is running inside a COM based application (ArcMap for you GIS savvy folks). From time to time, when I move my mouse over the .NET windows form, my mouse cursor strangely disappears. The problem is very sporadic, but quite annoying...
  8. DevonTaig

    Getting the ProgID from a GUID

    Thanks! Whew! I would not have guessed that on my own.
  9. DevonTaig

    Getting the ProgID from a GUID

    I have a GUID such as {1F7DFB1D-0690-11D5-8536-0001031AE9DB}... what is the best way to get the ProgID for that using VB?
  10. DevonTaig

    Where to store a private key

    Obislavu, Quamtar: Thank you both for your reply. The design suggestions and the code will help me greatly. Kieren
  11. DevonTaig

    Where to store a private key

    I am trying to create a class that will encode and decode a string using System.Security.Cryptography.RijndaelManaged (although I would be willing to use any methodology that is relatively secure). To perform the encoding, both the sender and reciever of the encrypted message must have access to...
  12. DevonTaig

    Getting a string from an XML text writer

    I am working with an XMLTextWrite, and am writing to a file. For debuging purposes, I would like to see the XMl as it is getting built. How can I convert the XMLTextWriter into the XML string? ToString() doesn't cut it. Thanks
  13. DevonTaig

    Determine where .dll is

    I have created a C# .dll that is hosted by a running .exe. I need to find the path to where the .dll is installed because I have a directory that is placed relative to the .dll that I need to access during the execution of the code. I have tried the following, but the refer to the running...
  14. DevonTaig

    Determining where Internet Explorer is located

    Does anyone know how to determine where Internet Explorer is located on any given users computer? I've looked at logical registry settings, but to no avail.
  15. DevonTaig

    Combo box control with embedded search behavior

    I am looking for a combo-box control that behaves just like the Internet Explorer Combobox where you type in your URL. You should be able to type in a string such as "www.y", and it finds and populates matches in the lower window (such as "www.yahoo.com" and...
  16. DevonTaig

    Detecting the type of output?

    I am trying to create a distributable copy of education course material. To protect our investment, we would prefer that people not pirate our education material by making copies or using the material to directly teach others. Most of the pieces of this puzzle have been solved (one license...
  17. DevonTaig

    Trap for Print Screen button

    Thanks guys...Exactly what I was after.
  18. DevonTaig

    Trap for Print Screen button

    I would like to prohibit the user from using the Print Screen button while running my application. The Keypress, and KeyDown events don't seem to do the trick on that particular button. Any ideas on how to accomplish this? Thanks.
  19. DevonTaig

    UML diagrams from code

    There is a book by Wrox press on integrating Visio and .NET. I haven't read it, but it has recieved excellent reviews. http://www.wrox.com/books/1861007957.htm From the web site... The integration of Visual Studio .NET Enterprise Architect and Visio for Enterprise Architects provides a...
  20. DevonTaig

    UML diagrams from code

    Could anybody recommend a tool or utility that would allow me to generate UML diagrams from C# source code. This is just for classroom exercises and demonstration purposes only, so I certainly don't want or need anything as complex (or expensive) as Rationale Rose. Basically, in a classroom...

Part and Inventory Search

Back
Top