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

    Calling function in COM

    Hi, I've created a ComClass object in VB.Net, and have a public function called DoSchedule. I want to execute this function using a vbscript, so I wrote this: Imports System.Runtime.InteropServices <ComClass(Rotate.ClassId, Rotate.InterfaceId, Rotate.EventsId)> _ Public Class Rotate...
  2. orion2347

    Can't remove assembly from GAC

    Hi, I've encountered this problem where I want to remove an assembly from the Global Assembly Cache. Typed the following: gacutil /u MyAssembly It returned the message: "Unable to uninstall: assembly is required by one or more applications". Is there some registry entry that I'm supposed to...
  3. orion2347

    Encrypting string

    Hi. I'm having this problem regarding hashing the string passed into the function. It keeps giving me the exception "Invalid length for Base-64 char array". How do I calculate the length of the byte array required? The exception occurs at the line: "bteInputByteArray =...
  4. orion2347

    Registering an AIC

    Hi, I've created an AIC inside my Visual Basic project and I need to register it to allow BizTalk to access it. At the moment, I've written this to do the registration. <ComClass(AICOBRIndent.ClassId, AICOBRIndent.InterfaceId, AICOBRIndent.EventsId)> _ Public Class AICOBRIndent Inherits...
  5. orion2347

    OnBlur problem with drop down list

    Hi everyone! I've got a parent page that spawns a popup page. In the popup page I have this line of code: <body onBlur="window.focus();"> Basically I want the popup window to try to remain in focus whenever the user tries to navigate away from it without closing the popup. This works...
  6. orion2347

    Stored procedure question

    Hi!! I've got this problem with stored procedures in SQL Server. I have this table that has 3 fields. The 3rd field is supposed to store the first letter of the 2 other fields. How do I go about doing that using a stored procedure? Also I've never seen IF statements in stored procedures so I'm...

Part and Inventory Search

Back
Top