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 orion2347

  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

    Thanks for the reply! :D If I created the function as you mentioned, it would mean that I'd probably have to keep track of "flag" variables to see if any of the elements in the form is in focus? Might there be another way to go about tracking the elements? Cheers!
  6. orion2347

    OnBlur problem with drop down list

    Mmm... ok, scrap that stuff I said in the above message. Seems the onBlur event also comes into effect (ie. loses focus) if you enter a form tag as well. Does anyone have any suggestions as to how I can keep the popup window persistent and still make use of the form elements in the popup? Thanks!
  7. 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...
  8. orion2347

    Stored procedure question

    Thanks a lot guys!! I'll check back again if I have any other problems.
  9. orion2347

    Stored procedure question

    Hi!! Thanks for your speedy reply. Well, I was thinking of implementing a SP to pull out the initials of a person. The 3 fields are FirstName, Surname and Initial. I want to populate the Initial field with the first character of the other 2 fields. Now the catch is that some surnames start with...
  10. 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