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 Wanet Telecoms Ltd 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. Akusei

    VS2005, C++ and native code

    From what I can tell, yes... but I may be mistaken.
  2. Akusei

    VS2005, C++ and native code

    I choose Win32 project. I have already solved the problem. Along with what I've already done with turning off the isolation and not generating or embedding the manifest, you need to set Configuration Properties->C/C++->Code Generation->Runtime Library to Multi-Threaded (/MT) instead of...
  3. Akusei

    VS2005, C++ and native code

    Thanks for the reply, but no go. I have the "Common Language Runtime support" option set to "No Common Language Runtime support" and I still have the same issues. Any other ideas?
  4. 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...
  5. 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...
  6. 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?
  7. Akusei

    Exception on PostBack in Dynamically loaded UserControl

    Problem solved! I've been beating my head against a wall for 3 days trying to figure this out.... Nothing would work and everything seemed perfect. I had a friend run this exact application on his machine and it worked fine!!! So, I rebooted my PC and now it works fine! That makes me very angry....
  8. 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...
  9. Akusei

    A problem to load user controls dynamically?!

    Bump... I am having the same issue, except mine happens on postback and I'm loading the same .ascx control! theMainPane.Controls.Clear(); theMainPane.Controls.Add(LoadControl("whatever.ascx"); I have a LinkButton on the "whatever.ascx" page that does a postback, but has no code in the click...
  10. Akusei

    Host Headers and Integrated Windows Authentication

    Bump - Need some help guys
  11. 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...
  12. Akusei

    Windows Installer Nightmare!!!

    WOOOO HOOOO .... Just found the solution. I found this on a different forum site and like the author said. I've been doing computers now for over 6 years and this suprised me. Remove the registry Value HKLM\Software\Microsoft\Ole\DefaultAccessPermissions This will solve the above problem along...
  13. 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...
  14. Akusei

    SqlHelper, SqlParameter and Orders

    I did some more digging and found this article http://support.microsoft.com/kb/310071/en-us/ It states the following: In each of the samples in this article, the parameters are added to the Parameters collection of the Command object. The SQL Server .NET data provider (SqlClient) supports named...
  15. Akusei

    SqlHelper, SqlParameter and Orders

    That is really inconvenient... thanks.
  16. 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...
  17. Akusei

    Print Quality

    Bump... please, if anyone has any info on this what so ever, it would be greatly appreciated, even if it doesn't help at all!
  18. Akusei

    Print Quality

    Does anybody have any clue how to do this?
  19. Akusei

    Print Quality

    Ok, even further testing... If I choose Best quality in the PrinterDialog object then the PrinterResolution.Kind is set to "Medium" at 600x600. If I choose Normal, it is set to the same, however, if I choose Low it changes to "Low" at 300x300. If I change the printers to a different printer...
  20. Akusei

    Print Quality

    Really Really need help! ... I did some more tests and when I set the print quality through the PrintDialog object, and the DpiX and DpiY values do not reflect the high quality Dpi values, but the printer does print at the high quality. If I do not use the PrintDialog object and programatically...

Part and Inventory Search

Back
Top