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 bkrike 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: Akusei
  • Content: Threads
  • Order by date
  1. Akusei

    VS2005, C++ and native code

    I have a question regarding the development of native C++ executables within Visual Studio 2005. In past versions of of VS, like version 6, you could build your executable and most all OS' would have the msvcrt.dll and whatever other files needed to run the executable in a stand alone manor...
  2. Akusei

    Windows Installer Project

    I'm creating a deployment project for a windows application created in C#. I'm added a checkbox user interface dialog and one of the properties is named SENDMAIL. I've created a custom action class (installer class) within a stand alone assembly which does some actions according to the checked...
  3. Akusei

    Monitoring Processes

    I am creating an application that will show a splash screen everytime a user launches an application. Is there a way to monitor when a user creates a process, and retrieve the name of the executable file they launched?
  4. Akusei

    Exception on PostBack in Dynamically loaded UserControl

    I am having a heck of a time with this, please someone know something about this!! I have a web application with 2 files (not including the defaults like web.config). default.aspx and postbacktest.ascx. I am loading the PostBackTest.ascx into a panel on Default.aspx dynamically via...
  5. Akusei

    Host Headers and Integrated Windows Authentication

    I have an interesting problem... I have an intranet web application that uses integrated windows authenticates and impersonation. everything works great if I access the site like this: http://pcname/frolder/default.aspx When I access the site like this...
  6. Akusei

    Windows Installer Nightmare!!!

    Someone please help with this... The Domain controller we have is running Windows 2000 Server. I tried to install an application and it gave me an error something like this. The installer was interrupted before XXX could be installed. You need to restart the installer and try again. I have...
  7. Akusei

    SqlHelper, SqlParameter and Orders

    Are the following two blocks of psuedo-code the same, or will one pass information to the sproc differently. Case 1 Define Sql Parameter 1 in array as @Param1 Define Sql Parameter 2 in array as @Param2 Define Sql Parameter 3 in array as @Param3 SqlHelper(con, "sproc", ParameterArray) And...
  8. Akusei

    Print Quality

    I am programatically printing a PDF using PDFTron's PDFNET Library and would like to set the printer's quality in code. I have tried using the PrinterResolution object in maby different ways, but cannot set the Quality to high. PrinterResolution is a Read-Only object and doesn't allow me to...
  9. Akusei

    Map of Active Directory

    I'm in quite a hurry, so I will make it quick. I need to "map" the current active directory structure and and chart it as a organizational chart. I also need to enumerate all the groups that all users belong to, are there any tools out there that can do this? Thanks
  10. Akusei

    Strange problem with <%= %> blocks

    I'm having an odd problem with my <%= %> blocks within the aspx page (well, actually all the problems have been on ascx pages). I have this on an ASCX page: <asp:HyperLink id=LnkProfile NavigateUrl="javascript:openNewWindow2('http://www.xxxx.com/xxxx/xxxx.asp?id=<%=m_Id%>', 500, 500);"...
  11. Akusei

    C# Socket and It's Handle

    I have a socket and it is connected with a client. I need to be able to pass the socket's handle as a command line argument to another .NET application and have it instantiate that socket to it can communicate with the remote computer. For Example. CODE FROM SERVER private void...
  12. Akusei

    Socket Programming

    I am trying to create a telnet server using sockets. I can connect multiple clients with no problem, I can also display colored text on the remote clients terminal window, but I want to be able to see the exact same thing in a console window on my end, one console window for every connection...
  13. Akusei

    Printing a Template w/replaced text

    I am in the need of a file format that is easy to print and easy to replace text from before printing. I have tried taking a PDF and printing it to a file (.prn) then using InteropServices to print the file as RAW format, but I can't replace any text because the text does not show in the binary...
  14. Akusei

    COM/DCOM w/ASP.NET

    I have a question and it is probably pretty stupid, but here it goes. I have developed an ASP.NET web application, all it does is open a word document using DCOM, find and replace a few values, print the file and then close and not save the changes. This works when I test it from my local...
  15. Akusei

    ASP.NET Impersonation

    I have one big headache of a problem here! I can't seem to figure this out. I have 2 servers. 1 has IIS and the other has SQL. I want a user to go to my website (from inside the company.. Intranet), use Integrated windows authentication to access the website which in turn impersonates this user...
  16. Akusei

    Class Interface

    how do I use __interface? In C# if I declare an "interface" like so: interface IPeople { void Test(); } Then declare a class that uses the interface class Person : IPeople { Person(); void Test(); } This makes the compiler happy because I have a class Person that is using the...
  17. Akusei

    Variable Progress Bar?

    Does anyone know a proven method or formula to have the Progress Bar smoothly go from 0% to 100% without knowing what the Maximum value is? Maybe some way of progressing from 0% to 100% over time... and the time would be variable. Does anyone know what I'm talking about?
  18. Akusei

    x509 Certs without Web Service

    I am trying to integrate into someone's internet service and they use Perl with x509 certificates. I am using VS 2003 w/ .Net 1.1. They issued me a certificate and everything works great, as long as I install the certificate, export the .cer file and use a windows form application to consume...
  19. Akusei

    Client Certificates in User Store

    Does anyone know of a way to install an x509 certificate into a different user's certificate store? For example, on a local machine, Administrator has a .p12 file and wants to import (install) this certificate. The problem is that the Administrator does not want to install the certificate into...
  20. Akusei

    Wireless Problems

    Breakdown: Windows XP Pro 512mb DDR400 80gb Maxtor HD nVidia GeForce 5200 P4 2.4 Ghz 800FSB Gigabyte MB (Can't remember model off hand.. am at work) Netgear WG311v2 wireless PCI card This connects to a WGR514v3 Wireless AP I just installed Windows XP and finished installing all the drivers...

Part and Inventory Search

Back
Top