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!

Recent content by mdwg2020

  1. mdwg2020

    COM Interop Reference Problem

    This happened to be a security permission for everyone else. It looks like I had to beef up the permissions to the IWAM account for it to be able to load the .dll. Thanks, Brooks Yates
  2. mdwg2020

    COM Interop Reference Problem

    For anyone who can help. Here is the error I get on the Web Server: Unable to cast COM object of type 'WSOPTIMIZERAGENTLib.OptimizerAgentClass' to interface type 'WSOPTIMIZERAGENTLib.IOptimizerAgent'. This operation failed because the QueryInterface call on the COM component for the interface...
  3. mdwg2020

    COM Interop Reference Problem

    Guys, Quick question. I'm writing a quick .NET application that will have to call an API from a COM component. So it is pretty simple to setup on the development machine. Running and compiling on the DEV machine, everything works well. Once I move the code to a QA region it does not work. Now...
  4. mdwg2020

    Can't Compare Numeric Characters

    Whenever I do a <>1 I receive nothing as a result. That is were the problem is. However if I do =1, and picks all of them up correctly. It doesn't make since that there would be a difference does it?
  5. mdwg2020

    Can't Compare Numeric Characters

    Sorry guys, been on vacation. I am going to go back and attempt several of the things that you said to attempt. Katy44 said this: what is the option when it's not 1? It's not null is it? And sometimes it is null, so I don't know if that means anything, or where she was heading with this. I...
  6. mdwg2020

    Can't Compare Numeric Characters

    OK, now this is strange, I altered the query slightly to the same ColumnName = '1', and it actually pulls them all up, but what I want to do, is get everything where it doesn't equal '1'. So I tried ColumnName <> '1', and then it doesn't return anything, however it should return around 800...
  7. mdwg2020

    Can't Compare Numeric Characters

    Yeah I tried that too, am not sure why it isn't picking it up. It understands the NULL, because I did a test for that, and it worked fine, but for some reason it doesn't understand my '1'. I also attempted to do the N'1', because I read about it somewhere with unicode and what not, and that...
  8. mdwg2020

    Can't Compare Numeric Characters

    Quick Question, I am attempting to run a query. In the query I am testing for a 1 being placed in a particular column. Now this column is of type nvarchar. I tried to do a simple query like, ColumnName = '1', and that doesn't return anything. I also attempted to do ColumnName = N'1' and that...
  9. mdwg2020

    SMS And VB.NET Application Deployment

    Hey guys, Its me again. Does anyone have any familiarity with pushing .NET applications with SMS? What I was wondering about is my install program, bootstraps the framework as well as the MDAC components, can I do that with SMS, or should I simply setup 3 pushes, on for the MDAC components...
  10. mdwg2020

    SystemInformation Problem

    Funny, I think I figured it out. What has happened is someone has also created those 2 users a local account. Somehow although they authenticate through ADOM, it is pulling the domain from that local account instead of the actual AD account. So instead of A70ADOM, which they are also logged...
  11. mdwg2020

    SystemInformation Problem

    Hey guys, Another question from me. In the beginning of my application I do the following check: 'string to hold users logon Dim strUserName As String = SystemInformation.UserName If (Not SystemInformation.UserDomainName = "A70ADOM") Then...
  12. mdwg2020

    deployment problem

    Thanks Jubble, I actually got it taken care of an bootstrapped the framework and MDAC components. Brooks
  13. mdwg2020

    deployment problem

    Hey guys, I told you guys would save my life. Thanks for all of the help. I just went through an install on another PC and it went great. Now I am going to package everything so that I can bootstrap the MDAC install as well as the Framework. Again, thanks, you hit the nail on the head with the...
  14. mdwg2020

    Installer + .NET Framework

    Hey Rick, I am developing on 1.1, and that is the framework I installed. I figured that out the first time that I created the install, and it prompted me that it needed 1.1.4322 and tried to get it from the internet. I went ahead and added the framework to the test PC and even SPed it. The...
  15. mdwg2020

    deployment problem

    Rick, I simply created an entire new solution, and created the files all over again, so that it would pick up the references. Now my program says that it is adding crystal_managed2003.msm, so is this the one I should remove and add all of the ones that you suggested. I'm also not sure how to...

Part and Inventory Search

Back
Top